@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;
  cursor: hand;
}

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

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

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

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

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

/* Box sizing rules */
*,
*::before,
*::after {
  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%;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

:where(i) {
  font-style: normal;
}

:where(em) {
  font-style: normal;
  font-weight: bold;
}

:root {
  --clr_rgb_white: 255,255,255;
  --clr_rgb_black: 0,0,0;
  --clr_rgb_gray: 103, 116, 123;
  --clr_rgb_txt: 103,116,123;
  --clr_rgb_main: 93,193,207;
  --clr_white: #fff;
  --clr_txt: #67747B;
  --clr_main: #5DC1CF;
  --clr_sub01: #C4E9EF;
  --clr_sub02: #EAF7F9;
  --clr_sub03: #43ADBC;
  --clr_sub04: #FAD123;
  --clr_gray01: #DCDCDC;
  --clr_gray02: #F6F7F7;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {}
@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);
  }
}
.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%;
}

.img_c {
  margin: 1rem auto;
  border-radius: 1.2rem;
}

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

.tate {
  max-width: 60%;
  border-radius: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .img_c {
    max-width: 40%;
    height: auto;
  }
  .img_c.full {
    width: 100%;
  }
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
  .tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.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;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .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;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
}
@media screen and (min-width: 48em), print {
  .wd_57 {
    width: 57%;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background-color: var(--clr_gray02);
  border-top: 1px solid var(--clr_gray01);
  border-bottom: 1px solid var(--clr_gray01);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 1.2rem 0 0 0;
  border-left: 1px solid var(--clr_gray01);
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 1.2rem 0 0;
  border-right: 1px solid var(--clr_gray01);
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_gray01);
  border-left: 1px solid var(--clr_gray01);
  background-color: var(--clr_white);
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--clr_gray01);
  background-color: var(--clr_white);
  line-height: 1;
  color: var(--clr_main);
  font-size: 80%;
}
.tbl_time tr td:last-child {
  border-right: 1px solid var(--clr_gray01);
}
.tbl_time tr:last-child th.time {
  border-radius: 0 0 0 1.2rem;
}
.tbl_time tr:last-child td:last-child {
  border-radius: 0 0 1.2rem 0;
}

.caption {
  margin: auto;
  font-size: 85%;
}
.caption .day {
  margin-top: 0.5rem;
}
.caption .day li i {
  color: var(--clr_main);
}
.caption .day li i.close {
  border: 0.1rem solid var(--clr_main);
  margin-right: 1.5rem;
  padding: 0 1rem;
}
.caption .day li span {
  margin-left: 1rem;
}
.caption .day li:not(:last-child) {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.4rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 23%;
  }
  .tbl_time tr td {
    padding: 2.5rem 0;
  }
  .caption {
    font-size: 100%;
  }
  .caption .day {
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
  }
  .caption .day li i.close {
    margin-right: 1.5rem;
    padding: 0 1.5rem;
  }
  .caption .day li span {
    margin-left: 1.5rem;
  }
  .caption .day li:not(:last-child) {
    margin-bottom: 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  background-color: rgb(var(--clr_rgb_main), 0.8);
  color: var(--clr_white);
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.tit_02 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  text-align: left;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.tit_02 span {
  display: block;
  font-size: 50%;
  color: var(--clr_main);
  margin: 0 0 0.3rem;
}
.tit_02 span:before {
  font-family: "fontello";
  content: "\e80c";
  font-weight: normal;
  line-height: 1;
  margin: 0 0.3rem 0 0;
}

.tit_03 {
  font-size: 1.8rem;
  color: var(--clr_white);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  background-color: var(--clr_txt);
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  border-bottom: 0.3rem solid var(--clr_gray01);
  padding: 0 0 0.5rem;
  position: relative;
}
.tit_04:after {
  content: "";
  display: block;
  width: 20%;
  height: 0.3rem;
  background-color: var(--clr_sub04);
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}

.tit_05 {
  width: fit-content;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0.5rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  color: var(--clr_main);
  border-bottom: 0.4rem dotted var(--clr_main);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.6rem;
    letter-spacing: 0.2rem;
    padding: 10rem 0;
  }
  .tit_02 {
    font-size: 4rem;
    margin: 0 0 3rem;
  }
  .tit_02 span {
    font-size: 2rem;
    margin: 0 0 0.7rem;
  }
  .tit_02 span:before {
    margin: 0 0.7rem 0.5rem 0;
  }
  .tit_03 {
    font-size: 2.8rem;
    letter-spacing: 0.1rem;
    padding: 1.2rem 3rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    margin: 0 0 2rem;
    padding: 0 0 0.7rem;
  }
  .tit_04:before {
    width: 14rem;
  }
  .tit_05 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin: 0 0 2rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1em 0;
}
.lst_ul > li {
  padding: 0 0 0 1.2em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_main);
  position: absolute;
  left: 0;
  transform: scale(0.8);
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.fill li {
  display: inline-block;
  margin-right: 1rem;
}
.lst_ul.col02 {
  display: grid;
  width: fit-content;
  column-gap: 2em;
  grid-template-columns: repeat(2, auto);
}
.lst_ul.col03 {
  column-count: 3;
  width: fit-content;
  column-gap: 2em;
}
.lst_ul.col04 {
  column-count: 4;
  width: fit-content;
  column-gap: 2em;
}

