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

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bg_right {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0rem);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    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_blue {
  color: #005EAD;
}

.link_txt {
  color: #005EAD;
  border-bottom: 0.1rem #005EAD solid;
}
.link_txt:hover {
  border-bottom: none;
}

.img_c {
  margin: 1rem auto;
}

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

.tate {
  max-width: 80%;
}

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-spacing: 0;
  font-size: 1.2rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
.tbl_time caption span {
  background: #fff;
  border: 0.1rem solid #C4DAED;
  color: #005EAD;
  display: inline-block;
  text-align: center;
  margin: 0 1rem 0.6rem 0;
  width: 9rem;
  height: 2.2rem;
  padding: 0.2rem 0 0 0;
}
.tbl_time tr th {
  font-weight: 500;
  border-top: 1px solid rgba(0, 94, 173, 0.15);
  border-bottom: 1px solid rgba(0, 94, 173, 0.15);
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  text-align: center;
  background: #E5F4FA;
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th.time {
  line-height: 1.2;
  background: #fff;
  border-top: none;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  border-bottom: 1px solid rgba(0, 94, 173, 0.15);
  line-height: 1;
  background: #fff;
  color: #57C3EA;
  font-size: 75%;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time caption {
    caption-side: bottom;
    text-align: left;
    margin: 3rem 0 0 0;
    line-height: 1.4;
    font-size: 1.6rem;
  }
  .tbl_time caption span {
    margin: 0 2rem 1.5rem 0;
    width: 12rem;
    height: 3.2rem;
    padding: 0.4rem 0 0 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.74rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 24%;
  }
  .tbl_time tr td {
    padding: 2.45rem 0;
    font-size: 100%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  background: #F5F9FC;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: 0.15rem;
  line-height: 1;
}
.tit_01::before {
  display: block;
  content: "";
  margin: 0 auto 0.6rem;
  background: url("../img/icon_crown.svg") no-repeat center center/contain;
  width: 5rem;
  height: 1.3rem;
}

.tit_02 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
  margin: 0 auto 1.5rem;
  padding: 1.2rem 1rem;
  width: 100%;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
}

.tit_03 {
  font-size: 1.7rem;
  line-height: 1;
  margin: 0 0 2rem;
  padding: 0 0 0.6rem;
  font-weight: 700;
  border-bottom: solid 2px #cce4ff;
  position: relative;
}
.tit_03 span {
  background: -webkit-linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  background: linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  background: -moz-linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.tit_03::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: 2px solid #57c3ea;
  border-image: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  border-image-slice: 1;
  bottom: -2px;
  width: 20%;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.45;
  margin: 0 0 2rem;
  color: #57C3EA;
  background: #F5F9FC;
  padding: 0.6rem;
  font-weight: 700;
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  padding: 0 0 0 1rem;
  border-left: 4px solid #FFE55F;
  font-weight: 700;
  color: #005EAD;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4rem;
    padding: 0;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
  }
  .tit_01::before {
    margin: 0 auto 2rem;
    width: 100%;
    height: 2.6rem;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 0 auto 3rem;
    padding: 1.6rem 2rem;
    letter-spacing: 0.15rem;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 0 0 2rem;
  }
  .tit_03::after {
    width: 8rem;
  }
  .tit_04 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 1rem 1.4rem 1.1rem;
  }
  .tit_05 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
    padding: 0 0 0 1rem;
    line-height: 2.2;
  }
}
.lst {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst > li {
  position: relative;
}
.lst > li:not(:last-child) {
  margin: 0 0 1rem;
}

.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "■";
  color: #D5EEF9;
  position: absolute;
  top: 0.1rem;
  left: 0;
  font-size: 1rem;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #333;
}

.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: #005EAD;
}

.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: #333;
  font-weight: bold;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  text-align: center;
  font-size: 1.1rem;
}

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

.lst_dl02 {
  margin-top: 2rem;
}
.lst_dl02 dt {
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
  padding: 0.4rem 1rem;
  border-top: 1px solid #C4DAED;
  border-right: 1px solid #C4DAED;
  border-left: 1px solid #C4DAED;
  color: #fff;
}
.lst_dl02 dd {
  margin: 0 0 1.5rem;
  padding: 0.6rem 1rem;
  border-top: 1px dotted #C4DAED;
  border-right: 1px solid #C4DAED;
  border-left: 1px solid #C4DAED;
  border-bottom: 1px solid #C4DAED;
}

.lst_dl03 {
  margin-top: 2rem;
}
.lst_dl03 dt {
  padding: 0.4rem 1rem;
  border-right: 1px solid #1DA7F1;
  border-left: 1px solid #1DA7F1;
  background: #DBF3FF;
}
.lst_dl03 dt:first-of-type {
  border-top: 1px solid #1DA7F1;
}
.lst_dl03 dd {
  border-top: 1px solid #1DA7F1;
}
.lst_dl03 dd ul li {
  padding: 0.6rem 1rem;
  border-bottom: 1px dashed #1DA7F1;
  border-right: 1px solid #1DA7F1;
  border-left: 1px solid #1DA7F1;
  line-height: 1.3;
}
.lst_dl03 dd ul li:last-of-type {
  border-bottom: 1px solid #1DA7F1;
}

@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    top: 0.5rem;
  }
  .lst_ol > li {
    padding: 0 0 0 3.6rem;
  }
  .lst_ol > li::before {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.4rem;
    top: 0.3rem;
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 11%;
  }
  .lst_dl01 dd {
    width: 89%;
    padding: 0 0 0 1rem;
  }
  .lst_dl02 {
    border-bottom: 1px solid #C4DAED;
    margin-top: 3rem;
  }
  .lst_dl02 dt {
    width: 100%;
    padding: 1.5rem 2.5rem;
  }
  .lst_dl02 dd {
    width: 100%;
    margin: 0;
    padding: 1.5rem 2.5rem;
    border-bottom: none;
  }
  .lst_dl03 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .lst_dl03 dt {
    width: 20%;
    padding: 1rem 2.5rem;
    border-right: none;
    border-bottom: 1px solid #1DA7F1;
  }
  .lst_dl03 dd {
    width: 80%;
  }
  .lst_dl03 dd:not(:first-of-type) {
    border-top: none;
  }
  .lst_dl03 dd ul li {
    padding: 1rem 2.5rem;
  }
  .lst_dl03 dd ul li:first-of-type {
    border-top: none;
  }
}
.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

