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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 bgzoom {
  0% {
    background-size: 130% auto;
  }
  100% {
    background-size: 100% auto;
  }
}
@keyframes imgzoom {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    background: none;
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadePara {
  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_red {
  color: #EF586F;
}

.line_mark {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FBFF88 0%) repeat scroll 0 0;
}

.notes {
  font-size: 80%;
}
.notes a::after {
  content: "▼";
  margin-left: -0.8rem;
  font-size: 85%;
  pointer-events: auto;
  color: #6395eb;
}
.notes:hover a::after {
  color: #6495ED;
}

.itly {
  font-style: italic;
}

blockquote {
  font-style: italic;
  display: inline-block;
  font-size: 80%;
  color: #999;
  background: #f1f1f1;
  font-family: sans-serif;
  padding: 1.5rem 3rem;
}

.interval {
  display: block;
  margin: 1.5rem 0;
  padding: 0.2rem 0;
  text-align: center;
  background: #F1F5FD;
  color: #6495ED;
  font-size: 110%;
}
@media screen and (min-width: 48em), print {
  .interval {
    font-size: 115%;
    margin: 2rem 0 3rem;
    padding: 1rem 0;
  }
}

.img_c {
  margin: 1rem auto;
}

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

.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .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 !important;
}

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

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

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

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

.mt0 {
  margin-top: 0 !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;
}

body:not(.index) .main .wrap > section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main .wrap > section > section {
  margin-top: 4rem;
}
body:not(.index) .main .wrap > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main .wrap > section > section section ~ section {
  margin-top: 2rem;
}
body:not(.index) .main .wrap > 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;
  }
  body:not(.index) .main .wrap > section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main .wrap > section > section {
    margin-top: 8rem;
  }
  body:not(.index) .main .wrap > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main .wrap > section > section section ~ section {
    margin-top: 4rem;
  }
  body:not(.index) .main .wrap > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  padding: 0.5rem 0.5rem 1rem;
  background: #fff;
  border-top: 1px solid #6495ED;
  border-bottom: 1px solid #6495ED;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  font-size: 90%;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  line-height: 1;
  color: #6495ED;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
    padding: 1rem 1rem 3rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 27%;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
.ymap {
  max-width: 100%;
}

.gmap {
  width: 100%;
}

.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center center/100% auto;
  font-size: 2.2rem;
  font-weight: normal;
  font-family: "游ゴシック体", YuGothic;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 4rem;
  color: #333;
  text-shadow: 1px 1px 1px #fff, -1px 1px 12px #fff, 1px -1px 12px #fff, -1px -1px 12px #fff;
}
.tit_01 span {
  display: block;
  font-size: 85%;
  line-height: 1;
}

.tit_02 {
  color: #333;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
}

.tit_03 {
  background: #6495ED;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding: 0.8rem 1rem;
}

.tit_04 {
  color: #6495ED;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #6495ED;
}

.tit_05 {
  color: #6495ED;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.2rem;
    padding: 8rem 0;
    margin-bottom: 8rem;
  }
  .tit_02 {
    font-size: 4.2rem;
    margin-bottom: 7rem;
    letter-spacing: 0.2rem;
  }
  .tit_03 {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding: 1.2rem 1.5rem;
    letter-spacing: 0.1rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    letter-spacing: 0.1rem;
  }
  .tit_05 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
  }
}
.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: "・";
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #333;
}
.lst_ul.odd li:last-child {
  width: auto;
}

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

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 2.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) ".";
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #6395eb;
}

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

.lst_dl02 {
  margin-top: 2rem;
}
.lst_dl02 dt {
  font-weight: bold;
  color: #3A9BD8;
  padding: 0.3rem 0 0.3rem 1rem;
  border-top: 1px solid #6495ED;
}
.lst_dl02 dd {
  margin: 0 0 2.5rem;
  padding: 0.6rem 1rem;
  border-top: 1px dotted #6495ED;
}

.lst_dl03 {
  margin-top: 2rem;
}
.lst_dl03 dt {
  font-weight: bold;
  background: #F1F5FD;
  padding: 0.3rem 0 0.3rem 1rem;
  border-top: 1px dotted #ccc;
}
.lst_dl03 dd {
  margin: 0 0 2.5rem;
  padding: 0.6rem 1rem;
  border-top: 1px dotted #ccc;
}