.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::marker {
  color: #f00;
}
.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 {
  border-top: 0.1rem solid var(--clr_gray01);
  border-left: 0.1rem solid var(--clr_gray01);
}
.lst_dl01 dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--clr_sub02);
  text-align: left;
  padding: 1rem;
  border-right: 0.1rem solid var(--clr_gray01);
  border-bottom: 0.1rem solid var(--clr_gray01);
}
.lst_dl01 dd {
  padding: 1rem;
  border-right: 0.1rem solid var(--clr_gray01);
  border-bottom: 0.1rem solid var(--clr_gray01);
}

.lst_normal li:not(:last-child) {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_ul > li {
    padding: 0 0 0 1.4em;
  }
  .lst_ul.fill li {
    margin-right: 3rem;
  }
  .lst_ol > li {
    padding: 0 0 0 3.6rem;
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 35%;
    padding: 2rem;
  }
  .lst_dl01 dd {
    width: 65%;
    padding: 2rem;
  }
}
.tbl_01 {
  width: 100%;
  table-layout: fixed;
  margin: 2rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 0.1rem solid var(--clr_txt);
  border-left: 0.1rem solid var(--clr_txt);
  font-size: 1.15rem;
  line-height: 1.3;
}
.tbl_01 tr th {
  background-color: var(--clr_sub02);
  text-align: left;
  border-right: 0.1rem solid var(--clr_txt);
  border-bottom: 0.1rem solid var(--clr_txt);
  padding: 0.5rem 0.3rem;
}
.tbl_01 tr td {
  text-align: left;
  border-right: 0.1rem solid var(--clr_txt);
  border-bottom: 0.1rem solid var(--clr_txt);
  padding: 0.5rem 0.3rem;
}
.tbl_01 .item {
  background-color: var(--clr_sub02);
}
.tbl_01.th_c tr th {
  text-align: center;
}
.tbl_01.td_c tr td {
  text-align: center;
}
.tbl_01.td_l_r tr td:last-of-type {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  .tbl_01 {
    font-size: inherit;
    line-height: 1.4;
  }
  .tbl_01 tr th {
    padding: 1rem 2rem;
  }
  .tbl_01 tr td {
    padding: 1rem 2rem;
  }
}
.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  font-size: 120%;
}
.tel a:before {
  font-family: "fontello";
  content: "\e80a";
  font-weight: normal;
  line-height: 1;
  font-weight: normal;
  line-height: 1;
  margin-right: 0.5rem;
  color: var(--clr_main);
}

.add:before {
  font-family: "fontello";
  content: "\e809";
  font-weight: normal;
  line-height: 1;
  color: var(--clr_main);
}

.btn_rsv:after {
  font-family: "fontello";
  content: "\e80d";
  font-weight: normal;
  line-height: 1;
  transform: scale(0.8);
  margin: 0.5rem 0 0;
}

@media screen and (min-width: 48em), print {
  .tel:before {
    font-family: "fontello";
    content: "\e80a";
    font-weight: normal;
    line-height: 1;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--clr_main);
  }
  .tel a:before {
    display: none;
  }
}
.box_01 {
  padding: 1rem;
  background-color: var(--clr_sub02);
}
.box_01 p {
  margin: 1em 0 0;
}
@media screen and (min-width: 48em), print {
  .box_01 {
    padding: 3rem;
  }
}

.box_02 {
  padding: 1rem;
  background-color: var(--clr_gray02);
}
@media screen and (min-width: 48em), print {
  .box_02 {
    padding: 3rem;
  }
}

.btn_detail {
  display: block;
  width: fit-content;
  padding: 0.5rem 3rem;
  background: var(--clr_main);
  border-radius: 3rem;
  border: 0.1rem solid var(--clr_main);
  color: var(--clr_white);
  text-align: center;
  text-decoration: none !important;
  position: relative;
}
.btn_detail:after {
  font-family: "fontello";
  content: "\e80d";
  font-weight: normal;
  line-height: 1;
  transform: scale(0.6);
  position: absolute;
  inset: 25% 0.7rem 0 auto;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    padding: 1.3rem 5rem;
    transition: 0.2s;
  }
  .btn_detail:after {
    transform: scale(0.8);
    inset: 32% 1rem 0 auto;
  }
  .btn_detail:hover {
    background: var(--clr_white);
    color: var(--clr_main);
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
  margin: 0 0.2em;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-weight: normal;
  line-height: 1;
  font-size: 0.8em;
  margin-left: 0.4rem;
}