.flex1 {
  display: flex;
  flex-wrap: wrap;
}
.flex1 > li {
  width: fit-content;
  margin: 0 2.5rem 0.6em 0 !important;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > ul {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .flex3_1 li {
    width: calc((100% - 2rem) / 3);
  }
  .flex3_1 li:not(:nth-child(3n)) {
    margin: 0 1rem 0 0;
  }
  .flex1 > li {
    width: auto;
    min-width: 0;
    margin-right: 2rem !important;
  }
}
.tel {
  font-family: "Josefin Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 120%;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
}
.tel::before {
  font-family: "fontello";
  content: "\e809";
  padding-right: 0.3rem;
  font-size: 85%;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .tel {
    pointer-events: none;
    font-size: 150%;
  }
  .tel::before {
    font-size: 70%;
  }
  .tel a {
    pointer-events: auto;
  }
}

.rsv {
  display: inline-block;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #D5EEF9;
  font-weight: bold;
  position: relative;
}
.rsv::after {
  font-family: "fontello";
  content: "\e828";
  font-size: 80%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 48em), print {
  .rsv::after {
    right: 4rem;
  }
}
.rsv.btn {
  background: #D5EEF9;
  box-shadow: 0 0 0 2px #D5EEF9;
  border: 1px solid #FFDAC2;
}
.rsv.btn:hover {
  border: 1px solid #8BE0F1;
}
.rsv:hover {
  background: rgba(25, 175, 255, 0.7);
  opacity: 1;
}

.tel_rsv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tel_rsv li {
  height: 3.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
}
.tel_rsv li .tel {
  width: 100%;
  height: 100%;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.tel_rsv li .rsv {
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    width: 45%;
    margin: 0 auto;
  }
  .tel_rsv li {
    width: 47%;
    height: 4rem;
  }
  .tel_rsv li .tel {
    font-size: 2.2rem;
  }
  .tel_rsv li .tel::before {
    font-size: 75%;
    transform: translateY(0px);
  }
  .tel_rsv li .rsv {
    font-size: 1.8rem;
  }
}

.box {
  padding: 1rem;
  background: #F5F9FC;
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem;
  }
}
.box.orange {
  background: #FFFDEF;
}

.btn {
  margin: 0.1rem 0.5rem;
  padding: 0.6rem 1.4rem;
  display: inline-block;
  text-decoration: none !important;
  letter-spacing: 0.1rem;
  border-radius: 50vh;
  cursor: pointer;
  position: relative;
  background: #14BFE1;
  border: 1px solid #8BE0F1;
  box-shadow: 0 0 0 2px #14BFE1;
  color: #fff;
}
.btn::before {
  font-family: "fontello";
  content: "\e807";
  padding-right: 0.2rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .btn::before {
    padding-right: 0.5rem;
  }
}
.btn.blue {
  background: #208CD6;
  box-shadow: 0 0 0 2px #208CD6;
  border: 1px solid #85C0E9;
}
@media screen and (min-width: 48em), print {
  .btn {
    margin: 0 0.5rem;
    padding: 0.6rem 2rem;
    letter-spacing: 0.2rem;
  }
  .btn:hover {
    background: rgba(25, 175, 255, 0.7);
    box-shadow: 0 0 0 2px #19AFFF;
    opacity: 1;
  }
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  letter-spacing: 0.05rem;
  cursor: pointer;
  color: #00B2D5;
}
.lnk::before {
  font-family: "fontello";
  content: "\e807";
  padding-right: 0.2rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::before {
    padding-right: 0.5rem;
  }
}
.lnk:hover {
  color: #D5EEF9;
  text-decoration: underline !important;
  opacity: 1;
}
.lnk:hover::before {
  color: #D5EEF9;
}
.lnk.maru::before {
  content: "●";
}
.lnk.scr::before {
  font-family: "fontello";
  content: "\e806";
  padding-right: 0.5rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 48em), print {
  .lnk.scr::before {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

.linkout {
  display: inline-block;
  color: #333;
  text-decoration: none !important;
  margin: 0 0.2em;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.4rem;
}

.tbl {
  width: 100%;
  margin: 2rem 0;
  border-spacing: 0;
  font-size: 1.4rem;
  border-collapse: collapse;
}
.tbl caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl tr th {
  text-align: left;
  padding: 1rem;
  font-weight: normal;
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
}
.tbl.yoko tr th {
  background: #DBF3FF;
  border-top: 1px solid #1DA7F1;
  border-bottom: 1px solid #1DA7F1;
  border-right: 1px solid #1DA7F1;
}
.tbl.yoko tr td {
  border-top: 1px solid #1DA7F1;
  border-bottom: 1px solid #1DA7F1;
}

@media screen and (min-width: 48em), print {
  .tbl {
    table-layout: fixed;
    border-radius: 1rem;
    font-size: 1.8rem;
  }
  .tbl tr th {
    padding: 1rem 2.5rem;
  }
  .tbl tr td {
    padding: 1rem 2.5rem;
  }
}
.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: #000;
}
.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;
  }
}
html {
  font-size: 3.125vw;
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(213, 238, 249, 0.8);
  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.3rem;
  line-height: 1.55;
  margin-bottom: 5rem;
}

.wrap {
  margin: 0 1rem;
}

@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;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
:target::before {
  content: "";
  display: block;
  height: 2rem;
  margin: -2rem 0 0;
  visibility: hidden;
}
@media screen and (min-width: 48em), print {
  :target::before {
    height: 10rem;
    margin: -10rem 0 0;
  }
}

.header .wrap {
  padding: 1rem 0 1rem;
}
.header .wrap .logo {
  height: 4.7rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) center left/contain no-repeat;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR ul {
  margin-top: 1rem;
}
.header .wrap .headR ul li {
  font-size: 1.3rem;
  text-align: center;
}
.header .wrap .headR ul li.no_reserve {
  border-radius: 2rem;
  border: 1px solid #005EAD;
  color: #005EAD;
  padding: 0 1.5rem;
}
.header .wrap .headR ul li.acs::before {
  display: inline-block;
  content: "";
  background-image: url("../img/i_access.svg");
  background-position: center center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}