.lst_dl04 dt {
  background: #F1F5FD;
  padding: 0.3rem 1rem;
  border-top: 1px dotted #ccc;
}
.lst_dl04 dd {
  margin: 0 0 2.5rem;
  padding: 0.6rem 1rem;
  border-top: 1px dotted #ccc;
}

.lst_dl_qa dt::before, .lst_dl_qa dd::before {
  margin-right: 0.4em;
}
.lst_dl_qa dt {
  margin-bottom: 1em;
  font-weight: 600;
}
.lst_dl_qa dt::before {
  content: "Q.";
  color: #000080;
}
.lst_dl_qa dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: #f2f2f2;
}
.lst_dl_qa dd::before {
  content: "A.";
  color: #000080;
}
.lst_dl_qa.-indent dd {
  padding-left: 2.4em;
  text-indent: -1.4em;
}

.cite_lst {
  margin-top: 8rem;
}
.cite_lst::before {
  content: "";
  display: block;
  background: #aaa;
  width: 55%;
  height: 1px;
  margin-bottom: 2rem;
}
.cite_lst li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.cite_lst li:not(:last-child) {
  margin: 0 0 1rem;
}
.cite_lst li .bold {
  font-size: 95%;
}

@media screen and (min-width: 48em), print {
  .lst_ol > li {
    padding: 0 0 0 4.6rem;
  }
  .lst_dl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl dt {
    width: 50%;
  }
  .lst_dl dd {
    width: 50%;
    padding: 0 0 0 1rem;
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
  .lst_dl02 {
    border-bottom: 1px solid #6495ED;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .lst_dl02 dt {
    width: 20%;
    padding: 1rem 1rem 1rem 2.5rem;
  }
  .lst_dl02 dd {
    width: 80%;
    margin: 0;
    padding: 1rem 1rem 1rem 2.5rem;
    border-top: 1px solid #6495ED;
  }
  .lst_dl03 {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .lst_dl03 dt {
    width: 20%;
    padding: 1rem 1rem 1rem 2.5rem;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .lst_dl03 dd {
    width: 80%;
    margin: 0;
    padding: 1rem 2.5rem;
    border-top: 1px solid #ccc;
  }
  .lst_dl04 {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .lst_dl04 dt {
    width: 55%;
    padding: 1rem 1rem 1rem 2.5rem;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .lst_dl04 dd {
    width: 45%;
    margin: 0;
    padding: 1rem 2.5rem;
    border-top: 1px solid #ccc;
  }
  .cite_lst {
    margin-top: 12rem;
  }
  .cite_lst::before {
    width: 30%;
    margin-bottom: 3rem;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex > li {
  width: 49%;
}

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

@media screen and (min-width: 48em), print {
  .flex, .flex_02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .flex > li, .flex_02 > li {
    width: fit-content;
    margin: 0 2rem 0 0 !important;
  }
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    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;
  }
  .flex3_01 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .flex3_01 > li {
    width: 31%;
  }
  .flex3_01 > li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  display: inline-block;
  color: #40688D;
}
.tel::before {
  font-family: "fontello";
  content: "\e809";
  padding-right: 0.5rem;
  font-size: 90%;
}
@media screen and (min-width: 48em), print {
  .tel {
    pointer-events: none;
  }
}

.rsv {
  display: inline-block;
  justify-content: center;
  align-items: center;
  background: #6495ED;
  border: 1px solid #6495ED;
  color: #fff;
  padding: 0.6rem 4rem;
}
.rsv::before {
  font-family: "fontello";
  content: "\e807";
  padding-right: 0.5rem;
}
.rsv:hover {
  background: #fff;
  color: #6495ED;
}

.tel_rsv {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tel_rsv li {
  width: 48%;
  text-align: center;
}
.tel_rsv li .tel {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 1rem 0;
}
.tel_rsv li .rsv {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
}

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

.bnr {
  margin: 0 1rem;
}
@media screen and (min-width: 48em), print {
  .bnr {
    margin: 6rem auto 0;
    width: 73rem;
  }
}

.btn_detail {
  display: inline-block;
  padding: 0.4rem 2rem;
  background: #fff;
  color: #5dbc56;
  text-decoration: none !important;
}
@media screen and (min-width: 48em), print {
  .btn_detail:hover {
    background: #5dbc56;
    color: #fff;
  }
}

.btn {
  margin: 0.1rem 0.5rem;
  padding: 0.4rem 3rem;
  display: inline-block;
  text-decoration: none !important;
  letter-spacing: 0.1rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.btn::after {
  font-family: "fontello";
  content: "\e802";
  line-height: 1;
  font-size: 1.1rem;
  position: absolute;
  right: 0.6rem;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn.blue {
  background: #6495ED;
  color: #fff;
  border: 1px solid #6495ED;
}
.btn.subblue {
  background: #6395eb;
  color: #fff;
  border: 1px solid #6395eb;
}
@media screen and (min-width: 48em), print {
  .btn {
    margin: 0 0.5rem;
    padding: 0.5rem 4rem;
    letter-spacing: 0.2rem;
  }
  .btn::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    transition: all 0.4s;
  }
  .btn:after {
    font-size: 1.4rem;
    right: 1rem;
  }
  .btn:hover {
    opacity: 1;
  }
  .btn:hover::before {
    transform: scale(1);
  }
  .btn.blue:hover {
    color: #6495ED;
  }
  .btn.blue:hover::before {
    background: #E8EFFC;
  }
  .btn.subblue:hover {
    color: #6395eb;
  }
  .btn.subblue:hover::before {
    background: #E8EFFC;
  }
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  letter-spacing: 0.05rem;
  cursor: pointer;
  color: #3A9BD8;
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.lnk::before {
  font-family: "fontello";
  content: "\e804";
  position: absolute;
  top: 0.3rem;
  left: 0;
  font-size: 80%;
}
.lnk:hover {
  opacity: 0.5 !important;
  text-decoration: underline !important;
}
.lnk.maru::before {
  font-family: "fontello";
  content: "\f111";
}
.lnk.out {
  padding-left: 1.5rem;
}
.lnk.out::before {
  content: none;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
  display: inline-block;
  margin-left: 0.2rem;
}
@media screen and (min-width: 48em), print {
  .lnk.out {
    padding-left: 2.4rem;
  }
  .lnk.out::after {
    margin-left: 0.5rem;
  }
}
.lnk.scr {
  padding-left: 0;
  color: #333;
}
.lnk.scr::before {
  content: none;
}
.lnk.scr::after {
  font-family: "fontello";
  content: "\e801";
  position: absolute;
  bottom: 0;
  right: -2rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 48em), print {
  .lnk.scr::after {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}
.lnk.scr:hover {
  color: #6495ED;
}

.linkout {
  border-top: 1px solid #C0D3F6;
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .linkout {
    margin-top: 6rem;
  }
}

.tbl {
  width: 100%;
  font-size: 90%;
  border-spacing: 0;
  border-collapse: collapse;
}
.tbl caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl thead tr th:not(:first-of-type) {
  background: #b4c6e7;
}
.tbl tr th {
  border: 1px solid #ccc;
  text-align: center;
  padding: 1rem 0.5rem;
  font-weight: normal;
}
.tbl tr td {
  border: 1px solid #ccc;
  text-align: center;
  padding: 1rem 0.5rem;
}
.tbl tbody tr th {
  white-space: nowrap;
}
.tbl.-color02 thead tr th:not(:first-of-type) {
  background: #e2efda;
}

@media screen and (min-width: 48em), print {
  .tbl {
    font-size: 1.8rem;
  }
  .tbl tr th, .tbl tr td {
    padding: 1rem 1.5rem;
  }
}
.tbl_scroll {
  overflow: auto;
}
.tbl_scroll .tbl {
  overflow: scroll;
}
.tbl_scroll .tbl tr th, .tbl_scroll .tbl tr td {
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .tbl_scroll .tbl {
    overflow: auto;
  }
  .tbl_scroll .tbl tr th, .tbl_scroll .tbl tr td {
    white-space: inherit;
  }
  .tbl_scroll .tbl tbody tr th {
    white-space: nowrap;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: #000;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\71";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\77";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
  }
  .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: #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: "Hiragino Mincho ProN", "Yu Mincho", serif;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 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.4rem;
  line-height: 1.6;
}

.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.8rem;
    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: 4rem;
    margin: -4rem 0 0;
  }
}

.header {
  background: #fff;
}
.header .wrap {
  margin: 0;
  padding: 1rem 1rem 1.5rem;
}
.header .wrap .logo {
  width: calc(100% - 6rem);
  height: 5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR .tel_rsv .acs {
  width: calc(100% - 6rem);
  font-size: 1.4rem;
  margin: -1rem 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 40%;
    height: 8.6rem;
    margin-top: 1rem;
  }
  .header .wrap .headR {
    width: 60%;
  }
  .header .wrap .headR .tel_rsv {
    justify-content: flex-end;
  }
  .header .wrap .headR .tel_rsv li {
    width: auto;
    margin-left: 2rem;
  }
  .header .wrap .headR .tel_rsv li.acs {
    width: auto;
    margin: 0;
    font-size: 1.8rem;
  }
  .header .wrap .headR .tel_rsv li .tel {
    font-size: 3rem;
    font-weight: bold;
  }
  .header .wrap .headR .tel_rsv li .rsv {
    padding: 1rem 3.2rem;
    font-size: 1.8rem;
  }
  .header .wrap .headR .tel_rsv li .rsv::before {
    display: block;
    padding: 0;
    font-size: 3.6rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4rem;
  height: 4rem;
  background: #fff;
  color: #6395eb;
  border: 1px solid #6395eb;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: fixed;
  top: 2.5rem;
  right: 1rem;
  z-index: 100;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e811";
  font-size: 2rem;
}
#nav #sp_menu::after {
  content: "MENU";
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e810";
}
#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 1rem;
  position: fixed;
  top: 7rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
#nav .gnav_subnav .gnav > li {
  min-width: fit-content;
  font-family: "游ゴシック体", YuGothic;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  text-decoration: underline;
  text-decoration-color: #6395eb;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
#nav .gnav_subnav .gnav > li .sub::after {
  content: "▼";
  color: #6395eb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  content: "▲";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  background: #6395eb;
  border: 1px solid #6395eb;
}
#nav .gnav_subnav .gnav > li .subbox .subnav {
  display: flex;
  flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li {
  width: 50%;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:nth-of-type(odd) {
  border-right: 1px solid #fff;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:last-of-type {
  border-bottom: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  align-items: center;
  padding: 1rem;
  color: #fff;
  font-weight: bold;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a span {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a.current {
  text-decoration: none;
  background: #E8EFFC;
  color: #6395eb;
  height: 100%;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    padding: 2rem 0;
    background: #fff;
    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: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    font-family: "游ゴシック体", YuGothic;
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li::after {
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    width: 40%;
    height: 2px;
    background: #6395eb;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  #nav .gnav_subnav .gnav li:hover::after {
    transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
    padding: 0 1rem;
    cursor: pointer;
    position: relative;
  }
  #nav .gnav_subnav .gnav li a:hover, #nav .gnav_subnav .gnav li .sub:hover {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav li a.current, #nav .gnav_subnav .gnav li .sub.current {
    background: none;
    color: #333;
    position: relative;
    border: none;
    text-decoration: none;
  }
  #nav .gnav_subnav .gnav li a.current::after, #nav .gnav_subnav .gnav li .sub.current::after {
    display: block;
    position: absolute;
    top: auto;
    bottom: -0.4rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 40%;
    height: 2px;
    background: #6395eb;
  }
  #nav .gnav_subnav .gnav li .sub::after {
    position: absolute;
    top: 0;
    right: 1rem;
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 3.5rem;
    left: -14.5rem;
    z-index: 100;
    width: 44rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li::after {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    padding: 1.6rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    background: #E8EFFC;
    color: #6395eb;
  }
}
.overview {
  padding: 4rem 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #E8EFFC;
}
.overview > .wrap {
  margin: 0;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 2rem 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.3;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 27%;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  color: #333;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 73%;
  margin-bottom: 1rem;
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  border-left: 1px solid #6495ED;
}
.overview > .wrap .overviewR .tel_rsv {
  margin-top: 2rem;
}
.overview > .wrap .overviewR .tel_rsv .tel {
  padding: 1.1rem 0;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 2rem 0;
}

.ymap {
  height: 100vw;
}

.gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 4rem 0 3rem;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .overview > .wrap .overviewL {
    width: 48%;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 2rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 57rem;
    margin: 0 auto 0 0;
  }
  .overview > .wrap .overviewL .gaiyo {
    margin-top: 3rem;
    letter-spacing: 0.05rem;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    padding: 0rem 0 0rem 1rem;
    width: 18%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    margin-bottom: 3.5rem;
    padding: 0rem 1rem 0rem 2rem;
    width: 82%;
  }
  .overview > .wrap .overviewR {
    width: 48%;
    margin: 0;
  }
  .overview > .wrap .overviewR .tel_rsv {
    align-items: stretch;
  }
  .overview > .wrap .overviewR .tel_rsv .tel {
    font-size: 3rem;
  }
  .overview > .wrap .overviewR .tel_rsv .rsv {
    font-size: 2.4rem;
    padding: 1.7rem 0 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin: 4rem 0 0;
  }
  .ymap {
    height: 40rem;
  }
  .gmap {
    height: 40rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
}
#tel_up ul li {
  width: 100%;
  height: 100%;
}
#tel_up ul li .tel {
  border-top: 1px solid #ccc;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  line-height: 2;
  position: relative;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e805";
  background: #A6C2F4;
  width: 4rem;
  height: 4rem;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.5rem;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
  color: transparent;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 6rem;
    height: 6rem;
    font-size: 3rem;
    line-height: 1.8;
  }
  #tel_up #pageup::before {
    width: 5.2rem;
    height: 5.2rem;
    top: 0.3rem;
    left: -0.2rem;
    border-radius: 50%;
    padding: 0;
    font-size: 2.8rem;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: #E8EFFC;
}
.footer .copy {
  display: block;
  color: #fff;
  background: #6495ED;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2rem 0 0;
  }
  .footer .copy {
    margin: 2rem 0 0;
    padding: 3.5rem 1rem;
    font-size: 1.8rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    width: 100rem;
    margin: 2rem auto;
    line-height: 1;
  }
  .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:hover {
    text-decoration: underline;
    color: #6495ED;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav li:nth-child(5)::after {
    content: none;
  }
}
@media screen and (min-width: 48em), print {
  body.index .main .wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
  background: #F1F5FE;
}
.keyvsl .catch_open {
  width: 100%;
  min-height: 20rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  z-index: 1;
}
.keyvsl .catch_open .catch {
  font-family: "游ゴシック体", YuGothic;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin: 8rem auto 0;
  text-shadow: 1px 1px 1px #fff, -1px 1px 12px #fff, 1px -1px 12px #fff, -1px -1px 12px #fff;
  writing-mode: unset;
  height: auto;
  width: auto;
  text-align: center;
}
.keyvsl .catch_open .open {
  position: absolute;
  bottom: 3rem;
  left: 1rem;
  background: #6495ED;
  color: #fff;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  font-size: 1.4rem;
  border: #fff solid 1px;
  box-shadow: 0 0 0 5px #6495ED;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.keyvsl .catch_open .open span {
  display: block;
}
.keyvsl #keyvsl {
  width: 100%;
  height: calc(45vh - 12.6rem);
  min-height: 20rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: calc(45vh - 12.6rem) !important;
  min-height: 23rem;
  width: 100%;
  object-fit: cover;
  animation: imgzoom 2s 1;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: #6495ED;
}

@media screen and (min-width: 48em), print {
  .keyvsl .catch_open {
    width: 1200px;
    height: 75rem;
    top: 0;
    left: 0;
    margin: 0 auto;
  }
  .keyvsl .catch_open .catch {
    margin: 28rem auto 0;
    font-size: 3.8rem;
    letter-spacing: 0.6rem;
    line-height: 2.1;
  }
  .keyvsl .catch_open .open {
    width: 24rem;
    height: 24rem;
    font-size: 3rem;
    box-shadow: 0 0 0 15px #6395eb;
    letter-spacing: 0.2rem;
    bottom: -3rem;
  }
  .keyvsl #keyvsl {
    height: 79rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 75rem !important;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
}
.top_tit02 {
  color: #333;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 2rem;
}
.top_tit02 .en {
  display: block;
  color: #6495ED;
  font-size: 50%;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-top: 0.7rem;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 4.2rem;
    margin: 0 0 3rem;
  }
  .top_tit02 .en {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.info {
  background: #F1F5FD;
  padding: 4rem 0 3rem;
}
.info .wrap .top_tit02 {
  margin-bottom: 1rem;
}
.info .wrap > dl {
  line-height: 1.4;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
.info .wrap > dl > dt {
  margin: 0 0 1rem;
  font-weight: bold;
  color: #3A9BD8;
  cursor: pointer;
  font-size: 110%;
  position: relative;
  padding: 1rem 0 0 2rem;
}
.info .wrap > dl > dt::before {
  font-family: "fontello";
  content: "\e801";
  color: #6495ED;
  font-weight: normal;
  position: absolute;
  top: 1rem;
  left: 0.2rem;
}
.info .wrap > dl > dt.open::before {
  font-family: "fontello";
  content: "\e805";
}
.info .wrap > dl > dt:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.info .wrap > dl > dd {
  margin: 0 0 1.6rem;
  padding: 0 0 0 2rem;
  word-wrap: break-word;
}
.info .wrap > dl > dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.info .wrap > dl > dd a {
  display: inline-block;
  color: #3A9BD8;
  text-decoration: underline;
  position: relative;
  padding-left: 1.5rem;
}
.info .wrap > dl > dd a::before {
  font-family: "fontello";
  content: "\e804";
  position: absolute;
  top: 0.3rem;
  left: 0;
  font-size: 80%;
}
.info .wrap > dl > dd a.mark_none {
  width: 100%;
}
.info .wrap > dl > dd a.mark_none::before {
  content: "";
}
.info .wrap > dl > dd p.info_text {
  width: 100%;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0 10rem;
  }
  .info .wrap {
    margin: 0;
    display: flex;
  }
  .info .wrap .top_tit02 .en {
    text-align: left;
  }
  .info .wrap .top_tit02.recruit_tit02 {
    text-align: left;
  }
  .info .wrap > dl {
    flex: 1;
    margin-left: 6rem;
  }
  .info .wrap > dl > dt {
    font-size: 2rem;
    margin: 0 0 1rem;
    padding-left: 3rem;
    letter-spacing: 0.1rem;
  }
  .info .wrap > dl > dd {
    font-size: 1.8rem;
    margin: 0 0 1.6rem;
    letter-spacing: 0.1rem;
  }
  .info .wrap > dl > dd a:hover {
    opacity: 0.5;
    text-decoration: underline;
  }
  .info .wrap > dl > dd a.mark_none {
    width: 40%;
  }
  .info .wrap > dl > dd a.mark_none::before {
    content: "";
  }
  .info .wrap > dl > dd p.info_text {
    width: 60%;
  }
}
.feature {
  background: #fff;
  overflow: hidden;
}
.feature .wrap {
  padding: 4rem 0 27rem;
  position: relative;
}
.feature .wrap > section {
  position: relative;
  position: relative;
}
.feature .wrap > section.trigger:before {
  animation: bgzoom 2.5s 1;
}
.feature .wrap > section.trigger:after {
  opacity: 0;
}
.feature .wrap > section:before {
  content: "";
  display: block;
  position: absolute;
}
.feature .wrap > section:after {
  content: "";
  display: block;
  position: absolute;
  transition: 2s 0.4s;
  width: 30rem;
  height: 20rem;
  bottom: -23rem;
  left: -1rem;
}
.feature .wrap > section:before {
  width: 30rem;
  height: 20rem;
  bottom: -23rem;
  left: -1rem;
  background: url("../img/index_treatment02.jpg") center center/100% auto no-repeat;
}
.feature .wrap > section:after {
  background: #F9FAFE;
}
.feature .wrap > section .top_tit03 {
  font-size: 1.6rem;
}
.feature .wrap .btn_base {
  text-align: center;
  margin-top: 2rem;
}
.feature .wrap .btn_base .btn {
  padding: 0.5rem 4rem;
}

/*.feature .wrap.trigger:before {
  animation: bgzoom 2.5s 1
}
.feature .wrap.trigger:after {
  opacity: 0
}
.feature .wrap:before {
  content: "";
  display: block;
  position: absolute
}
.feature .wrap:after {
  content: "";
  display: block;
  position: absolute;
  transition: 2s 0.4s
}
.feature .wrap:after {
  width: 15rem;
  height: 10rem;
  top: 0;
  right: -1rem
}
/*.feature .wrap:before {
  background: url("../img/index_treatment01.jpg") center center/100% auto no-repeat
}
.feature .wrap:after {
  background: #F9FAFE
}*/
@media screen and (min-width: 48em), print {
  .feature {
    background: #fff;
    padding: 8rem 0 0;
  }
  .feature .wrap {
    padding: 0 0 26rem;
  }
  .feature .wrap .top_tit02 {
    width: calc(600px - 8.2rem);
    margin: 0 0 5rem auto;
    text-align: left;
  }
  .feature .wrap > section {
    width: calc(600px - 8.2rem);
    margin: 0 0 0 auto;
  }
  .feature .wrap > section:after, .feature .wrap > section:before {
    width: 100rem;
    height: 66rem;
    bottom: auto;
    left: auto;
    top: -14rem;
    right: 60rem;
  }
  .feature .wrap > section .top_tit03 {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .feature .wrap > section p {
    line-height: 1.7;
  }
  .feature .wrap .btn_base {
    text-align: left;
    margin-top: 3rem;
  }
  .feature .wrap .btn_base .btn {
    padding: 1.2rem 10rem;
  }
  /*.feature .wrap:after {
    width: calc(1200px / 2 - 8.2rem);
    height: 34rem;
    top: 0;
    right: 0
  }*/
}
.treat {
  margin-top: 20rem;
  padding: 4rem 0;
  background: #fff;
}
.treat.para01::before {
  display: block;
  content: " ";
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  animation: fadePara 1s ease 0s 1 normal;
  background: url("../img/index_para_img01.jpg") center center/cover no-repeat;
}
.treat .top_tit02 {
  margin: -8rem auto 0;
  padding: 2.5rem 0 1rem;
  background: #fff;
  width: 70%;
}
.treat .subnav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 1rem 0rem;
}
.treat .subnav li {
  opacity: 0;
  width: 48%;
  text-align: center;
  color: #6495ED;
  background: #F9FAFE;
  margin-bottom: 2rem;
  position: relative;
}
.treat .subnav li::before {
  content: " ";
  display: block;
  width: 8.5rem;
  height: 8.5rem;
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  transition: all 1s;
  transform: scale(1);
  background: #fff;
  border-radius: 50%;
}
.treat .subnav li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 3rem 0rem 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.treat .subnav li a::before {
  display: block;
  width: 6rem;
  margin: 0 auto 2rem;
  content: url("../img/icon_.svg");
  position: relative;
  z-index: 2;
}
.treat .subnav li a.polyp::before {
  content: url("../img/icon_polyp.svg");
}
.treat .subnav li a.colorectal_cancer::before {
  content: url("../img/icon_colorectal_cancer.svg");
}
.treat .subnav li a.liver::before {
  content: url("../img/icon_liver.svg");
}
.treat .subnav li a.endoscopy::before {
  content: url("../img/icon_endoscopy.svg");
}
.treat .subnav li a.colonoscopy::before {
  content: url("../img/icon_colonoscopy.svg");
}
.treat .subnav li a.pylori::before {
  content: url("../img/icon_pylori.svg");
}
.treat .subnav li a.gastro::before {
  content: url("../img/icon_gastro.svg");
}
.treat .subnav li a.internal::before {
  content: url("../img/icon_internal.svg");
}
.treat .subnav li a.lifestyle-related::before {
  content: url("../img/icon_lifestyle-related.svg");
}
.treat .subnav li a.checkup::before {
  content: url("../img/icon_checkup.svg");
}
.treat .subnav li a.vaccination::before {
  content: url("../img/icon_vaccination.svg");
}
.treat .subnav li a::after {
  display: block;
  font-family: "fontello";
  content: "\e802";
  color: #6495ED;
  text-align: right;
  margin: 1rem 1.5rem 0 0;
}
.treat .subnav li a span {
  display: none;
}
.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;
}

@media screen and (min-width: 48em), print {
  .treat {
    margin-top: 50rem;
    padding: 5rem 0 10rem;
  }
  .treat .top_tit02 {
    margin: -12rem auto 0;
    padding: 6rem 0 4rem;
    width: 1200px;
  }
  .treat .subnav {
    justify-content: flex-start;
    width: calc(1200px - 100px);
    margin: 1rem auto;
  }
  .treat .subnav li {
    width: 23.5%;
    margin-right: 2%;
    overflow: hidden;
  }
  .treat .subnav li:nth-of-type(4n) {
    margin-right: 0;
  }
  .treat .subnav li::before {
    width: 15rem;
    height: 15rem;
    top: 3rem;
    transition: 0.7s;
  }
  .treat .subnav li::after {
    content: " ";
    display: block;
    width: 15rem;
    height: 15rem;
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s 0.3s;
  }
  .treat .subnav li:hover, .treat .subnav li:focus {
    color: blue;
  }
  .treat .subnav li:hover::before, .treat .subnav li:focus::before {
    background: radial-gradient(#fff 20%, #E7EFFC 70%);
    transform: scale(3.5);
  }
  .treat .subnav li:hover::after, .treat .subnav li:focus::after {
    background: radial-gradient(#fff 20%, #E7EFFC 70%);
    transform: scale(1);
  }
  .treat .subnav li a {
    padding: 3rem 1.5rem 2.5rem;
    font-size: 2.2rem;
    transition: 0.3s;
    color: #9EB3DA;
  }
  .treat .subnav li a::before {
    width: 9rem;
    transition: 0.5s;
    transform: scale(1);
    margin: 3rem auto 4rem;
  }
  .treat .subnav li a::after {
    margin-top: 2rem;
    transition: 0.3s;
    font-size: 1.6rem;
  }
  .treat .subnav li a:hover {
    color: #ffb6c1;
  }
  .treat .subnav li a:hover::before {
    transform: scale(1.1);
  }
  .treat .subnav li a:hover::after {
    color: #ffb6c1;
  }
}
body:not(.index) .main {
  margin: 0 0rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 16rem;
  }
  body:not(.index) .main .wrap {
    width: 110rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin: 0 1rem 4rem;
}
.breadcrumb li:first-child {
  color: #333;
}
.breadcrumb li:first-child a {
  text-decoration: underline;
}
.breadcrumb li:first-child a:hover {
  opacity: 1;
  color: #6495ED;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: ">";
  margin: 0 0.4rem;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.4rem;
    width: 1200px;
    margin: 0 auto 8rem;
  }
  .breadcrumb li:not(:first-child)::after {
    margin: 0 0.8rem;
  }
}
.doctor .dr .dr_flex .dr_img img {
  margin: 0 auto;
  max-width: 60%;
}
.doctor .dr .dr_flex .dr_img .dr_name {
  font-family: "游ゴシック体", YuGothic;
  font-size: 125%;
  text-align: center;
  margin: 0;
}
.doctor .dr .dr_flex .dr_img .dr_name .txt_small {
  margin-right: 0.5rem;
}
.doctor .dr .dr_flex .dr_img .dr_name .md {
  display: block;
  font-size: 78%;
  line-height: 1;
}

.pull_down .switch {
  pointer-events: auto;
  cursor: pointer;
}
.pull_down .switch::before {
  font-family: "fontello";
  content: "\e801";
  padding-right: 0.5rem;
  color: #6495ED;
}
.pull_down .switch.open::before {
  font-family: "fontello";
  content: "\e805";
}
.pull_down .switch:hover {
  color: #6495ED;
}
.pull_down .lst_ol {
  display: none;
}

@media screen and (min-width: 48em), print {
  .doctor .dr .dr_flex {
    display: flex;
  }
  .doctor .dr .dr_flex .dr_img {
    width: 16%;
  }
  .doctor .dr .dr_flex .dr_img img {
    max-width: 100%;
  }
  .doctor .dr .dr_flex .dr_message {
    width: 82%;
    margin: 0 auto;
    line-height: 1.9;
  }
}
.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;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  color: #333;
  background: rgba(100, 149, 237, 0.7);
  color: #fff;
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\e804";
  color: #6495ED;
  font-size: 3rem;
}
.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: "\e803";
}
.gallery .gallery_slider .slick-dots button {
  background: #6495ED;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid #6495ED;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .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;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
  .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 #6495ED;
  }
}
.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%;
  }
}
.visitor .vis_flex .vis_img {
  max-width: 80%;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .visitor .vis_flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
  }
  .visitor .vis_flex .vis_img {
    max-width: 30%;
    margin: 0;
  }
}
.flow dd {
  margin: 0;
  position: relative;
}
.flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
@media screen and (min-width: 48em), print {
  .flow dd:not(:last-child) {
    margin: 0 0 10rem;
  }
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #E8EFFC;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

.access .main .acs_dl dd {
  margin-bottom: 2rem;
}
.access .main .acs_dl dd .tel {
  font-size: 140%;
}
.access .main .parking {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}
.access .main .parking .tit_04 {
  font-size: 1.5rem;
  margin-top: 0;
  color: #40688D;
  border-color: #40688D;
}
.access .main .ymap {
  width: 100%;
  height: 100vw;
  margin: 2rem 0 0;
}
.access .main .gmap {
  height: 100vw;
  margin: 2rem 0 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .acs_dl {
    width: 46%;
  }
  .access .main .acs_dl dd {
    margin-bottom: 4rem;
  }
  .access .main .parking {
    padding: 2rem 2rem 1rem;
    font-size: 1.6rem;
  }
  .access .main .parking .tit_04 {
    font-size: 1.9rem;
    margin-top: 0;
    color: #40688D;
    border-color: #40688D;
  }
  .access .main .ymap {
    width: 50% !important;
    height: 66rem;
  }
  .access .main .gmap {
    width: 50%;
    height: auto;
  }
}

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