@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
  -o-object-fit: contain;
     object-fit: contain;
}

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

:root {
  --clr_rgb_blue01: 5,83,165;
  --clr_rgb_lightblue: 38,188,240;
  --clr_rgb_gray: 174,154,107;
  --white: #fff;
  --clr_txt: #404040;
  --main: #0653A5;
  --navyblue: #003E92;
  --lightblue: #26bcf0;
  --palepurple: #E8F6FF;
  --pink: #EB6CA5;
  --bordergray:#675461;
  --blue01: #0553A5;
  --gray: #E4E4E4;
  --darkgray: #333333;
  --sub01: #EEF3F9;
  --sub02: #2F68A5;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@-webkit-keyframes bgzoom {}
@keyframes bgzoom {}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@-webkit-keyframes airball {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes airball {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.img_c {
  margin: 1rem auto;
}

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

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

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption span {
  color: var(--lightblue);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background-color: var(--blue01);
  color: #fff;
  font-weight: 700;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  color: var(--clr_txt);
  border-bottom: 1px solid var(--blue01);
  border-left: 1px solid var(--blue01);
  background-color: var(--palepurple);
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--blue01);
  background-color: var(--palepurple);
  line-height: 1;
  color: var(--lightblue);
  font-size: 80%;
}
.tbl_time tr td:last-of-type {
  border-right: 1px solid var(--blue01);
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
  }
  .tbl_time caption {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
  .tbl_time tr {
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.6rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1.6rem 0;
    font-size: 100%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--blue01);
}

.tit_02 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  color: var(--blue01);
  text-align: center;
  position: relative;
}
.tit_02 .tit {
  display: inline-block;
  position: relative;
}
.tit_02 .tit:before, .tit_02 .tit:after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.8rem;
  background-image: url("../img/tit02_bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tit_02 .tit:before {
  top: 1.5rem;
  left: -6rem;
}
.tit_02 .tit:after {
  top: 1.5rem;
  right: -6rem;
}
.tit_02 .sub {
  font-family: "Lora", serif;
  font-weight: 700;
  display: block;
  margin: 0.3rem auto 0;
  font-size: 70%;
}

.tit_03 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 2rem;
}

.tit_04 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 2rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    font-size: 4rem;
    padding: 8rem 0;
  }
  .tit_02 {
    font-size: 3.8rem;
    margin: 0 0 7.5rem;
  }
  .tit_02 .tit:before, .tit_02 .tit:after {
    width: 5.3rem;
    height: 1.2rem;
  }
  .tit_02 .tit:before {
    top: 2rem;
    left: -8rem;
  }
  .tit_02 .tit:after {
    top: 2rem;
    right: -8rem;
  }
  .tit_02 .sub {
    font-size: 2.2rem;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--bordergray);
  position: absolute;
  top: 0.4rem;
  left: 0;
  font-size: 0.8rem;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc li {
  list-style: disc;
}
.lst_ul_disc li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc li::marker {
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::marker {
  color: #f00;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_txt);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 {
  border: 0.1rem solid var(--blue01);
  border-right: none;
  border-bottom: none;
}
.lst_dl01 dt {
  font-weight: bold;
  background-color: var(--sub01);
  border-right: 0.1rem solid var(--blue01);
  border-bottom: 0.1rem solid var(--blue01);
  padding: 1rem;
}
.lst_dl01 dd {
  border-right: 0.1rem solid var(--blue01);
  border-bottom: 0.1rem solid var(--blue01);
  padding: 1rem;
}

.tbl_01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-left: 0.1rem solid var(--sub02);
  table-layout: auto;
}
.tbl_01 tr th {
  background-color: var(--blue01);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 0.5rem;
  border-right: 0.1rem solid var(--sub02);
}
.tbl_01 tr td {
  padding: 1rem 0.5rem;
  border-right: 0.1rem solid var(--sub02);
  border-bottom: 0.1rem solid var(--sub02);
}
.tbl_01 tr td:first-child {
  background-color: var(--sub01);
  font-weight: 700;
  width: 30%;
}

@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    top: 0.7rem;
  }
  .lst_ol > li {
    padding: 0 0 0 3.6rem;
  }
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 30%;
  }
  .lst_dl01 dd {
    width: 70%;
  }
  .lst_dl01.row {
    display: block;
  }
  .lst_dl01.row dt {
    width: 100%;
  }
  .lst_dl01.row dd {
    width: 100%;
  }
  .tbl_01 tr th {
    padding: 1rem 2rem;
  }
  .tbl_01 tr td {
    padding: 1rem 2rem;
  }
  .tbl_01 tr td:first-child {
    width: 40%;
  }
}
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.box_01 {
  padding: 1rem;
  background: rgba(var(--clr_rgb_blue01), 0.07);
}
@media screen and (min-width: 48em), print {
  .box_01 {
    padding: 3rem;
  }
}

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