@media screen and (min-width: 48em), print {
  .header {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
  }
  .header .wrap {
    margin: 0 auto;
    padding: 1.5rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 35rem;
    height: 7rem;
  }
  .header .wrap .logo a {
    background: url(../img/logo.svg) center left/contain no-repeat;
  }
  .header .wrap .headR {
    width: auto;
  }
  .header .wrap .headR ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
  }
  .header .wrap .headR ul li.no_reserve {
    font-size: 1.6rem;
    margin-right: 2rem;
    border-radius: 2rem;
    border: 1px solid #005EAD;
    color: #005EAD;
    padding: 0 1.5rem;
  }
  .header .wrap .headR ul li.acs {
    font-size: 1.6rem;
    margin-right: 3.6rem;
  }
  .header .wrap .headR ul li.acs br {
    display: none;
  }
  .header .wrap .headR ul li .tel {
    font-size: 2rem;
    width: 19.4rem;
    height: 3.8rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  color: #005EAD;
  border: 1px solid #005EAD;
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.8rem;
  margin: -0.5rem 0 -0.2rem;
}
#nav #sp_menu::after {
  content: "MENU";
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#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: #fff;
  padding: 1.6rem;
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid #00B2D5;
  border-bottom: 1px solid #00B2D5;
}
#nav .gnav_subnav .gnav > li {
  min-width: fit-content;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid #00B2D5;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  align-items: flex-end;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  order: 1;
  /*
       &::before{
         content: attr(data-ruby);
         color: #036EB7;
         padding: 0 0 0 1rem;
         font-size: 80%;
         order: 2;
         font-weight: normal;
       }
  */
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: #036EB7;
}
#nav .gnav_subnav .gnav > li a.current .ruby, #nav .gnav_subnav .gnav > li .sub.current .ruby {
  color: #036EB7;
}
#nav .gnav_subnav .gnav > li .sub::after {
  content: "";
  background: url("../img/i_arrow-r.svg") no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  order: 3;
  font-size: 1rem;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  background: url("../img/i_arrow-down.svg") no-repeat center center/contain;
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  background: rgba(0, 94, 173, 0.92);
}
#nav .gnav_subnav .gnav > li .subbox .subnav {
  margin-top: 0;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.7rem 1rem;
  color: #fff;
  font-weight: normal;
  border-bottom: 1px solid #fff;
  font-size: 90%;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a::before {
  content: "●";
  margin-right: 0.4rem;
  padding: 0;
  font-size: 1rem;
  color: #57C3EA;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a.current {
  background: rgba(3, 110, 183, 0.92);
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: auto;
    overflow-y: visible;
    padding: 1.5rem 0 0 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 79.7rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    position: relative;
    /*
         &::after{
           content: "";
           display: block;
           width: 1px;
           height: 50%;
           background: #00B2D5;
           position: absolute;
           top: 1.7rem;
           right: 0;
         }
         &:first-child{
           &::before{
             content: "";
             display: block;
             width: 1px;
             height: 50%;
             background: #00B2D5;
             position: absolute;
             top: 1.7rem;
             left: 0;
           }
         }
    */
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    display: block;
    font-size: 1.6rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding: 0;
    /*
          &::before{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            display: block;
            padding: 0;
            font-size: 1.2rem;
            line-height: 1;
          }
    */
  }
  #nav .gnav_subnav .gnav li a::after, #nav .gnav_subnav .gnav li .sub::after {
    position: absolute;
    bottom: 0.26rem;
    right: -2.4rem;
    font-size: 1.6rem;
  }
  #nav .gnav_subnav .gnav li a:hover, #nav .gnav_subnav .gnav li .sub:hover {
    color: #036EB7;
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 4.2rem;
    left: -14.8rem;
    width: 56rem;
  }
  #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::before, #nav .gnav_subnav .gnav li .subbox > .subnav li::after {
    content: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    font-size: 1.6rem;
    padding: 0.75rem 0.8rem;
    display: flex;
    align-items: center;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:nth-of-type(odd) {
    border-right: 1px solid #fff;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a::before {
    position: static;
    order: 0;
    margin: 0 0.6rem 0 0;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    background: rgba(213, 238, 249, 0.92);
    color: #005EAD;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a.current {
    width: auto;
    opacity: 1;
  }
}
.overview {
  padding: 3rem 1rem 4rem;
  font-size: 1.2rem;
  line-height: 1.4;
  background: #F5F9FC;
  position: relative;
}
.overview > .wrap {
  margin: 0;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 70%;
  margin: 0 auto;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1rem 0 2rem;
}
.overview > .wrap .overviewR .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 0.04rem;
}
.overview > .wrap .overviewR .gaiyo dt {
  width: 23%;
  background: #D5EEF9;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.overview > .wrap .overviewR .gaiyo dd {
  width: 75%;
  margin-bottom: 0.5rem;
  background: #E9F1F8;
  padding: 1rem;
}
.overview > .wrap .overviewR .gaiyo dd .tel {
  color: #333;
  font-weight: normal;
  font-size: 1.3rem;
}
.overview > .wrap .overviewR .gaiyo dd .tel::before {
  content: none;
}
.overview > .wrap .overviewR .telBox {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFE55F;
  color: #005EAD;
  line-height: 1.44;
}
.overview > .wrap .overviewR .telBox .tel {
  line-height: 1;
  background: -webkit-linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  background: linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  background: -moz-linear-gradient(90deg, #005ead 30%, #57c3ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-size: 2.2rem;
}
.overview > .wrap .overviewR .telBox .tel::before {
  content: "";
  background: url("../img/tell_overview.svg") no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
}
.overview > .wrap .overviewR .telBox .tel a {
  line-height: 2;
  height: 100%;
}
.overview .gmap {
  border: 0;
  height: 25rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    font-size: 1.6rem;
    margin: 6rem auto 0;
    padding: 10rem 0 0 0;
    position: relative;
    overflow: hidden;
    max-width: 200rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 0 8.5rem;
  }
  .overview > .wrap .overviewL {
    position: relative;
    width: 57rem;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 auto 4rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 1.2rem 0 0;
  }
  .overview > .wrap .overviewR {
    width: 57rem;
  }
  .overview > .wrap .overviewR .gaiyo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    line-height: 2.1;
  }
  .overview > .wrap .overviewR .gaiyo dt {
    width: 13rem;
    font-size: 1.8rem;
    padding: 0;
  }
  .overview > .wrap .overviewR .gaiyo dd {
    width: 76%;
    margin-bottom: 0.5rem;
    padding: 0.8rem 1.6rem;
  }
  .overview > .wrap .overviewR .gaiyo dd .tel {
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewR .telBox {
    margin: 3rem 0 0 0;
    font-size: 1.6rem;
    width: 57rem;
    height: 8rem;
  }
  .overview > .wrap .overviewR .telBox .tel {
    font-size: 4rem;
  }
  .overview > .wrap .overviewR .telBox .tel::before {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 1rem 0 0;
  }
  .overview .gmap {
    width: 100%;
    height: 50rem;
  }
}
#tel_up {
  width: 100%;
  height: 3.5rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #C3F3FC;
}
#tel_up .tel_rsv {
  width: 80%;
  height: 100%;
  justify-content: space-evenly;
}
#tel_up .tel_rsv li {
  height: 2.85rem;
  /*
     &:first-of-type{
       width: 57%;
     }
  */
}
#tel_up .tel_rsv li .tel {
  font-size: 1.6rem;
  padding: 0.2rem 2rem 0;
}
#tel_up .tel_rsv li {
  /*
     .rsv{
       &::after{
         right: 1.0rem;
       }
     }
  */
}
#tel_up #pageup {
  display: block;
  width: 5rem;
  position: relative;
  right: 0.3rem;
  bottom: -1em;
}
@media screen and (min-width: 48em), print {
  #tel_up #pageup {
    height: 5rem;
    bottom: 1.2rem;
  }
}
#tel_up #pageup {
  padding: 0;
}
#tel_up #pageup span {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
#tel_up #pageup::before {
  width: 50%;
  font-size: 150%;
  font-family: "fontello";
  content: "\f005";
}
@media screen and (min-width: 48em), print {
  #tel_up #pageup::before {
    width: 70px;
    padding-right: 0.3rem;
    height: 70px;
    font-size: 4rem;
  }
}
#tel_up #pageup::before {
  color: #fff;
  display: inline-block;
  background: #005EAD;
  border-radius: 50%;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: auto;
    height: auto;
    background: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 12rem;
    height: 12rem;
    position: fixed;
    bottom: 0;
    right: 4rem;
  }
}
.footer {
  padding: 0 0 3.5rem;
}
.footer .copy {
  display: block;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  text-align: center;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
    background: #fff;
  }
  .footer .copy {
    margin: 4rem 0 0;
    padding: 1.3rem 0;
    font-size: 1.6rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    width: 80rem;
    margin: 0 auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 2rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a br {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul li.surgery {
    display: none;
  }
  .footer ul.subnav li:nth-child(5)::after, .footer ul.subnav li:nth-child(9)::after {
    content: none;
  }
}
@keyframes loop01 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop02 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
body.index .main {
  padding: 0;
  position: relative;
  overflow: hidden;
  padding: 0 0 5rem;
  margin-bottom: 2rem;
}
body.index .main::before, body.index .main::after {
  display: block;
  width: 200%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url(../img/index_carousel.webp) no-repeat center bottom/100% auto;
}
body.index .main::before {
  animation: loop01 20s linear infinite;
}
body.index .main::after {
  left: -1px;
  right: 1px;
  animation: loop02 20s linear infinite;
}
@media screen and (min-width: 48em), print {
  body.index .main {
    margin: 0;
    padding: 0 0 32rem;
  }
  body.index .main::before, body.index .main::after {
    width: 214rem;
    background: url(../img/index_carousel.webp) no-repeat center bottom/100% auto;
  }
  body.index .main::before {
    animation: loop01 50s linear infinite;
  }
  body.index .main::after {
    animation: loop02 50s linear infinite;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 25rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl > div {
  position: relative;
}
.keyvsl #keyvsl > div .wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 7rem 0 0 0;
  height: 14.8rem;
}
.keyvsl #keyvsl > div .wrap p.catch {
  display: table;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
  margin: 0;
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
  padding: 0.4rem 0.8rem 0.6rem;
}
.keyvsl #keyvsl > div .wrap p.catch span {
  color: #FFE55F;
}
.keyvsl #keyvsl .slick-list div img {
  height: 25rem !important;
  width: 100%;
  object-fit: cover;
  object-position: 45%;
}
.keyvsl #keyvsl .slick-list .slick-slide:nth-of-type(2) div img {
  object-position: 40%;
}
.keyvsl #keyvsl .slick-list .slick-slide:nth-of-type(3) div img {
  object-position: 37%;
}
.keyvsl #keyvsl .slick-list .slick-slide:nth-of-type(4) div img {
  object-position: 52%;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -1.8rem auto;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: #fff;
  opacity: 0.6;
}
.keyvsl #keyvsl .slick-dots li.slick-active button {
  background: #005EAD;
  opacity: 1;
}
.keyvsl .open_nairan {
  width: 98%;
  position: absolute;
  bottom: -8rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.keyvsl .open_nairan li {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}
.keyvsl .open_nairan li.open, .keyvsl .open_nairan li.nairan {
  color: #fff;
  background: #fff;
  position: relative;
  width: 15rem;
  height: 6rem;
  padding: 2.4rem 0 0 0;
}
.keyvsl .open_nairan li.open span.txt, .keyvsl .open_nairan li.nairan span.txt {
  font-weight: 700;
  color: #005EAD;
}
.keyvsl .open_nairan li.open span.txt::before, .keyvsl .open_nairan li.nairan span.txt::before {
  font-family: "fontello";
  content: "\e801";
  font-weight: normal;
  vertical-align: middle;
  margin: 0 0.4rem 0 0;
}
.keyvsl .open_nairan li.open span.date, .keyvsl .open_nairan li.nairan span.date {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  width: 12rem;
  height: 2rem;
  font-size: 1.2rem;
  padding: 0.4rem 0 0 0;
}
.keyvsl .open_nairan li.open span.date::before, .keyvsl .open_nairan li.nairan span.date::before {
  display: none;
}
.keyvsl .open_nairan li.open span.date span, .keyvsl .open_nairan li.nairan span.date span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border: 0.1rem #fff solid;
  line-height: 1;
  padding: 0.2rem;
  font-size: 1rem;
  margin: 0 0 0.4rem 0.6rem;
}
.keyvsl .open_nairan li.open span.date span::before, .keyvsl .open_nairan li.nairan span.date span::before {
  display: none;
}
.keyvsl .open_nairan li.nairan {
  display: none;
  padding: 1.4rem 0 0 0;
}
.keyvsl .open_nairan li.nairan span.txt {
  line-height: 0;
}
.keyvsl .open_nairan li.nairan span.txt::before {
  font-family: "fontello";
  content: "\e805";
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    max-width: 200rem;
    margin: 0 auto;
  }
  .keyvsl #keyvsl {
    height: 60rem;
  }
  .keyvsl #keyvsl > div {
    position: relative;
  }
  .keyvsl #keyvsl > div .wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 60rem;
    padding: 18rem 0 0 0;
  }
  .keyvsl #keyvsl > div .wrap p.catch {
    font-size: 4.4rem;
    margin: 0 0 1.6rem;
    padding: 1rem 1.4rem 1.2rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 60rem !important;
    object-position: center !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: -3.2rem auto;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .open_nairan {
    position: absolute;
    z-index: 1;
    bottom: 4rem;
    right: 0;
    left: auto;
    width: 42rem;
    margin: 0;
  }
  .keyvsl .open_nairan li.open, .keyvsl .open_nairan li.nairan {
    width: 20rem;
    height: 9rem;
    padding: 4rem 0 0 0;
  }
  .keyvsl .open_nairan li.open span.txt, .keyvsl .open_nairan li.nairan span.txt {
    font-size: 1.8rem;
  }
  .keyvsl .open_nairan li.open span.txt::before, .keyvsl .open_nairan li.nairan span.txt::before {
    margin: 0 0.8rem 0 0;
    font-size: 3rem;
  }
  .keyvsl .open_nairan li.open span.date, .keyvsl .open_nairan li.nairan span.date {
    width: 18rem;
    height: 4rem;
    font-size: 2rem;
    padding: 0.2rem 0 0 0;
  }
  .keyvsl .open_nairan li.open span.date span, .keyvsl .open_nairan li.nairan span.date span {
    padding: 0.4rem 0.35rem;
    font-size: 1.6rem;
    margin: 0 0 0.4rem 0.8rem;
  }
}
.top_tit02 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  width: fit-content;
  margin: 0 auto 2rem;
  width: auto;
  position: relative;
}
.top_tit02 span {
  z-index: 1;
  position: relative;
}
.top_tit02::before {
  position: relative;
  display: block;
  content: "";
  background: url("../img/icon_crown.svg") no-repeat center center/contain;
  width: 5rem;
  height: 1.3rem;
  z-index: 1;
  margin: 0 auto 0.6rem;
}
.top_tit02::after {
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  color: #DBF0F9;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  font-size: 4rem;
  top: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 4rem;
    letter-spacing: 0.15rem;
  }
  .top_tit02::before {
    margin: 0 auto 2rem;
    width: 10rem;
    height: 2.6rem;
  }
  .top_tit02::after {
    font-size: 14.8rem;
    top: 2.1rem;
  }
}
.info {
  margin-top: 0;
  padding: 4rem 0;
  background: #F5F9FC;
}
.info dl {
  line-height: 1.4;
}
.info dl dt, .info dl dd {
  word-break: break-all;
}
.info dl dt {
  display: flex;
}
.info dl dt > div {
  display: inline-block;
}
.info dl dt {
  margin: 0 0 0.6rem;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  font-size: 110%;
  position: relative;
  padding: 1rem 0 0 0;
}
.info dl dt::before {
  display: inline-block;
  content: "";
  background: url("../img/i_arrow-circle-close.svg") no-repeat center center/contain;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.6rem 0 0;
  vertical-align: bottom;
}
.info dl dt.open::before {
  background: url("../img/i_arrow-circle-open.svg") no-repeat center center/contain;
}
.info dl dd {
  margin: 0 0 1.6rem;
  padding: 0 0 1.6rem 2rem;
  word-wrap: break-word;
}
.info dl dd:not(:last-child) {
  border-bottom: 0.1rem #C4DAED solid;
}
.info dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.info dl dd a {
  color: #00B2D5;
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 0 !important;
    padding: 0.8rem 0 12rem;
    min-height: 40rem;
  }
  .info .wrap {
    display: flex;
    position: relative;
    padding: 11.2rem 0 0 0;
  }
  .info .wrap::before {
    content: "";
    display: block;
    background: url("../img/bg_news.png") no-repeat center center/contain;
    width: 12.1rem;
    height: 38.7rem;
    position: absolute;
    top: 3.7rem;
    left: -6rem;
  }
  .info .wrap .top_tit02 {
    font-size: 3.2rem;
    height: fit-content;
    z-index: 1;
  }
  .info .wrap dl {
    flex: 1;
    margin-left: 15.9rem;
    width: 91rem;
    min-height: 24rem;
  }
  .info .wrap dl dt {
    font-size: 2rem;
    margin: 0 0 2rem;
    letter-spacing: 0.1rem;
  }
  .info .wrap dl dt::before {
    margin: 0 1.5rem 0 0;
    width: 2.8rem;
    height: 2.8rem;
  }
  .info .wrap dl dd {
    font-size: 1.6rem;
    margin: 0 0 2.5rem;
    padding-left: 4.6rem;
    padding-bottom: 2.5rem;
    letter-spacing: 0.1rem;
  }
  .info .wrap dl dd a:hover {
    color: #D5EEF9;
    text-decoration: underline !important;
  }
}
.philosophy {
  margin-top: 0 !important;
  padding: 4rem 0 0 0;
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
}
.philosophy .wrap {
  position: relative;
  height: 100%;
  padding: 3rem 0;
}
.philosophy .wrap .top_tit02 {
  z-index: 10;
}
.philosophy .wrap .top_tit02::after {
  content: "PHILOSOPHY";
}
.philosophy .wrap .txt {
  z-index: 11;
  position: inherit;
  padding: 0 1rem;
}
.philosophy .wrap .txt p {
  margin: 0 0 1.8rem;
  letter-spacing: 0.06rem;
  line-height: 1.9;
}
.philosophy .wrap::after {
  display: block;
  position: absolute;
  bottom: 0;
  content: "";
  background: #EBFAFD;
  width: 120%;
  height: 100%;
}