.linktxt {
  color: var(--clr_main);
  text-decoration: none !important;
}
.linktxt:before {
  display: inline-block;
  font-family: "fontello";
  content: "\≫";
  font-weight: normal;
  line-height: 1;
  margin-right: 0.3rem;
  transform: scale(0.8);
}
@media screen and (min-width: 48em), print {
  .linktxt:hover {
    color: var(--clr_sub04);
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: var(--clr_main);
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
  font-weight: normal;
  line-height: 1;
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
  font-weight: normal;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
}
.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_main);
}
.slick-dots li button:hover, .slick-dots li button:focus {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.scr {
  display: block;
}

.pay {
  border: 0.2rem solid var(--clr_gray01);
  border-radius: 1.2rem;
  margin: 0 0 2rem;
}
.pay .tit {
  color: var(--clr_main);
  margin: 1rem 1.5rem;
}
.pay ul {
  background-color: var(--clr_white);
  border-radius: 0 0 1.2rem 1.2rem;
  padding: 1rem 0;
}
.pay ul li {
  padding: 1rem 0;
}
.pay ul li p {
  font-weight: 700;
  text-align: center;
  margin: 1rem 0;
}
.pay ul li .img {
  width: 90%;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .pay {
    font-size: 1.8rem;
    margin: 0 0 4rem;
  }
  .pay .tit {
    margin: 1.5rem 4rem;
  }
  .pay ul {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 0;
  }
  .pay ul li {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 3rem 1rem;
  }
  .pay ul li p {
    margin: 1rem 0;
  }
  .pay ul li .img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    height: 100%;
  }
  .pay ul li:not(:last-child) {
    border-right: 0.1rem solid var(--clr_gray01);
  }
}
html {
  font-size: 3.125vw;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: url("../img/a_timetable_bg_logo.svg") no-repeat right 1rem bottom/56% auto var(--clr_gray02);
  position: fixed;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.4rem;
  line-height: 1.6;
}
.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: 1.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header .wrap {
  margin: 1rem;
}
.header .wrap .logo {
  width: calc(100% - 5rem);
  height: 5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  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%);
}
.header .wrap .headR ul li .tel {
  display: none;
}
.header .wrap .headR ul li.add {
  text-align: center;
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .header {
    padding: 2rem 0;
  }
  .header .wrap {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 40%;
    height: 9.8rem;
  }
  .header .wrap .headR {
    width: fit-content;
    font-size: 1.8rem;
  }
  .header .wrap .headR ul {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .header .wrap .headR ul li .tel {
    display: block;
    font-size: 3rem;
    text-align: right;
  }
  .header .wrap .headR ul li.add {
    text-align: right;
    margin: 0;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_main);
  border-radius: 0.6rem;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-weight: normal;
  line-height: 1;
  color: var(--clr_white);
  font-size: 2.8rem;
  margin: -0.6rem 0 -0.2rem;
}
#nav #sp_menu::after {
  content: "MENU";
  color: var(--clr_white);
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
  font-weight: normal;
  line-height: 1;
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: 75vh;
  overflow-y: auto;
  background: var(--clr_white);
  padding: 1.6rem;
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid var(--clr_gray01);
  border-bottom: 1px solid var(--clr_gray01);
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_gray01);
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e80b";
  font-weight: normal;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--clr_main);
  transition: 0.2s;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  margin: 0 1rem 1rem;
  background-color: var(--clr_sub02);
  border-radius: 0.6rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a:after {
  font-family: "fontello";
  content: "\32";
  font-weight: normal;
  line-height: 1;
  margin-left: 0.3rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a .br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-child) {
  border-bottom: 0.1rem solid var(--clr_gray02);
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: relative;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block;
    width: 100%;
    max-height: auto;
    overflow-y: visible;
    padding: 0;
    position: static;
    background-color: rgb(var(--clr_rgb_white), 1);
    margin: 0 0 2rem;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    width: 100%;
    position: relative;
    border-right: 0.1rem solid var(--clr_gray01);
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li:first-child {
    border-left: 0.1rem solid var(--clr_gray01);
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    justify-content: center;
    align-items: baseline;
    text-align: center;
    font-size: 1.8rem;
    margin: auto;
    padding: 0;
    cursor: pointer;
    width: fit-content;
    position: relative;
  }
  #nav .gnav_subnav .gnav li a::after, #nav .gnav_subnav .gnav li .sub::after {
    margin: 0 0 0 0.4rem;
  }
  #nav .gnav_subnav .gnav li a:before, #nav .gnav_subnav .gnav li .sub:before {
    content: "";
    display: block;
    width: 0;
    height: 0.1rem;
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    transition: all 0.3s ease;
    background-color: var(--clr_main);
  }
  #nav .gnav_subnav .gnav li a:hover, #nav .gnav_subnav .gnav li a.current, #nav .gnav_subnav .gnav li .sub:hover, #nav .gnav_subnav .gnav li .sub.current {
    color: var(--clr_main);
  }
  #nav .gnav_subnav .gnav li a:hover:before, #nav .gnav_subnav .gnav li a.current:before, #nav .gnav_subnav .gnav li .sub:hover:before, #nav .gnav_subnav .gnav li .sub.current:before {
    width: 100%;
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: 50rem;
    padding: 2rem;
    position: absolute;
    top: 5rem;
    z-index: 100;
    background-color: var(--clr_white);
    box-shadow: 0 0.2rem 0.5rem rgba(var(--clr_rgb_black), 0.1);
    margin: 0;
    border-radius: 1.2rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li {
    width: 48%;
    padding: 0;
    margin: 0;
    border-right: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    text-align: left;
    transition: 0.2s;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:before {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:after {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover, #nav .gnav_subnav .gnav li .subbox > .subnav li a.current {
    background-color: var(--clr_main);
    color: var(--clr_white);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:first-child {
    border-left: none;
  }
  #nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  #nav.fixed .gnav_subnav {
    background-color: rgb(var(--clr_rgb_white), 0.9);
    box-shadow: 0 0.2rem 0.5rem rgba(var(--clr_rgb_black), 0.1);
  }
  #nav.fixed .gnav_subnav .gnav li {
    padding: 1rem 0;
  }
  #nav.fixed .gnav_subnav .gnav li a.sub {
    padding: 0.5rem 0;
  }
}
.overview {
  padding: 3rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: var(--clr_gray02);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview .lst_ov {
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid var(--clr_main);
}
.overview .lst_ov li {
  text-align: center;
}
.overview .lst_ov li .tel {
  font-size: 130%;
}
.overview .lst_ov li:not(:last-child) {
  margin-bottom: 1rem;
}
.overview > .wrap .gaiyo {
  width: 100%;
  margin: 0 0 2rem;
}
.overview > .wrap .gaiyo dt {
  padding: 0.5rem;
  background-color: var(--clr_main);
  color: var(--clr_white);
}
.overview > .wrap .gaiyo dd {
  padding: 1rem;
}
.overview > .wrap .overviewL > div {
  margin-bottom: 2rem;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .overview {
    margin: auto;
    padding: 10rem 0 4rem;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 3rem;
  }
  .overview .clinic_name img {
    max-width: 49.3rem;
  }
  .overview .lst_ov {
    width: calc(1200px - 10rem);
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3.7rem;
    padding-bottom: 3rem;
  }
  .overview .lst_ov li .tel {
    font-size: 3rem;
  }
  .overview .lst_ov li:not(:last-child) {
    margin-bottom: 0;
  }
  .overview > .wrap {
    width: calc(1200px - 10rem);
    margin: auto;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .overview > .wrap .overviewL .gaiyo {
    width: 54rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    background-color: unset;
    color: var(--clr_main);
    width: 23%;
    padding: 0.7rem 0;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 77%;
    padding: 0.7rem 0;
  }
  .overview > .wrap .overviewL > div {
    width: 54rem;
    margin-bottom: 4rem;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    width: 54rem;
    height: 54.2rem;
  }
  .overview > .wrap .overviewR .ilst_map {
    width: 54rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: var(--clr_white);
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 4rem);
  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 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#tel_up ul li .tel {
  height: 100%;
  font-size: 1.8rem;
  color: var(--clr_main);
}
#tel_up ul li .tel a {
  border: 0.1rem solid var(--clr_main);
}
#tel_up ul li .btn_rsv {
  background-color: var(--clr_main);
  color: var(--clr_white);
}
#tel_up ul li .btn_rsv:after {
  margin: 0;
}
#tel_up ul li .btn_rsv.-line {
  background-color: #06C755;
  color: var(--clr_white);
  border-right: 0.1rem solid var(--clr_white);
  border-left: 0.1rem solid var(--clr_white);
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  background: var(--clr_main);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e816";
  font-weight: normal;
  line-height: 1;
  position: relative;
  margin: 1rem 0 0;
  color: var(--clr_white);
  transform: scale(0.8);
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    bottom: 3rem;
    right: 3rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    height: 8rem;
    font-size: 3rem;
    border-radius: 50%;
    filter: drop-shadow(0 0 1rem rgb(var(--clr_rgb_black), 0.1));
  }
  #tel_up #pageup:before {
    margin: 2.5rem 0 0;
    transition: 0.2s;
  }
  #tel_up #pageup:hover:before {
    margin: 1.5rem 0 0;
  }
}
.footer {
  text-align: center;
  background-color: var(--clr_gray02);
  padding: 0 0 4rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
.footer .copy {
  display: block;
  background: var(--clr_main);
  color: var(--clr_white);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    border-top: 0.1rem solid var(--clr_main);
    padding: 3.8rem 0 0;
  }
  .footer .copy {
    font-size: 1.8rem;
    margin: 2.8rem 0 0;
    padding: 2.8rem 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav li a .br {
    display: none;
  }
}
.sideBtn {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sideBtn {
    display: block;
    width: 6rem;
    position: fixed;
    right: 0;
    top: 19.5rem;
    z-index: 9;
  }
  .sideBtn li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    color: var(--clr_white);
    background: url(../img/btn_reserve_bg.svg) no-repeat center bottom/contain var(--clr_main);
    padding: 2.6rem 0;
  }
  .sideBtn li.-btn_online a {
    margin-top: 20px;
    background: url(../img/btn_reserve_bg.svg) no-repeat center bottom/contain var(--clr_sub03);
  }
  .sideBtn li.-line a {
    background: url(../img/btn_reserve_bg.svg) no-repeat center bottom/contain #06C755;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 26rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list {
  animation: fadein 1.2s normal forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadein 1.2s normal forwards;
  animation-delay: 1.9s;
}
.keyvsl > .wrap .open {
  display: flex;
  justify-content: center;
  gap: 0 0.5rem;
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
}
.keyvsl > .wrap .open li {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  background: url(../img/logo_k_wh.svg) no-repeat right bottom/cover var(--clr_sub02);
}
.keyvsl > .wrap .open li i {
  display: contents;
  font-weight: 500;
  line-height: 0;
  font-size: 1.3rem;
}
.keyvsl > .wrap .open li span {
  letter-spacing: 0.1rem;
  font-weight: 700;
  margin: 0.3rem 0 0;
}
.keyvsl > .wrap .open li.nairan {
  background: url(../img/logo_k_gr.svg) no-repeat right bottom/cover var(--clr_white);
}
.keyvsl > .wrap .catch {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--clr_white);
  letter-spacing: 0.1em;
  margin: 0;
  position: absolute;
  left: 1rem;
  bottom: 2rem;
}
.keyvsl > .wrap .catch span {
  width: 9rem;
  height: 9rem;
  outline: 1px solid var(--clr_white);
  outline-offset: -0.5rem;
  background-color: var(--clr_sub03);
  border-radius: 50%;
  padding: 2.3rem 0 0;
  text-align: center;
  font-size: 60%;
  letter-spacing: 0;
  color: var(--clr_white);
  line-height: 1.3;
  margin-right: 0.5rem;
}
.keyvsl > .wrap .catch span i {
  font-weight: 700;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin: 0;
  }
  .keyvsl #keyvsl {
    height: 75rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    width: 100%;
    height: 75rem !important;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    height: 100%;
    display: flex;
    justify-content: space-between;
    top: 0;
    left: 0;
    right: 0;
  }
  .keyvsl > .wrap .open {
    gap: 0 2rem;
    top: 5rem;
  }
  .keyvsl > .wrap .open li {
    width: 20rem;
    height: 20rem;
    font-size: 2.4rem;
  }
  .keyvsl > .wrap .open li i {
    font-size: 3rem;
  }
  .keyvsl > .wrap .open li span {
    font-size: 3rem;
    margin: 0.5rem 0 0;
  }
  .keyvsl > .wrap .catch {
    left: 0;
    bottom: 7.6rem;
    font-size: 5.2rem;
    line-height: 1.3;
    left: 0;
    bottom: 7.6rem;
  }
  .keyvsl > .wrap .catch span {
    width: 17rem;
    height: 17rem;
    padding: 4rem 0 0;
    font-size: 2.2rem;
    line-height: 1.4;
    margin-right: 2rem;
  }
}
.time_sc {
  padding: 4rem 1rem;
  background: url("../img/a_timetable_bg_logo.svg") no-repeat right bottom/contain #fff;
}