.btn_detail {
  display: inline-block;
  padding: 0.4rem 2rem;
  background: #fff;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
  text-decoration: none !important;
  border-radius: 2rem;
}
.btn_detail::after {
  font-family: "fontello";
  content: "\f006";
  margin-left: 2rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    padding: 0.4rem 4rem;
  }
}

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

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

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--main);
}
.slick-dots li button:hover, .slick-dots li button:focus {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

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

html {
  font-size: 3.125vw;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  position: relative;
}
body::after {
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  background: white;
  position: fixed;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}
body.spnav_modal .overview .wrap .gaiyo {
  display: none;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  background-color: rgba(255, 255, 255, 0.77);
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.header .wrap {
  margin: 1rem;
}
.header .wrap .logo {
  width: calc(100% - 5rem);
  height: 5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
}
.header .wrap .headR ul li .tel {
  display: inline-block;
  font-size: 1.8rem;
}
.header .wrap .headR ul li.tel_txt {
  display: none;
}
.header .wrap .headR ul li.acs {
  color: var(--main);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .header {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .header .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 3.5rem auto;
  }
  .header .wrap .logo {
    width: 41%;
    height: 4.1rem;
  }
  .header .wrap .headR {
    width: 59%;
  }
  .header .wrap .headR ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .wrap .headR ul li.tel_txt {
    display: block;
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, #0553A5), color-stop(90%, #25B5E6));
    background: linear-gradient(to right, #0553A5 10%, #25B5E6 90%);
    border-radius: 2rem;
    color: #fff;
    font-family: "Lora", serif;
    font-weight: 700;
    font-weight: 500;
    font-size: 2rem;
    padding: 0 1rem;
  }
  .header .wrap .headR ul li .tel {
    font-size: 2.2rem;
  }
  .header .wrap .headR ul li.acs {
    font-size: 1.8rem;
    margin-right: 3rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--main);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.8rem;
  margin: -0.6rem 0 -0.2rem;
  color: #fff;
}
#nav #sp_menu::after {
  content: "MENU";
  color: #fff;
}
#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: 80vh;
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid var(--clr_txt);
  border-bottom: 1px solid var(--clr_txt);
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_txt);
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--main);
  font-weight: 700;
}
#nav .gnav_subnav .gnav > li .sub::after {
  content: "▼";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  content: "▲";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  background-color: var(--palepurple);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 1rem;
  color: var(--main);
  font-size: 400;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-child) {
  border-bottom: 0.1rem solid var(--gray);
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 22;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block;
    width: 100%;
    max-height: auto;
    overflow-y: visible;
    padding: 0;
    position: static;
    background: rgba(38, 188, 240, 0.4);
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 2.65rem 1rem;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav li a::after, #nav .gnav_subnav .gnav li .sub::after {
    margin: 0 0 0 1rem;
  }
  #nav .gnav_subnav .gnav li a:hover, #nav .gnav_subnav .gnav li a.current, #nav .gnav_subnav .gnav li .sub:hover, #nav .gnav_subnav .gnav li .sub.current {
    background-color: var(--main);
    color: #fff;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav li .sub::after {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: 37rem;
    background-color: var(--navyblue);
    position: absolute;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li {
    width: 50%;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    display: block;
    padding: 1.6rem 0;
    font-size: 1.6rem;
    color: #fff;
    border-bottom: 0.1rem solid var(--bordergray);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    background-color: #A2E1F7;
    color: var(--main);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav.sticky {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 !important;
    padding: 0 !important;
    z-index: 20;
  }
  #nav.sticky .gnav_subnav .gnav li a, #nav.sticky .gnav_subnav .gnav li .sub {
    font-size: 1.6rem;
    padding: 0.8rem 1rem;
  }
  #nav.sticky .gnav_subnav .gnav li .subbox > .subnav li a {
    font-size: 1.4rem;
  }
}
.overview {
  padding: 2rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url("../img/overview_bg.png") no-repeat left top/cover;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap {
  background-color: var(--white);
  padding: 3rem 1rem 2rem;
  position: relative;
}
.overview > .wrap .gaiyo {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  font-size: 90%;
}
.overview > .wrap .gaiyo dt {
  width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid var(--white);
  z-index: 1;
}
.overview > .wrap .gaiyo dd {
  width: 77%;
  padding: 0.4rem 1rem;
  background-color: var(--palepurple);
}
.overview > .wrap .gaiyo dd .tel {
  font-size: 120%;
}
.overview > .wrap .gaiyo:before {
  content: "";
  display: block;
  width: 23%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.overview > .wrap .overviewL {
  position: relative;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0;
}
.overview > .wrap .overviewL:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/overview_ill03.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1rem;
  right: 0;
}
.overview > .wrap:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/overview_ill01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 2.5rem;
  left: 0.2rem;
}
.overview > .wrap:after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/overview_ill02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
}
.overview .gmap_wrap {
  margin: 2rem auto 0;
}
.overview .gmap_wrap .gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0 10.5rem;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 4rem;
  }
  .overview .clinic_name img {
    max-width: 49rem;
  }
  .overview > .wrap {
    padding: 8rem 5.5rem;
  }
  .overview > .wrap .gaiyo {
    font-size: 100%;
  }
  .overview > .wrap .gaiyo dt {
    padding: 1rem 0;
  }
  .overview > .wrap .gaiyo dd {
    padding: 1rem 2rem;
  }
  .overview > .wrap .overviewL {
    width: 57.1rem;
  }
  .overview > .wrap .overviewL:before {
    width: 7.7rem;
    height: 7.8rem;
    bottom: -5rem;
    right: 0;
  }
  .overview > .wrap .overviewR {
    width: 48.9rem;
    margin: 0;
  }
  .overview > .wrap:before {
    width: 8.2rem;
    height: 8.2rem;
    top: 6rem;
    left: 7rem;
  }
  .overview > .wrap:after {
    width: 11.8rem;
    height: 12rem;
    top: 2rem;
    right: 7rem;
  }
  .overview .gmap_wrap {
    width: 1200px;
    margin: 7.65rem auto 0;
  }
  .overview .gmap_wrap .gmap {
    height: 42rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
#tel_up ul li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-weight: 700;
}
#tel_up ul li .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 1.8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
  border-right: 0.1rem solid var(--white);
}
#tel_up ul li .tel a:before {
  font-family: "fontello";
  content: "\e801";
  margin-right: 0.5rem;
}
#tel_up ul li .btn_rsv {
  background-color: var(--lightblue);
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
  position: relative;
  margin: 1rem 0 0;
  color: #fff;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 7.5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    height: 7.5rem;
    font-size: 3rem;
    border-radius: 50%;
  }
  #tel_up #pageup:before {
    margin: 2.3rem 0 0;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  display: block;
  background: var(--main);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2.5rem 0 0;
  }
  .footer .copy {
    margin: 3rem 0 0;
    padding: 0.8rem 0;
    font-size: 1.6rem;
  }
  .footer ul {
    width: 93rem;
    margin: auto;
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 0 2rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul li a {
    opacity: 1;
    color: var(--blue01);
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav li {
    margin-bottom: 0.5rem;
  }
  .footer ul.subnav li:nth-child(7)::after {
    content: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 26rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl .catch {
  width: 93%;
  position: absolute;
  top: 19rem;
  right: 1rem;
  display: none;
}
.keyvsl .catch .read {
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
.keyvsl .catch .read span {
  color: var(--main);
}
.keyvsl .catch .open {
  position: absolute;
  right: 0;
  top: -9rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  font-size: 1.4rem;
  background-color: var(--pink);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin: 1rem 0 0 auto;
}
.keyvsl .catch .open p {
  padding-top: 1.8rem;
  margin: 0;
}
.keyvsl .catch .open .t1 {
  font-size: 1.5rem;
}
.keyvsl .catch .open .t2 {
  font-size: 2rem;
  line-height: 1;
}
.keyvsl .catch .open .t3 {
  font-size: 1.5rem;
}

#keyvsl {
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

#keyvsl.slick-initialized {
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin: 0;
  }
  .keyvsl #keyvsl {
    height: 90.9rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    width: 100%;
    height: 90.9rem !important;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .catch {
    width: 1200px;
    position: absolute;
    top: auto;
    bottom: 5rem;
    right: 0;
    left: 0;
    margin: auto;
  }
  .keyvsl .catch .read {
    font-size: 4.6rem;
  }
  .keyvsl .catch .open {
    width: 21.6rem;
    height: 21.6rem;
    border-radius: 50%;
    font-size: 2.9rem;
    position: absolute;
    right: 0;
    top: -15rem;
    margin: 0;
  }
  .keyvsl .catch .open p {
    padding-top: 4rem;
  }
  .keyvsl .catch .open .t1 {
    font-size: 3rem;
  }
  .keyvsl .catch .open .t2 {
    font-size: 4.4rem;
  }
  .keyvsl .catch .open .t3 {
    font-size: 3.6rem;
  }
}
.info {
  padding: 4rem 1rem;
  background-color: var(--palepurple);
}
.info .wrap .tit_02 {
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 1rem 0;
}
.info .wrap .tit_02 span {
  font-family: "Lora", serif;
  font-weight: 700;
  display: block;
  margin: 0.8rem 0 0;
  font-size: 80%;
}
.info .wrap dl {
  line-height: 1.4;
  background-color: #fff;
  padding: 1rem;
}
.info .wrap dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0.6rem;
  font-weight: bold;
  color: var(--main);
  cursor: pointer;
}
.info .wrap dl dt::before {
  font-family: "fontello";
  content: "\f005";
  margin-right: 0.6rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0553A5), to(#25B5E6));
  background: linear-gradient(to bottom, #0553A5 0%, #25B5E6 100%);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 60%;
  line-height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.info .wrap dl dt.close::before {
  font-family: "fontello";
  content: "\f004";
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid #908F8F;
}
.info .wrap dl dd {
  margin: 0 0 1.6rem;
  word-wrap: break-word;
  font-size: 90%;
}
.info .wrap dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0;
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .info .wrap .tit_02 {
    width: 25.5rem;
    font-size: 2.2rem;
    padding: 3.4rem 0;
    margin: 0;
  }
  .info .wrap .tit_02 span {
    font-size: 1.8rem;
  }
  .info .wrap dl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 4rem;
  }
  .info .wrap dl dt {
    width: 100%;
    margin: 0 0 1rem;
    font-size: 1.8rem;
  }
  .info .wrap dl dt::before {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 70%;
    line-height: 3rem;
    margin-right: 1rem;
  }
  .info .wrap dl dt:not(:first-of-type) {
    padding: 1.6rem 0 0;
  }
  .info .wrap dl dd {
    font-size: 1.6rem;
    margin: 0 0 3rem 4rem;
  }
}
.feature {
  padding: 4rem 1rem;
  background: url("../img/feature_bg.jpg") no-repeat left top/cover;
}
.feature ul {
  counter-reset: number 0;
}
.feature ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.feature ul li .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
  background-color: var(--gray);
  line-height: 1.2;
  font-weight: 700;
}
.feature ul li .tit:before {
  content: "0" counter(number) "";
  counter-increment: number 1;
  width: 4rem;
  color: #fff;
  line-height: 4rem;
  font-size: 1.5rem;
  background-color: var(--pink);
  display: -ms-grid;
  display: grid;
  place-content: center;
  gap: 1ch;
}
.feature ul li .tit p {
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  gap: 1ch;
  margin: 0;
  color: var(--main);
  font-size: 1.6rem;
  padding: 0.5rem 0;
}
.feature ul li .read {
  display: block;
  margin: 0;
  background-color: #fff;
  padding: 1rem;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 10.8rem 0 12rem;
  }
  .feature ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .feature ul li {
    width: 51.8rem;
  }
  .feature ul li:not(:last-child) {
    margin-bottom: 8rem;
  }
  .feature ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .feature ul li .tit:before {
    width: 8.8rem;
    height: 8.8rem;
    line-height: 8.8rem;
    font-size: 3.6rem;
  }
  .feature ul li .tit p {
    font-size: 2.6rem;
  }
  .feature ul li .read {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
.medical {
  margin: 2rem 1rem;
}
.medical .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.medical .subnav li {
  width: 48%;
  border: 0.2rem solid var(--blue01);
  position: relative;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
}
.medical .subnav li a {
  display: block;
  text-decoration: none;
  color: var(--blue01);
  text-align: center;
  font-weight: 700;
  padding: 0 0 1rem;
}
.medical .subnav li a:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/icon_ortho.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}
.medical .subnav li .rehabilitation:before {
  background-image: url("../img/icon_rehabilitation.svg");
}
.medical .subnav li .hand_surgery:before {
  background-image: url("../img/icon_hand_surgery.svg");
}
.medical .subnav li .spinal_disease:before {
  background-image: url("../img/icon_spinal_disease.svg");
}
.medical .subnav li .osteoporosis:before {
  background-image: url("../img/icon_osteoporosis.svg");
}
.medical .subnav li .sports_ortho:before {
  background-image: url("../img/icon_sports_ortho.svg");
}
.medical .subnav li .pain:before {
  background-image: url("../img/icon_pain.svg");
}
.medical .subnav li .rheumatism:before {
  background-image: url("../img/icon_rheumatism.svg");
}
.medical .subnav li .prp:before {
  background-image: url("../img/icon_prp.svg");
}
.medical .subnav li .industrial_accident:before {
  background-image: url("../img/icon_industrial_accident.svg");
}
.medical .subnav li:after {
  content: "";
  display: block;
  border-top: 20px solid transparent;
  border-right: 20px solid var(--blue01);
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 48em), print {
  .medical {
    margin: 10rem auto 12rem;
  }
  .medical .subnav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
  .medical .subnav li {
    width: 27.5rem;
    margin-bottom: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medical .subnav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    padding: 2rem 1rem;
  }
  .medical .subnav li a:before {
    width: 8rem;
    height: 8rem;
    margin: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .medical .subnav li .industrial_accident:before {
    margin-right: 0.8rem;
  }
  .medical .subnav li:after {
    border-top: 20px solid transparent;
    border-right: 20px solid var(--blue01);
  }
  .medical .subnav li:hover {
    border: 0.2rem solid var(--lightblue);
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .medical .subnav li:hover:after {
    border-top: 20px solid transparent;
    border-right: 20px solid var(--lightblue);
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
body:not(.index) .header {
  position: relative;
}
body:not(.index) .tit_02 .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body:not(.index) .tit_02 .tit:before {
  top: auto;
  left: auto;
  position: relative;
  margin: 0.5rem 1rem 0 0;
}
body:not(.index) .tit_02 .tit:after {
  top: auto;
  right: auto;
  position: relative;
  margin: 0.5rem 0 0 1rem;
}
body:not(.index) .tit_03 {
  background-color: var(--blue01);
  color: var(--white);
  padding: 0.8rem;
}
body:not(.index) .anchor {
  background-color: var(--lightblue);
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  padding: 0.4rem 2rem 0.6rem;
}
body:not(.index) .anchor:after {
  font-family: "fontello";
  content: "\f004";
  margin-left: 2rem;
  font-size: 80%;
}
body:not(.index) .anchor.up:after {
  font-family: "fontello";
  content: "\f005";
  margin-left: 2rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 8rem;
    font-size: 1.8rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40%;
    height: auto;
  }
  body:not(.index) .tit_02 {
    margin: 0 0 5rem;
  }
  body:not(.index) .tit_02 .tit {
    display: inline-block;
    position: relative;
  }
  body:not(.index) .tit_02 .tit:before, body:not(.index) .tit_02 .tit:after {
    width: 5.3rem;
    height: 1.2rem;
    position: absolute;
    margin: 0;
  }
  body:not(.index) .tit_02 .tit:before {
    top: 2rem;
    left: -8rem;
  }
  body:not(.index) .tit_02 .tit:after {
    top: 2rem;
    right: -8rem;
  }
  body:not(.index) .tit_03 {
    font-size: 3rem;
    padding: 1rem;
  }
  body:not(.index) .anchor {
    padding: 0.4rem 4rem 0.8rem;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  margin: 0 1rem 4rem;
  color: var(--darkgray);
}
.breadcrumb li a {
  color: var(--main);
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.4rem;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.6rem;
    margin: 0 0 8rem;
  }
  .breadcrumb li:not(:last-child)::after {
    margin: 0 0.8rem;
  }
}
.gallery {
  width: 85%;
  margin: auto;
}
.gallery .gallery_slider {
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--main);
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--main);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .device li {
    width: 32%;
    margin: 0 0 2rem;
  }
  .device li:not(:nth-child(3n)) {
    margin: 0 2.4rem 2rem 0;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
.flow dt {
  font-size: 110%;
  border-top: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  border-right: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  border-left: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  padding: 2rem 1rem 1rem;
}
.flow dt span {
  display: block;
  color: var(--blue01);
  font-weight: bold;
  border-bottom: 0.1rem solid var(--blue01);
  padding-bottom: 1rem;
}
.flow dd {
  padding: 0 1rem 2rem;
  border-right: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  border-left: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  border-bottom: 0.1rem solid rgb(var(--clr_rgb_gray), 0.1);
  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 var(--blue01);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .flow dt {
    font-size: 2.8rem;
    padding: 2rem 3rem;
  }
  .flow dt span {
    padding-bottom: 1.8rem;
  }
  .flow dd {
    padding: 0 3rem 3rem;
  }
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}