@media screen and (min-width: 48em), print {
  .philosophy {
    height: 80.6rem;
    padding: 15.2rem 0 0 0;
  }
  .philosophy .wrap {
    margin: 0 auto;
    padding: 0;
  }
  .philosophy .wrap .top_tit02 {
    margin: 0 auto 12.4rem;
  }
  .philosophy .wrap .txt {
    padding: 0 7.5rem 0 8.8rem;
    height: 43.6rem;
  }
  .philosophy .wrap .txt p {
    margin: 0 0 2.3rem;
  }
  .philosophy .wrap::after {
    width: 180rem;
    height: 71.3rem;
    margin: 0;
    left: -20rem;
  }
}
.feature {
  background: #fff;
  padding-bottom: 1rem;
  overflow-x: hidden;
}
.feature .top_tit02::after {
  content: "FEATURE";
}
.feature .wrap .inner figure, .feature .wrap .inner2 figure {
  margin: 0 0 3rem;
  position: relative;
}
.feature .wrap .inner figure figcaption, .feature .wrap .inner2 figure figcaption {
  position: absolute;
  top: -0.8rem;
  left: 1rem;
}
.feature .wrap .inner figure figcaption p, .feature .wrap .inner2 figure figcaption p {
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
  color: #fff;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  font-size: 1.2rem;
  padding: 0.4rem 0.6rem 0.5rem;
  margin: 0 0 0.2rem;
}
@media screen and (min-width: 48em), print {
  .feature {
    margin-top: 0 !important;
    background: #fff;
    overflow-x: visible;
    padding: 12rem 0 4rem;
    overflow: hidden;
  }
  .feature .top_tit02 {
    margin: 0 auto 12.4rem;
  }
  .feature .wrap {
    margin: 0 auto;
    position: relative;
  }
  .feature .wrap::after {
    display: block;
    position: absolute;
    content: "";
    background: url("../img/mark.svg") no-repeat center center/contain;
    width: 145rem;
    height: 120rem;
    top: -18.9rem;
    right: -88rem;
  }
  .feature .wrap .inner, .feature .wrap .inner2 {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 8rem;
    z-index: 3;
    position: relative;
  }
  .feature .wrap .inner > figure:first-child, .feature .wrap .inner2 > figure:first-child {
    margin: 0 6rem 0 0;
  }
  .feature .wrap .inner figure, .feature .wrap .inner2 figure {
    margin: 0;
  }
  .feature .wrap .inner figure img, .feature .wrap .inner2 figure img {
    width: 54rem;
  }
  .feature .wrap .inner figure figcaption, .feature .wrap .inner2 figure figcaption {
    top: -1.6rem;
    left: 2rem;
  }
  .feature .wrap .inner figure figcaption p, .feature .wrap .inner2 figure figcaption p {
    font-size: 2rem;
    padding: 0.5rem 0.8rem 0.7rem;
    margin: 0 0 0.8rem;
  }
  .feature .wrap .inner2 {
    justify-content: flex-end;
  }
}
.treat {
  padding: 4rem 0 3rem;
  margin-bottom: 4rem;
  background: #F5F9FC;
  position: relative;
}
.treat::after {
  display: block;
  position: absolute;
  bottom: 0;
  content: "";
  background: #005ead;
  background: -moz-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: -webkit-linear-gradient(left, #005ead 0%, #57c3ea 100%);
  background: linear-gradient(to right, #005ead 0%, #57c3ea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005ead', endColorstr='#57c3ea',GradientType=1 );
}
.treat .top_tit02::after {
  content: "TREATMENT";
}
.treat.trigger .subnav li {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.treat.trigger .subnav li:nth-child(1) {
  animation-delay: 0.2s;
}
.treat.trigger .subnav li:nth-child(2) {
  animation-delay: 0.4s;
}
.treat.trigger .subnav li:nth-child(3) {
  animation-delay: 0.6s;
}
.treat.trigger .subnav li:nth-child(4) {
  animation-delay: 0.8s;
}
.treat.trigger .subnav li:nth-child(5) {
  animation-delay: 1s;
}
.treat.trigger .subnav li:nth-child(6) {
  animation-delay: 1.2s;
}
.treat.trigger .subnav li:nth-child(7) {
  animation-delay: 1.4s;
}
.treat.trigger .subnav li:nth-child(8) {
  animation-delay: 1.6s;
}
.treat.trigger .subnav li:nth-child(9) {
  animation-delay: 1.8s;
}
.treat.trigger .subnav li:nth-child(10) {
  animation-delay: 2s;
}
.treat.trigger .subnav li:nth-child(11) {
  animation-delay: 2.2s;
}
.treat.trigger .subnav li:nth-child(12) {
  animation-delay: 2.4s;
}
.treat.trigger .subnav li:nth-child(13) {
  animation-delay: 2.6s;
}
.treat.trigger .subnav li:nth-child(14) {
  animation-delay: 2.8s;
}
.treat.trigger .subnav li:nth-child(15) {
  animation-delay: 3s;
}
.treat.trigger .subnav li:nth-child(16) {
  animation-delay: 3.2s;
}
.treat nav {
  position: relative;
}
.treat nav .subnav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  gap: 0 1.2rem;
}
.treat nav .subnav li {
  width: 48%;
  height: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  opacity: 0;
}
.treat nav .subnav li::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.treat nav .subnav li a {
  display: block;
  width: 100%;
  height: 15rem;
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding: 9.5rem 0 0 0;
}
.treat nav .subnav li a span {
  display: block;
}
.treat nav .subnav li a::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: url("../img/arrow_treatment.svg") no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
  display: block;
  z-index: 2;
}
.treat nav .subnav li a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 1rem auto 0;
}
.treat nav .subnav li a.sb01::after {
  content: url("../img/01_general.svg");
}
.treat nav .subnav li a.sb02::after {
  content: url("../img/02_kids.svg");
}
.treat nav .subnav li a.sb03::after {
  content: url("../img/03_cataract-surgery.svg");
}
.treat nav .subnav li a.sb04::after {
  content: url("../img/04_laser.svg");
}
.treat nav .subnav li a.sb05::after {
  content: url("../img/05_injection.svg");
}
.treat nav .subnav li a.sb06::after {
  content: url("../img/06_glaucoma.svg");
}
.treat nav .subnav li a.sb07::after {
  content: url("../img/07_diabetic-retinopathy.svg");
}
.treat nav .subnav li a.sb08::after {
  content: url("../img/08_macular-degeneration.svg");
}
.treat nav .subnav li a.sb09::after {
  content: url("../img/09_dry.svg");
}
.treat nav .subnav li a.sb10::after {
  content: url("../img/10_hay-Fever.svg");
}
.treat nav .subnav li a.sb11::after {
  content: url("../img/11_conjunctivitis.svg");
}
.treat nav .subnav li a.sb12::after {
  content: url("../img/12_vitreous-surgery.svg");
}