@media screen and (min-width: 48em), print {
  .time_sc {
    padding: 6rem 0 10rem;
    margin-top: 4rem;
  }
  .time_sc .tbl_time {
    width: 80rem;
    margin: auto;
  }
  .time_sc .caption {
    width: calc(1200px - 40rem);
  }
}
.info {
  margin-top: 0;
  padding: 4rem 1rem;
  background-color: var(--clr_gray02);
  position: relative;
  overflow: hidden;
}
.info .wrap {
  position: relative;
  z-index: 1;
}
.info .wrap > section {
  background-color: var(--clr_white);
  box-shadow: 0 0 1rem rgb(var(--clr_rgb_gray), 0.2);
  padding: 2rem 1rem;
  border-radius: 1.2rem;
}
.info .wrap .news dl {
  line-height: 1.4;
  height: 20rem;
  overflow: auto;
  padding: 0 1rem 0 0;
}
.info .wrap .news dl dt {
  display: flex;
  align-items: center;
  color: var(--clr_txt);
  cursor: pointer;
  border-top: 1px solid var(--clr_gray01);
  padding: 1rem 0 1rem;
}
.info .wrap .news dl dt .day {
  margin-right: 1rem;
  font-size: 90%;
}
.info .wrap .news dl dd {
  margin: 0 0 1rem;
  font-size: 90%;
  word-wrap: break-word;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
.info .wrap .news dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.info .wrap .blog_feed .flex2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info .wrap .blog_feed .flex2 .btn_detail {
  margin-left: auto;
  font-size: 80%;
}
.info .wrap .blog_feed .feed {
  height: 20rem;
  overflow: auto;
  line-height: 1.4;
  padding: 0 1rem 0 0;
}
.info .wrap .blog_feed .feed ul li {
  border-top: 0.1rem solid var(--clr_gray01);
  padding: 1rem 0 1rem;
}
.info .wrap .blog_feed .feed ul li .day {
  font-size: 90%;
}
.info .wrap .blog_feed .feed ul li p {
  color: var(--clr_main);
  text-decoration: underline;
  margin: 0.5rem 0;
}
.info .wrap .blog_feed .feed ul.feed_greeting {
  height: auto;
}
.info:before {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  background-color: var(--clr_gray02);
  border-top: 0.4rem solid var(--clr_white);
  border-bottom: 0.4rem solid var(--clr_white);
  position: absolute;
  top: 3rem;
  left: -7rem;
  transform: rotate(-30deg);
}
.info:after {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  background-color: var(--clr_gray02);
  border-top: 0.4rem solid var(--clr_white);
  border-bottom: 0.4rem solid var(--clr_white);
  position: absolute;
  bottom: 2rem;
  right: -7rem;
  transform: rotate(-30deg);
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 12rem 0;
  }
  .info .tit_02 {
    font-size: 3.2rem;
  }
  .info .tit_02 span {
    font-size: 1.6rem;
  }
  .info .wrap > section {
    height: 54rem;
    padding: 4.5rem 4rem;
  }
  .info .wrap .news dl {
    height: 35rem;
    padding: 0 3rem 0 1rem;
    font-size: 1.8rem;
  }
  .info .wrap .news dl dt {
    padding: 3rem 0 1rem;
    font-size: 2rem;
  }
  .info .wrap .news dl dt::before {
    margin-right: 1rem;
  }
  .info .wrap .news dl dt:not(:first-of-type) {
    margin: 2rem 0 0;
  }
  .info .wrap .news dl dt .day {
    margin-right: 1.9rem;
    font-size: 1.8rem;
  }
  .info .wrap .news dl dd {
    font-size: 100%;
    margin: 0;
  }
  .info .wrap .blog_feed .flex2 .btn_detail {
    padding: 0.5rem 4rem !important;
    font-size: 100%;
  }
  .info .wrap .blog_feed .flex2 .btn_detail:after {
    inset: 29% 1rem 0 auto !important;
  }
  .info .wrap .blog_feed .feed {
    height: 35rem;
    padding: 0 3rem 0 1rem;
    font-size: 1.8rem;
  }
  .info .wrap .blog_feed .feed ul li {
    padding: 3rem 0;
  }
  .info .wrap .blog_feed .feed ul li .day {
    font-size: 1.8rem;
  }
  .info .wrap .blog_feed .feed ul li p {
    font-size: 2rem;
    margin: 1rem 0 0;
  }
  .info:before {
    height: 5.5rem;
    border-top: 0.8rem solid var(--clr_white);
    border-bottom: 0.8rem solid var(--clr_white);
    top: -4rem;
    left: -26rem;
  }
  .info:after {
    height: 5.5rem;
    border-top: 0.8rem solid var(--clr_white);
    border-bottom: 0.8rem solid var(--clr_white);
    bottom: 0;
    right: -26rem;
  }
}
.feature {
  margin-top: 0 !important;
  padding: 3.5rem 1rem 4rem;
  background: url("../img/features_bg.jpg") no-repeat top center/100% 9rem #fff;
}
.feature .tit_02 {
  color: var(--clr_white);
  margin: 0 0 3rem;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.feature .tit_02 span {
  color: var(--clr_white);
}
.feature .tit_02 span:before {
  color: var(--clr_main);
}
.feature ul {
  counter-reset: number 0;
}
.feature ul li {
  padding: 0 0 1.5rem;
}
.feature ul li .img {
  position: relative;
}
.feature ul li .img img {
  width: 70%;
  margin: auto;
}
.feature ul li .img:before {
  content: counter(number) "";
  counter-increment: number 1;
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  font-size: 3rem;
  color: var(--clr_white);
  text-align: center;
  background-color: var(--clr_main);
  width: 4.6rem;
  height: 5.6rem;
  border-radius: 50%;
  box-shadow: 1.5rem 0 0 rgb(var(--clr_rgb_txt), 0.8);
}
.feature ul li .tit {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  margin: 1rem 0;
}
.feature ul li .read {
  margin: 0;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
.feature ul li:not(:last-child) {
  border-bottom: 0.1rem solid var(--clr_gray01);
  margin-bottom: 2rem;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 26.5rem 0 13rem;
    background-size: auto 42rem;
  }
  .feature .tit_02 {
    margin: 0 0 9rem;
  }
  .feature ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .feature ul li {
    width: 28rem;
    position: relative;
  }
  .feature ul li .img img {
    width: 100%;
  }
  .feature ul li .img:before {
    bottom: 1rem;
    left: 1rem;
    font-size: 4rem;
    width: 5.6rem;
    height: 7.6rem;
    box-shadow: 1.7rem 0 0 rgb(var(--clr_rgb_txt), 0.8);
  }
  .feature ul li .tit {
    font-size: 2.4rem;
    margin: 3rem 0 2.7rem;
  }
  .feature ul li .read {
    font-size: 1.8rem;
  }
  .feature ul li:not(:last-child) {
    border-bottom: none;
    margin-bottom: 0;
  }
  .feature ul li:not(:last-child):after {
    content: "";
    display: block;
    width: 0.1rem;
    height: 100%;
    background-color: var(--clr_gray01);
    position: absolute;
    right: -1.45rem;
    top: 0;
  }
}
.medical {
  margin-top: 0 !important;
  background-color: var(--clr_gray02);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}
.medical .subnav {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem 0;
  position: relative;
  z-index: 1;
}
.medical .subnav li {
  width: 47%;
  margin: 0 auto;
  position: relative;
}
.medical .subnav li a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background: url(../img/medical_icon_bg.svg) no-repeat top 2.5rem right 4.3rem/2rem auto var(--clr_main);
  padding: 0.5rem;
  color: var(--clr_white);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 1rem;
  position: relative;
}
.medical .subnav li a:before {
  display: block;
  font-family: "fontello";
  content: "\e812";
  font-weight: normal;
  line-height: 1;
  font-size: 4.5rem;
  margin: auto;
}
.medical .subnav li a:after {
  font-family: "fontello";
  content: "\e80d";
  font-weight: normal;
  line-height: 1;
  transform: scale(0.6);
  position: absolute;
  right: 0.5rem;
  bottom: 0.8rem;
}
.medical .subnav li.m02 .diabetes:before {
  font-family: "fontello";
  content: "\e818";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m03 .thyroid:before {
  font-family: "fontello";
  content: "\e80f";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m04 .lifestyle_related:before {
  font-family: "fontello";
  content: "\e815";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m05 .checkup:before {
  font-family: "fontello";
  content: "\e817";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m06 .vaccination:before {
  font-family: "fontello";
  content: "\e813";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m07 .visit:before {
  font-family: "fontello";
  content: "\e819";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m08 .sas {
  line-height: 1.2;
}
.medical .subnav li.m08 .sas .br {
  display: block;
}
.medical .subnav li.m08 .sas:before {
  font-family: "fontello";
  content: "\e814";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m09 .selfpay:before {
  font-family: "fontello";
  content: "\e811";
  font-weight: normal;
  line-height: 1;
}
.medical .subnav li.m10 .online:before {
  font-family: "fontello";
  content: "\F10B";
  font-weight: normal;
  line-height: 1;
  padding: 0 1.8rem;
}
.medical:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: var(--clr_white);
  position: absolute;
  bottom: 7rem;
  left: -6rem;
  transform: rotate(30deg);
}
.medical:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: var(--clr_white);
  position: absolute;
  top: 7rem;
  right: -4rem;
  transform: rotate(30deg);
}

@media screen and (min-width: 48em), print {
  .medical {
    padding: 12rem 0;
  }
  .medical .tit_02 {
    margin: 0 0 2.2rem;
  }
  .medical .subnav {
    gap: 3rem;
  }
  .medical .subnav li {
    width: 38rem;
    margin: 0;
  }
  .medical .subnav li a {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-size: 2.5rem auto;
    background-position: left 6.5rem top 4rem;
    padding: 1rem 2rem;
    text-align: left;
    font-size: 2.2rem;
  }
  .medical .subnav li a:before {
    display: inline-block;
    font-size: 7rem;
    margin: 0 1rem 0 0;
  }
  .medical .subnav li a:after {
    top: 3.7rem;
    bottom: auto;
    right: 1rem;
    transition: 0.2s;
  }
  .medical .subnav li a:hover {
    opacity: 0.8;
  }
  .medical .subnav li a:hover:after {
    margin-left: 1rem;
  }
  .medical:before {
    height: 0.8rem;
    bottom: 28rem;
    left: -67rem;
  }
  .medical:after {
    height: 0.8rem;
    top: 0;
    right: -17rem;
  }
}
.greeting {
  padding: 4rem 1rem;
  overflow: hidden;
  position: relative;
}
.greeting .wrap {
  padding: 3rem 1rem;
  background-color: var(--clr_sub02);
  border-radius: 2rem;
  position: relative;
}
.greeting .wrap .flex2 {
  display: flex;
  flex-direction: column;
}
.greeting .wrap .flex2 p {
  margin: 0;
}
.greeting .wrap .flex2 .read {
  order: 2;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
.greeting .wrap .flex2 .img {
  order: 1;
  margin: 0 auto 2rem;
}
.greeting .wrap .flex2 .img img {
  width: 80%;
  margin: 0 auto;
}
.greeting .wrap .flex2 .img p {
  text-align: center;
}
.greeting .wrap .flex2 .img p span {
  display: block;
  font-size: 2rem;
}
.greeting .wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: var(--clr_white);
  position: absolute;
  bottom: 1rem;
  right: -7rem;
  transform: rotate(-30deg);
}
.greeting .wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: var(--clr_white);
  position: absolute;
  bottom: 3rem;
  right: -14rem;
  transform: rotate(-30deg);
}
.greeting .btn_detail {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1.5rem;
  margin: 0 auto;
  z-index: 1;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 18.6rem 0 14.8rem;
  }
  .greeting .wrap {
    background-color: var(--clr_sub02);
    border-radius: 2rem;
    padding: 8.4rem 8rem;
    font-size: 1.8rem;
  }
  .greeting .wrap .tit_02 {
    position: absolute;
    top: -5.6rem;
  }
  .greeting .wrap .flex2 {
    flex-direction: row;
  }
  .greeting .wrap .flex2 .read {
    width: 53.5rem;
    order: unset;
  }
  .greeting .wrap .flex2 .img {
    position: absolute;
    inset: -8rem -5rem auto auto;
    order: unset;
  }
  .greeting .wrap .flex2 .img img {
    width: 100%;
    margin: 0;
  }
  .greeting .wrap .flex2 .img p span {
    font-size: 2rem;
  }
  .greeting .wrap:before {
    height: 0.8rem;
    bottom: -5rem;
    right: -14rem;
  }
  .greeting .wrap:after {
    height: 0.8rem;
    bottom: -10rem;
    right: -14rem;
  }
  .greeting .btn_detail {
    width: 26rem;
    bottom: -3rem;
  }
}
.banner-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 2.4rem;
}
.banner-area .df-banner {
  width: 90%;
}
@media (min-width: 768px) {
  .banner-area {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 7rem;
    padding-bottom: 14.8rem;
  }
  .banner-area .df-banner {
    width: 48%;
  }
  .banner-area .df-banner:not(:first-child) {
    margin-left: 1rem;
  }
}

body:not(.index) .main {
  margin: 0 1rem 4rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
body:not(.index) .main .tit_02 {
  text-align: center;
  border-bottom: 0.1rem solid var(--clr_main);
  padding: 0 0 1rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: calc(1200px - 10rem);
    margin: 0 auto 8rem;
    font-size: 1.8rem;
  }
  body:not(.index) .main .tit_02 {
    font-size: 3.2rem;
    letter-spacing: 0.1rem;
    padding: 0 0 2rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin: 0 1rem 4rem;
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.4rem;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    width: calc(1200px - 10rem);
    font-size: 1.4rem;
    margin: 0 auto 8rem;
  }
  .breadcrumb li:not(:last-child)::after {
    margin: 0 0.8rem;
  }
}
.gallery {
  width: 85%;
  margin: auto;
}
.gallery .gallery_slider {
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: var(--clr_white);
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_main);
}
.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_main);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .device li {
    width: 32%;
    margin: 0 0 2rem;
  }
  .device li:not(:nth-child(3n)) {
    margin: 0 2.4rem 2rem 0;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
.flow li {
  padding: 1rem;
  border: 0.1rem solid var(--clr_main);
  border-radius: 2rem;
  position: relative;
}
.flow li span {
  display: block;
}
.flow li:not(:last-child) {
  margin: 0 0 6rem;
}
@media screen and (min-width: 48em), print {
  .flow li:not(:last-child) {
    margin: 0 0 10rem;
  }
}
.flow li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--clr_main);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
.flow .pay {
  margin: 0;
  overflow: hidden;
}
.flow .pay ul {
  border: none;
  padding: 0;
}
.flow .pay ul li {
  border: none;
  padding: 1rem 0;
}
.flow .pay ul li p {
  font-weight: 700;
}
.flow .pay ul li:after {
  display: none;
}
.flow .pay ul li:not(:last-child) {
  margin: 0;
  border-radius: 0;
  border-bottom: 0.1rem solid var(--clr_gray01);
}

@media screen and (min-width: 48em), print {
  .flow li {
    padding: 3rem 2rem;
  }
  .flow li:before {
    width: 5rem;
    height: 5rem;
    font-size: 2.6rem;
    line-height: 5rem;
  }
  .flow .pay {
    margin: 2rem 0 0;
  }
  .flow .pay ul li {
    padding: 1rem;
  }
  .flow .pay ul li img {
    margin-bottom: auto;
  }
  .flow .pay ul li:not(:last-child) {
    border-bottom: none;
    border-right: 0.1rem solid var(--clr_gray01);
  }
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 53rem;
  }
}/*# sourceMappingURL=style.css.map */