@media screen and (min-width: 48em), print {
  .treat {
    padding: 10rem 0 6rem;
    overflow: hidden;
    max-width: 200rem;
    margin: 0 auto;
  }
  .treat::after {
    width: 180rem;
    height: 42rem;
    margin: 0 20rem 0 0;
  }
  .treat .top_tit02 {
    margin: 0 auto 9rem;
  }
  .treat nav .subnav {
    width: 1200px;
    gap: 4rem;
  }
  .treat nav .subnav li {
    width: 27rem;
    height: 22rem;
    margin-bottom: 0;
  }
  .treat nav .subnav li::before {
    top: 0;
    transition: 0.5s;
    z-index: 1;
  }
  .treat nav .subnav li::after {
    content: " ";
    display: block;
    width: 27rem;
    height: 22rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    transition: all 0.5s;
    transform: scale(0.1);
    z-index: 2;
  }
  .treat nav .subnav li:hover::after {
    transform: scale(1);
    transform: translateY(0px);
    background-image: radial-gradient(white, white 40%, #d5eef9);
  }
  .treat nav .subnav li a {
    font-size: 2rem;
    padding: 13.8rem 0 0;
    position: relative;
    z-index: 3;
    line-height: 1.25;
    height: 22rem;
  }
  .treat nav .subnav li a::after {
    display: block;
    width: 10rem;
    height: 10rem;
    margin: 2rem auto 2.5rem;
    transition: 0.5s;
    overflow: hidden;
  }
  .treat nav .subnav li a::before {
    width: 2.8rem;
    height: 2.8rem;
  }
  .treat nav .subnav li a:hover {
    color: #005EAD;
  }
  .treat nav .subnav li a:hover::before {
    color: #005EAD;
  }
  .treat nav .subnav li a:hover::after {
    transform: translateY(-3px);
  }
}
/* -----------------------------------------------------------
　カレンダー
----------------------------------------------------------- */
.calendar_frame {
  background: #fff;
  padding-bottom: 1rem;
  overflow-x: hidden;
}
.calendar_frame .top_tit02::after {
  content: "CALENDAR";
}
.calendar_frame .calender_box {
  width: 96%;
  margin: 0rem auto 0 auto;
}
.calendar_frame .calender_box table {
  width: 100%;
}
.calendar_frame .calender_box table tr.month {
  display: none;
}
.calendar_frame .calender_box .next_month {
  display: none;
}
.calendar_frame .calender_box .c_open {
  display: block;
}
.calendar_frame .calender_box .c_close {
  display: none;
}
.calendar_frame .calender_color {
  width: 96%;
  margin: 0 auto 2rem auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.calendar_frame .calender_color p {
  margin: 0 2rem 0 0;
}
.calendar_frame .calender_color p.open::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #5bc4f2;
  margin-right: 1rem;
}
.calendar_frame .calender_color p.amOnly::before {
  /*color: #eef2a9;*/
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(180deg, #5bc4f2 0%, #5bc4f2 50%, #F2F2F2 50%, #F2F2F2 100%);
  margin-right: 1rem;
}
.calendar_frame .calender_color p.pmOnly::before {
  /*color: #d4f7ff;*/
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(180deg, #F2F2F2 0%, #F2F2F2 50%, #5bc4f2 50%, #5bc4f2 100%);
  margin-right: 1rem;
}
.calendar_frame .calender_color p.pmsubstitute::before {
  content: "";
  display: inline-block;
  /*color: #FFFFCC;*/
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(180deg, #5bc4f2 0%, #5bc4f2 50%, #00A550 50%, #00A550 100%);
  margin-right: 1rem;
}
.calendar_frame .calender_color p.amsubstitute::before {
  content: "";
  display: inline-block;
  /*color: #FFFFCC;*/
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(180deg, #00A550 0%, #00A550 50%, #F2F2F2 50%, #F2F2F2 100%);
  margin-right: 1rem;
}
.calendar_frame .calender_color p.substitute::before {
  content: "";
  /*color: #00A550 ;*/
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #00A550;
  margin-right: 1rem;
}
.calendar_frame .calender_color p.outPatient::before {
  content: "";
  /*color: #F2F2F2;*/
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #F2F2F2;
  margin-right: 1rem;
}
.calendar_frame .calender_color p.onduty::before {
  content: "";
  /*color: #FFE55F ;*/
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #FFE55F;
  margin-right: 1rem;
}
.calendar_frame .calender_color p.pmsurgery::before {
  /*color: #a9e779;*/
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(180deg, #5bc4f2 0%, #5bc4f2 50%, #a9e779 50%, #a9e779 100%);
  margin-right: 1rem;
}
.calendar_frame .calendar_btn {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.calendar_frame .calendar_btn a {
  cursor: pointer;
  width: 30%;
  display: block;
  position: relative;
  text-align: center;
  color: #FFF;
  min-height: 3rem;
  margin: 0;
  padding: 0.6rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  line-height: 100%;
  position: relative;
  z-index: 1;
  background: #005ead;
}
.calendar_frame .calendar_btn a::after {
  font-family: "fontello";
  content: "\f006";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFF;
}
.calendar_frame .calendar_btn a.active {
  background-color: #007bff; /* アクティブなボタンの背景色 */
}

@media screen and (min-width: 48em), print {
  .calendar_frame {
    margin: 0 0 90px 0;
  }
  .calendar_frame .calender_box {
    width: 700px;
    margin: 0 auto;
  }
  .calendar_frame .calender_box table {
    width: 100%;
  }
  .calendar_frame .calender_color {
    width: 700px;
    margin: 0 auto 20px auto;
  }
  .calendar_frame .calendar_btn {
    width: 700px;
    margin: 64px auto 0;
  }
  .calendar_frame .calendar_btn a {
    text-align: center;
    width: 98px;
    min-height: 44px;
    margin: 5px 0 1px 0;
    padding: 0.6rem;
    font-size: 1.6rem;
  }
}
body:not(.index) .main {
  margin: 0 0rem 6rem;
}
body:not(.index) .main p {
  margin: 0 0 2rem;
  letter-spacing: 0.06rem;
  line-height: 1.9;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 8rem;
  }
  body:not(.index) .main p {
    margin: 0 0 4rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 46rem;
    height: auto;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.2rem;
  margin: 0 1rem 3rem;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: ">";
  margin: 0 0.4rem;
}
.breadcrumb li a {
  color: #005EAD;
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.6rem;
    width: 1200px;
    margin: 0 auto 6rem;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 0.8rem;
  }
  .breadcrumb li a:hover {
    color: #D5EEF9;
  }
}
.doctor .dr_name {
  text-align: right;
}
.doctor .dr_name span {
  display: block;
}

.clinic .txt_blue.bold {
  font-size: 1.2rem;
  margin: -0.5rem 0 1.5rem;
}
@media screen and (min-width: 48em), print {
  .clinic .txt_blue.bold {
    font-size: 150%;
    text-align: center;
    margin-bottom: 3rem;
  }
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: #fff;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(0, 94, 173, 0.8);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\f006";
  color: #005EAD;
  font-size: 2.4rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #005EAD;
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid #005EAD;
}
.gallery #device .slick-track {
  transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 4.4rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1.6rem auto;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid #005EAD;
  }
  .gallery #device .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery #device .gallery_thum .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
.first .first_flex .img {
  max-width: 80%;
  margin: 1rem auto;
}
.first .first_flex .img img {
  border-radius: 5px;
}

@media screen and (min-width: 48em), print {
  .first .first_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  .first .first_flex .img {
    max-width: 35%;
    margin: 0 0 0 auto;
  }
  .first .first_flex .img img {
    border-radius: 10px;
  }
}
.boxFlow, .boxFlow_lc {
  background: #F5F9FC;
  padding: 1rem;
  position: relative;
  margin: 0 0 4.5rem;
}
.boxFlow h4, .boxFlow_lc h4 {
  border-bottom: 0.2rem #57C3EA solid;
  color: #005EAD;
  font-size: 1.8rem;
  padding: 0 0 1rem;
  margin: 0 0 1.4rem;
}
.boxFlow p, .boxFlow_lc p {
  margin: 0 !important;
}
.boxFlow::after, .boxFlow_lc::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #57C3EA;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

.boxFlow_lc::after {
  display: none;
}

@media screen and (min-width: 48em), print {
  .boxFlow, .boxFlow_lc {
    padding: 3rem;
    margin: 0 0 6.5rem;
  }
  .boxFlow h4, .boxFlow_lc h4 {
    font-size: 2.4rem;
    padding: 0 0 2rem;
    margin: 0 0 2.5rem;
  }
  .boxFlow::after, .boxFlow_lc::after {
    bottom: -5rem;
  }
}
.access .acs_dl {
  margin-top: 2rem;
  border: 1px solid #1DA7F1;
}
.access .acs_dl dt {
  background: #DBF3FF;
  padding: 0.4rem 1rem;
}
.access .acs_dl dt:not(:first-of-type) {
  border-top: 1px solid #1DA7F1;
}
.access .acs_dl dd {
  padding: 0.8rem 1rem;
}
.access .acs_dl dd .tel {
  background: none;
  color: #005EAD;
  justify-content: flex-start;
}
.access .gmap {
  width: 100%;
  height: 35rem;
  margin: 2rem 0 0;
}
@media screen and (min-width: 48em), print {
  .access .acs_dl {
    display: flex;
    flex-wrap: wrap;
  }
  .access .acs_dl dt {
    width: 25%;
    padding: 1.5rem 2rem;
  }
  .access .acs_dl dd {
    width: 75%;
    padding: 1.5rem 2rem;
  }
  .access .acs_dl dd:not(:first-of-type) {
    border-top: 1px solid #1DA7F1;
  }
  .access .tbl_time {
    font-size: 2rem;
  }
  .access .gmap {
    margin: 6rem auto 4rem;
    height: 45rem;
  }
}

.icl_box dl {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.icl_box dl img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.icl_box dl dd {
  margin-bottom: 4rem;
}
.icl_box dl::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #57C3EA;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
.icl_box dl:last-child::after {
  content: none;
}

@media screen and (min-width: 48em), print {
  .icl_box {
    display: flex;
    justify-content: space-between;
  }
  .icl_box dl {
    width: 24%;
    position: relative;
  }
  .icl_box dl dd {
    margin: 0;
  }
  .icl_box dl::after {
    position: absolute;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%; /* 要素の右端に配置する場合 */
    margin: auto;
    border-top: 3rem solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 3rem solid transparent;
    border-left: 2rem solid #57C3EA; /* ← 左ボーダーに色をつけると右向き矢印 */
  }
}
dl.faq {
  margin: 1.5em 0;
  border: 1px solid #ccc;
}
dl.faq dt {
  background-color: #0066cc; /* 青帯 */
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1em;
}
dl.faq dd {
  padding: 1em;
  line-height: 1.6;
}

/*# sourceMappingURL=style.css.map */