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

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a[href*=dummy],
a[href=""],
.nolink {
  pointer-events: none;
}

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

.txt_small {
  font-size: 70%;
}

.red {
  color: #f00;
}

.blue {
  color: #00f;
}

.uline {
  text-decoration: underline;
}

.highlight {
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #F2DE9D));
  background: linear-gradient(transparent 70%, #F2DE9D 70%);
  display: inline;
}

.width-half {
  width: 50%;
}

.img_c {
  margin: 1rem auto;
}

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

.tate {
  max-width: 60%;
}

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  color: var(--clr_txt);
}
.tbl_time caption {
  font-size: 90%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.6rem;
}
.tbl_time caption span {
  color: var(--clr_sub07);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--clr_sub03);
  color: var(--clr_main);
  font-weight: 700;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col]:last-child {
  border-right: none;
}
.tbl_time tr th[scope=row] {
  font-weight: 700;
  border-bottom: 1px solid var(--clr_sub03);
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0;
  line-height: 1;
  color: var(--clr_main);
  border-bottom: 1px solid var(--clr_sub03);
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
    padding: 0 0 0 2rem;
  }
  .tbl_time tr th[scope=row] {
    padding: 0 0 0 2rem;
  }
  .tbl_time tr td {
    padding: 1.35rem 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  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: 8rem;
  font-weight: 700;
  color: #fff;
  background: url(../img/tit_01.webp) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  padding: 0 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.tit_02 {
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  margin: 0 auto 2rem;
  border-radius: 3rem;
  background: url("../img/base_h2bg.png") repeat;
  padding: 0.4rem 3rem 0.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tit_03 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr_main);
  background: -webkit-gradient(linear, left top, right top, from(#cee1cc), to(#90cc8a));
  background: linear-gradient(to right, #cee1cc 0%, #90cc8a 100%);
  padding: 0.2rem 1.6rem 0.4rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  border-left: 0.2rem var(--clr_sub13) solid;
  border-radius: 3rem;
}

.tit_04 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr_main);
  line-height: 1.4;
  margin: 0 0 2rem;
}
.tit_04::before {
  content: "";
  display: inline-block;
  background: url("../img/icon_h4.svg") no-repeat center center/contain;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  margin: 0 0.6rem 0 0;
}

.tit_05 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr_main);
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0.2rem 0.8rem;
  background: var(--clr_sub08);
}

.tit_06 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr_sub07);
  margin: 0 0 1rem;
  border-bottom: 2px var(--clr_sub07) solid;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    height: 35rem;
    background: url(../img/tit_01.webp) no-repeat center center/auto;
    font-size: 4.2rem;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 0 auto 4rem;
    padding: 1.2rem 5.6rem 1.6rem;
  }
  .tit_03 {
    font-size: 3.6rem;
    padding: 0 3rem;
    margin: 0 0 2rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
  .tit_04::before {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 1rem 0 0;
  }
  .tit_05 {
    font-size: 2rem;
    padding: 0.3rem 1.5rem;
  }
  .tit_06 {
    font-size: 1.8rem;
  }
}
.lst_ul {
  line-height: 1;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 2rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_sub07);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    font-size: 1.6rem;
  }
}

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

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

.lst_dl01 dt {
  color: var(--clr_main);
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_ol > li {
    padding: 0 0 0 3.6rem;
  }
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 10%;
  }
  .lst_dl01 dd {
    width: 90%;
    padding: 0 0 0 1rem;
  }
}
.lst_dl02 {
  margin-top: 2rem;
}
.lst_dl02 dt {
  background: var(--clr_main);
  padding: 0.4rem 1rem;
  border-top: 1px solid var(--clr_sub09);
  border-right: 1px solid var(--clr_sub09);
  border-left: 1px solid var(--clr_sub09);
  color: #fff;
}
.lst_dl02 dd {
  margin: 0 0 1.5rem;
  padding: 0.6rem 1rem 1rem 1rem;
  border-right: 1px solid var(--clr_sub09);
  border-left: 1px solid var(--clr_sub09);
  border-bottom: 1px solid var(--clr_sub09);
}

@media screen and (min-width: 48em), print {
  .lst_dl02 {
    border-bottom: 1px solid var(--clr_sub09);
    margin-top: 3rem;
  }
  .lst_dl02 dt {
    width: 100%;
    padding: 1rem 2.5rem;
  }
  .lst_dl02 dd {
    width: 100%;
    margin: 0;
    padding: 1rem 2.5rem 2.5rem 2.5rem;
    border-bottom: none;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 3rem;
}
.flex > li {
  margin: 0 !important;
}
.flex.center > li {
  margin: 0 0 1rem !important;
}

.flex2 > li:not(:last-child) {
  margin: 0 0 2rem;
}

.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 {
  .flex {
    gap: 0rem 5rem;
  }
  .flex.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .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;
  }
}
.tel {
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  gap: 0 0.4rem;
  color: var(--clr_main);
  font-weight: 700;
  font-size: 2rem;
}
.tel::before {
  content: "TEL:";
  font-size: 1.4rem;
}
.tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 48em), print {
  .tel {
    font-size: 3rem;
  }
  .tel::before {
    font-size: 2rem;
  }
}

.box_green {
  padding: 1rem;
  background: var(--clr_sub05);
  border-radius: 2rem;
}
@media screen and (min-width: 48em), print {
  .box_green {
    padding: 3rem;
    border-radius: 3rem;
  }
}

.box_orange {
  padding: 1rem;
  background: #FFFAE8;
  border-radius: 2rem;
}
@media screen and (min-width: 48em), print {
  .box_orange {
    padding: 3rem;
    border-radius: 3rem;
  }
}

.btn_detail, .btn_detail02, .btn_rsv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 4rem 0.4rem 2rem;
  border-radius: clamp(2rem, 2vw, 3rem);
  text-decoration: none !important;
  position: relative;
  border: 2px #fff solid;
  background: var(--clr_sub03);
  color: #fff;
  font-weight: 700;
  gap: 0 1rem;
  -webkit-box-shadow: 2px 2px 5px #ccc;
          box-shadow: 2px 2px 5px #ccc;
}
.btn_detail::after, .btn_detail02::after, .btn_rsv::after {
  font-family: "fontello";
  content: "\e80a";
  display: block;
  position: absolute;
  right: 1rem;
  width: 2rem;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .btn_detail, .btn_detail02, .btn_rsv {
    padding: 1rem 6rem 1rem 4rem;
    border: 3px #fff solid;
  }
  .btn_detail::after, .btn_detail02::after, .btn_rsv::after {
    width: 3rem;
  }
  .btn_detail:is(:hover, :focus-visible), .btn_detail02:is(:hover, :focus-visible), .btn_rsv:is(:hover, :focus-visible) {
    border: 3px var(--clr_main) solid;
    background: #fff;
    color: var(--clr_main);
  }
}

.btn_rsv::after {
  display: none;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e80c";
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    padding: 1.2rem 3.6rem;
  }
}

.btn_detail02 {
  text-align: center;
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .btn_detail02 {
    padding: 1.2rem 3.6rem;
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_main);
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 1rem;
  }
  .linkout:hover {
    color: #12BAD4;
  }
}

.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(--clr_main);
  z-index: 1;
}
.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(--clr_main);
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.slide-bottom {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 2s 0s ease-out;
  transition: all 2s 0s ease-out;
}

.slide-left {
  opacity: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  -webkit-transition: all 2s 0s ease-out;
  transition: all 2s 0s ease-out;
}

.slide-right {
  opacity: 0;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
  -webkit-transition: all 2s 0s ease-out;
  transition: all 2s 0s ease-out;
}

html {
  font-size: 3.125vw;
  -webkit-text-size-adjust: 100%;
}

:root {
  --clr_txt: #383838;
  --clr_main: #5A8556;
  --clr_sub01: #A8DBA3;
  --clr_sub03: #90CC8A;
  --clr_sub04: #CEE1CC;
  --clr_sub05: #E9F1E8;
  --clr_sub06: #F2DE9D;
  --clr_sub07: #E1AF0D;
  --clr_sub08: #E1F2DF;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Zen Maru Gothic", serif;
  word-wrap: break-word;
  /*
   &::after { // SPハンバーガー　モーダル
     visibility: hidden;
     width: 100vw;
     height: 100vh;
     content: "";
     background: rgba(var(--clr_sub01), .8);
     position: fixed;
     top: 0;
     z-index: 90;
     opacity: 0;
     transition: all .4s ease-in-out 0s;
     @include SetPrefix(backdrop-filter, blur(.6rem));
   }
   &.spnav_modal { // SPハンバーガー　モーダル
     height: 100%;
     overflow: hidden;
     &::after {
       visibility: visible;
       opacity: 1;
     }
   }
  */
}
body.spnav_modal {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.main {
  margin: 0;
  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.8rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 4rem;
  }
}

header {
  position: relative;
  z-index: 10;
}
header .wrap {
  padding: 0;
}
header .wrap .headL .logo {
  width: 100%;
  height: 7rem;
  padding: 0.6rem 0;
  /*
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
  */
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .wrap .headL .logo.hide {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
header .wrap .headL .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.jpg) no-repeat center center/contain;
  margin: 0 auto;
}
header .wrap .headL .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
header .wrap .headR {
  margin: 6.5rem 0 0;
  display: none;
}
header .wrap .headR .tel_add {
  display: none;
}
header .wrap .headR .tel_add li.add {
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
header .wrap .headR .tel_add li.telno {
  line-height: 1.3;
  color: var(--clr_main);
  font-weight: 700;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
header .wrap .headR .tel_add li.telno::before {
  display: inline-block;
  content: "TEL:";
}
header .wrap .headR .btn_rsv {
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  header .wrap {
    padding: 3rem 0 2.7rem;
    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;
  }
  header .wrap .headL {
    width: 49rem;
  }
  header .wrap .headL .logo {
    height: 12rem;
    padding: 0;
    position: static;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .wrap .headL .logo a {
    width: 100%;
  }
  header .wrap .headR {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .wrap .headR .tel_add {
    display: block;
  }
  header .wrap .headR .tel_add li.add {
    font-size: 1.6rem;
  }
  header .wrap .headR .tel_add li.telno {
    font-size: 3rem;
  }
  header .wrap .headR .tel_add li.telno::before {
    font-size: 2rem;
  }
  header .wrap .headR .btn_rsv {
    font-size: 2rem;
    margin: 0 0 0 2rem;
  }
}
.js-menu_box {
  display: none;
}

@media screen and (max-width: 47.99em) {
  .js-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(238, 243, 238, 0.8)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(238, 243, 238, 0.8));
    backdrop-filter: blur(0.6rem);
    z-index: 9;
  }
  .js-sp_sticky {
    z-index: 2;
    color: #fff;
    background: #fff;
  }
  body.spnav_modal .js-sp_sticky {
    z-index: 1;
  }
  .js-sp_sticky.is_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
  }
  .js-sp_box {
    display: none;
    position: absolute;
    top: 5.4rem;
    left: 4vw;
    z-index: 9999;
    width: 92vw;
    max-height: 70dvh;
    overflow-y: auto;
  }
}
@media screen and (min-width: 48em), print {
  .js-pc_sticky {
    position: relative;
    z-index: 5;
  }
  .js-pc_sticky.is_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
#sp_nav a,
#global_nav a {
  display: block;
}
#sp_nav button,
#global_nav button {
  display: block;
  width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  position: relative;
}
#sp_nav button.sub_btn::after,
#global_nav button.sub_btn::after {
  font-family: "fontello";
  content: "\e809";
  color: var(--clr_sub07);
  position: absolute;
  top: 0.6rem;
  right: 1.8rem;
  font-weight: normal;
}
#sp_nav button.sub_btn.is_open::after,
#global_nav button.sub_btn.is_open::after {
  content: "\e80b";
}
#sp_nav .sub,
#global_nav .sub {
  position: relative;
}
#sp_nav .btn_rsv,
#global_nav .btn_rsv {
  display: none;
}

@media screen and (max-width: 47.99em) {
  #sp_nav {
    width: 100%;
    line-height: 1;
    z-index: 999;
    position: sticky;
    top: 0;
  }
  #sp_nav .lnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 1rem 0;
  }
  #sp_nav .lnav > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #sp_nav .lnav > li ~ li {
    border-left: 0.1rem solid #AFAFAF;
  }
  #sp_nav .lnav > li > a, #sp_nav .lnav > li button {
    padding: 0 0.1rem;
    font-size: 1.1rem;
    text-align: center;
    color: #5E7888;
  }
  #sp_nav .lnav > li > a::before, #sp_nav .lnav > li button::before {
    display: block;
    margin-bottom: 0.2rem;
    font-family: "fontello";
    font-size: 2.3rem;
    color: var(--clr_main);
  }
  #sp_nav .lnav > li > a.a_home::before, #sp_nav .lnav > li button.a_home::before {
    content: "\e80d";
  }
  #sp_nav .lnav > li > a.a_call::before, #sp_nav .lnav > li button.a_call::before {
    content: "\e801";
  }
  #sp_nav .lnav > li > a.a_rsv::before, #sp_nav .lnav > li button.a_rsv::before {
    content: "\e80c";
  }
  #sp_nav .lnav > li > a.a_access::before, #sp_nav .lnav > li button.a_access::before {
    content: "\e805";
  }
  #sp_nav .lnav > li > a#sp_btn::before, #sp_nav .lnav > li button#sp_btn::before {
    content: "\e802";
  }
  #sp_nav .lnav > li > a#sp_btn.is_open::before, #sp_nav .lnav > li button#sp_btn.is_open::before {
    content: "\e806";
  }
  #global_nav .gnav {
    font-size: 1.4rem;
    background: #fff;
    border-radius: 0 0 1rem 1rem;
  }
  #global_nav .gnav li ~ li {
    border-top: 1px solid #dde4ea;
  }
  #global_nav .gnav li a, #global_nav .gnav li button {
    padding: 1rem 2rem;
    color: var(--clr_txt);
  }
  #global_nav .gnav li .a_home::before {
    margin-right: 0.4rem;
    font-size: 107%;
    color: var(--clr_main);
  }
  #global_nav .gnav li .sub_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #global_nav .gnav li .sub_btn::after {
    font-size: 107%;
    color: var(--clr_txt);
  }
  #global_nav .gnav li .sub_btn.is_open {
    color: #fff;
    background: var(--clr_sub01);
  }
  #global_nav .gnav li .subnav {
    font-size: 1.3rem;
    border-bottom: 1.2rem solid var(--clr_sub05);
  }
  #global_nav .gnav li .subnav li ~ li {
    border-top: 1px dotted #bbcbe1;
  }
  #global_nav .gnav li .subnav li a {
    padding: 1rem;
    background: #f4f7fc;
    border-left: 1rem solid var(--clr_sub05);
    border-right: 1rem solid var(--clr_sub05);
  }
  #global_nav .gnav li .subnav li a br {
    display: none;
  }
}
@media screen and (min-width: 48em), print {
  #sp_nav {
    display: none;
  }
  #global_nav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0 0 1rem;
    position: static;
    background: #fff;
  }
  #global_nav.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999999;
    margin: 0 !important;
    background: #fff;
    padding: 0 0 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #global_nav.fixed.js-pc_sticky {
    width: 100%;
    margin: 0;
    padding: 1rem 2rem;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  #global_nav.fixed.js-pc_sticky .gnav {
    width: auto;
    margin: 0 3rem 0 0;
  }
  #global_nav.fixed.js-pc_sticky .gnav > li:first-child a {
    padding: 0 3rem 0 0;
  }
  #global_nav.fixed.js-pc_sticky .gnav > li:last-child a {
    padding: 0 0 0 3rem;
  }
  #global_nav.fixed.js-pc_sticky .gnav > li a, #global_nav.fixed.js-pc_sticky .gnav > li button {
    padding: 0 3rem;
  }
  #global_nav.fixed.js-pc_sticky .gnav > li button::after {
    right: 1.1rem;
    top: 0.2rem;
  }
  #global_nav.fixed.js-pc_sticky .btn_rsv {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    white-space: nowrap;
  }
  #global_nav .gnav {
    width: 1200px;
    margin: auto;
    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: none;
  }
  #global_nav .gnav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    position: relative;
  }
  #global_nav .gnav > li:not(:last-child) {
    border-right: 1px dotted var(--clr_main);
    border-bottom: none;
  }
  #global_nav .gnav > li:first-child a {
    padding: 0.4rem 4.4rem 0.4rem 0;
  }
  #global_nav .gnav > li:last-child a {
    padding: 0.4rem 0 0.4rem 4.4rem;
  }
  #global_nav .gnav > li a, #global_nav .gnav > li button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    padding: 0.4rem 4.4rem;
    margin: 0;
    cursor: pointer;
  }
  #global_nav .gnav > li a:is(:hover, :focus-visible, .current), #global_nav .gnav > li button:is(:hover, :focus-visible, .current) {
    opacity: 1;
  }
  #global_nav .gnav > li a:is(:hover, :focus-visible, .current) span, #global_nav .gnav > li button:is(:hover, :focus-visible, .current) span {
    color: var(--clr_main);
  }
  #global_nav .gnav > li .js-menu_box {
    display: none;
    width: 30.2rem;
    position: absolute;
    top: 4.4rem;
    left: -4rem;
    z-index: 100;
  }
  #global_nav .gnav > li .js-menu_box > .subnav {
    width: 100%;
    padding: 2rem;
    background: var(--clr_sub05);
    overflow: hidden;
  }
  #global_nav .gnav > li .js-menu_box > .subnav li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #global_nav .gnav > li .js-menu_box > .subnav li a {
    display: block;
    color: var(--clr_txt);
    font-size: 1.6rem;
    padding: 1rem 0;
    height: 100%;
    text-align: center;
    width: 100%;
  }
  #global_nav .gnav > li .js-menu_box > .subnav li a br {
    display: none;
  }
  #global_nav .gnav > li .js-menu_box > .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_sub01);
    border-radius: 1rem;
  }
}
.overview {
  padding: 3rem 1rem 4rem;
  background: var(--clr_sub05);
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview > .wrap {
  margin: 0;
}
.overview > .wrap .overviewL .whitewrap {
  background: #fff;
  border-radius: 1rem;
  margin: 0 0 2rem;
  padding: 2rem 1rem;
}
.overview > .wrap .overviewL .clinic_name {
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 90%;
  margin: 0 auto;
}
.overview > .wrap .overviewL p {
  text-align: center;
  margin: 0;
}
.overview > .wrap .overviewL p.dept {
  background: var(--clr_sub03);
  border-radius: 1rem;
  color: #fff;
  line-height: 2.13;
  font-size: 1.1rem;
}
.overview > .wrap .overviewL p .tel {
  line-height: 1;
}
.overview > .wrap .overviewR .whitewrap {
  background: #fff;
  border-radius: 1rem;
  margin: 0 0 2rem;
  padding: 2rem 1rem;
}
.overview > .wrap .overviewR .maplink {
  text-align: right;
  display: block;
  color: var(--clr_main);
}
.overview > .wrap .overviewL .gaiyo, .overview > .wrap .overviewR .gaiyo {
  width: 100%;
  margin: 2rem 0 0;
  padding: 2rem 0 0 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;
  gap: 1rem 0;
  border-top: 1px var(--clr_sub03) solid;
}
.overview > .wrap .overviewL .gaiyo dt, .overview > .wrap .overviewR .gaiyo dt {
  color: var(--clr_main);
  font-weight: 700;
}
.overview > .wrap .overviewL .gaiyo dd, .overview > .wrap .overviewR .gaiyo dd {
  width: 76%;
}
.overview > .wrap .overviewL .gaiyo dd span, .overview > .wrap .overviewR .gaiyo dd span {
  font-weight: 700;
}
.overview > .wrap .overviewL .tbl_wrapper, .overview > .wrap .overviewR .tbl_wrapper {
  margin: 0;
  padding: 0;
}
.overview > .wrap .overviewL .tbl_wrapper .tbl_time, .overview > .wrap .overviewR .tbl_wrapper .tbl_time {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0;
    padding: 5rem 0;
    font-size: 1.6rem;
  }
  .overview > .wrap {
    margin: 0 auto;
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .overview > .wrap .overviewL {
    width: 50.4rem;
  }
  .overview > .wrap .overviewL .whitewrap {
    width: 100%;
    padding: 3.5rem 3.5rem 3rem;
    margin: 0 0 3rem;
    border-radius: 3rem;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 3rem;
    width: 100%;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 100%;
    height: auto;
  }
  .overview > .wrap .overviewL p.dept {
    margin: 0 0 1rem;
    border-radius: 2rem;
    font-size: 1.6rem;
  }
  .overview > .wrap .overviewL p .tel {
    margin: 0 0 5rem;
  }
  .overview > .wrap .overviewR {
    width: 64.6rem;
  }
  .overview > .wrap .overviewR .whitewrap {
    width: 100%;
    padding: 3rem;
    border-radius: 3rem;
  }
  .overview > .wrap .overviewL .gaiyo, .overview > .wrap .overviewR .gaiyo {
    margin: 0;
    gap: 2.9rem 3rem;
    padding: 5rem 0 0 0;
  }
  .overview > .wrap .overviewL .gaiyo dt, .overview > .wrap .overviewR .gaiyo dt {
    padding: 0;
  }
  .overview > .wrap .overviewL .gaiyo dd ul, .overview > .wrap .overviewR .gaiyo dd ul {
    font-size: 1.4rem;
  }
  .overview > .wrap .overviewL .img, .overview > .wrap .overviewR .img {
    margin: 3rem 0 0 0;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: -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: 100%;
  height: 100%;
  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;
  line-height: 1;
}
#tel_up ul li {
  height: 100%;
  width: 100%;
  text-align: center;
}
#tel_up ul li .tel {
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  background: var(--clr_main);
  color: #fff;
  padding: 0 1rem;
  white-space: nowrap;
}
#tel_up ul li .tel::before {
  font-size: 1.1rem;
}
#tel_up ul li .btn_rsv {
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 3rem;
  text-align: center;
  padding: 0;
  line-height: 1;
  background: transparent;
  position: relative;
}
#tel_up #pageup::before {
  color: var(--clr_main);
  display: block;
  font-family: "fontello";
  content: "\e80b";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}

@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: 100%;
    height: 6rem;
    font-size: 6rem;
    bottom: 0;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    opacity: 1;
  }
  #tel_up #pageup:is(:hover, :focus-visible)::before {
    color: var(--clr_sub07);
  }
}
.mailto {
  background: var(--clr_sub05);
  text-align: center;
  padding: 0 0 3rem;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
.mailto a {
  background: var(--clr_main);
  border-radius: 1.4rem;
  border: 0.2rem #fff solid;
  padding: 1rem 2rem;
  color: #fff;
  -webkit-box-shadow: 2px 2px 5px #ccc;
          box-shadow: 2px 2px 5px #ccc;
}

@media screen and (min-width: 48em), print {
  .mailto {
    font-size: 2rem;
  }
  .mailto a {
    border-radius: 2rem;
    padding: 1.2rem 4rem;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: var(--clr_sub01);
}
.footer .copy {
  display: block;
  background: var(--clr_sub01);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .copy {
    margin: 0;
    padding: 3rem 0;
    font-size: 1.4rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    width: 1200px;
    margin: 0 auto;
  }
  .footer ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    margin: 0;
    -webkit-text-size-adjust: none;
  }
  .footer ul li::before {
    content: "|";
    font-size: 150%;
    margin: 0 0.7rem;
  }
  .footer ul li:first-child::before {
    display: none;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a br {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.sub {
    display: none;
  }
  .footer ul.subnav {
    margin: 0 auto;
  }
}
.img-scroll {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap; /* ← これが重要 */
}

.img-scroll img {
  display: inline-block; /* ← blockではなく inline-block に */
  width: 800px; /* 大きめの幅 */
  height: auto;
  max-width: 800px !important;
}

/* PCでは通常表示（スクロール無効）にしたい場合 */
@media screen and (min-width: 768px) {
  .img-scroll {
    overflow-x: visible;
  }
  .img-scroll img {
    width: 1024px;
    height: auto;
    max-width: 1024px !important;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 24rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 24rem !important;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.4rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 1rem;
}
.keyvsl > .wrap img {
  margin: 0 auto 1rem;
  width: 35%;
}
.keyvsl > .wrap .catch {
  text-align: center;
  font-weight: 500;
  color: var(--clr_main);
  margin: 0;
  background: #fff;
  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;
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}
.keyvsl > .wrap .circle {
  background: var(--clr_sub03);
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 9rem;
  height: 9rem;
  margin: 13rem 0 0 auto;
  padding: 0 0 0 1.4rem;
}
.keyvsl > .wrap .circle span {
  line-height: 1;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
}
.keyvsl > .wrap .circle span.year {
  font-size: 1.4rem;
  width: 100%;
}
.keyvsl > .wrap .circle span.lg {
  font-size: 2rem;
  line-height: 0.8;
}
.keyvsl > .wrap .circle span.sm {
  font-size: 1.2rem;
}
.keyvsl > .wrap .circle span.week {
  background: #fff;
  color: var(--clr_sub03);
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 1.1rem;
  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;
}
.keyvsl > .wrap .circle span.open {
  font-size: 1.5rem;
  line-height: 1.2;
  width: 100%;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    width: 100%;
    margin: auto;
    position: relative;
  }
  .keyvsl #keyvsl {
    height: 60rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    width: 200rem;
    height: 60rem !important;
    -o-object-fit: none;
       object-fit: none;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: -8.4rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl #keyvsl .slick-dots li button {
    background: #fff;
  }
  .keyvsl > .wrap {
    top: 10rem;
    padding: 0;
  }
  .keyvsl > .wrap img {
    margin: 0 auto 1rem;
    width: auto;
  }
  .keyvsl > .wrap .catch {
    font-size: 2.4rem;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin: 0 auto 0 0;
    width: 48.8rem;
    height: 5.5rem;
  }
  .keyvsl > .wrap .circle {
    width: 20rem;
    height: 20rem;
    margin: 20.5rem 0 0 auto;
    padding: 0 0 0 2.48rem;
  }
  .keyvsl > .wrap .circle span {
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .keyvsl > .wrap .circle span.year {
    font-size: 2.4rem;
  }
  .keyvsl > .wrap .circle span.lg {
    font-size: 6rem;
  }
  .keyvsl > .wrap .circle span.sm {
    font-size: 2.4rem;
  }
  .keyvsl > .wrap .circle span.week {
    font-size: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .keyvsl > .wrap .circle span.open {
    font-size: 3.4rem;
  }
}
.info {
  margin: 0;
  padding: 4rem 1rem;
  background: url("../img/index_bg_news.webp") no-repeat center top/contain;
}
.info .wrap .inner_info .info_wrapper {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 2rem;
  padding: 2rem 1rem;
}
.info .wrap .inner_info .info_wrapper dl {
  max-height: 24rem;
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding: 0 1rem 0 0;
  line-height: 1.5;
}
.info .wrap .inner_info .info_wrapper dl dt {
  margin: 0 0 0.6rem;
  color: var(--clr_main);
  font-weight: 700;
  cursor: pointer;
  /*
        &::before {
          @include fontello("f005");
          font-weight: normal;
        }
        &.close::before {
          @include fontello("f004");
        }
  */
}
.info .wrap .inner_info .info_wrapper dl dt span {
  display: block;
  color: var(--clr_txt);
}
.info .wrap .inner_info .info_wrapper dl dd {
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  border-bottom: 1px dashed var(--clr_txt);
}
.info .wrap .inner_info .info_wrapper dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.info .wrap .inner_tbl_time {
  margin: 3rem 0 0 0;
}
.info .wrap .inner_tbl_time .tbl_wrapper {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 2rem;
  padding: 2rem 1rem;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 0;
    padding: 12rem 0 13.2rem;
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 5rem;
    padding: 0;
  }
  .info .wrap .inner_info {
    width: 65rem;
  }
  .info .wrap .inner_info .info_wrapper {
    padding: 3rem;
    margin: 5rem 0 0 0;
    border-radius: 3rem;
  }
  .info .wrap .inner_info .info_wrapper dl {
    width: 100%;
    max-height: 33.4rem;
    line-height: 1.8;
  }
  .info .wrap .inner_info .info_wrapper dl dt, .info .wrap .inner_info .info_wrapper dl dd {
    width: 54.5rem;
  }
  .info .wrap .inner_info .info_wrapper dl dt {
    margin: 0 0 1rem;
    font-size: 2rem;
    /*
           &::before {
             margin-right: 1.0rem;
           }
    */
  }
  .info .wrap .inner_info .info_wrapper dl dt span {
    font-size: 1.4rem;
  }
  .info .wrap .inner_info .info_wrapper dl dt:hover {
    color: var(--clr_sub07);
  }
  .info .wrap .inner_info .info_wrapper dl dd {
    margin: 0 0 1.6rem;
    font-size: 1.6rem;
  }
  .info .wrap .inner_tbl_time {
    width: 50rem;
    margin: 0;
  }
  .info .wrap .inner_tbl_time .tbl_wrapper {
    margin: 5rem 0 0 0;
    padding: 5rem 2.3rem;
    border-radius: 3rem;
  }
}
.features {
  margin-top: 0 !important;
  padding: 3rem 1rem;
  background: url("../img/base_bg_feature.png") repeat;
}
.features .wrap {
  margin: 0 auto;
}
.features .wrap .inner {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 1.4rem;
  margin: 0 0 2rem;
}
.features .wrap .inner img {
  width: 100%;
}
.features .wrap .inner .txt_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1rem;
  gap: 0 1rem;
}
.features .wrap .inner .txt_box img {
  width: auto;
}
.features .wrap .inner .txt_box .txt p {
  margin: 0;
  line-height: 1.335;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: 1.4rem;
}
.features .wrap .inner .txt_box .txt p.tit {
  color: var(--clr_sub07);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .features {
    padding: 12rem 0;
  }
  .features .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5rem 10rem;
    margin: 5rem auto 0;
  }
  .features .wrap .inner {
    width: 55rem;
    height: 43.7rem;
    margin: 0;
    border-radius: 3rem;
  }
  .features .wrap .inner .txt_box {
    padding: 2rem 2rem 0 2rem;
    gap: 0 2rem;
  }
  .features .wrap .inner .txt_box .txt p {
    font-size: 1.6rem;
  }
  .features .wrap .inner .txt_box .txt p.tit {
    font-size: 2.4rem;
    margin: 0 0 0.8rem;
  }
}
.tre {
  background: url("../img/bg_tre01.png") no-repeat left bottom/70%, url("../img/bg_tre02.png") no-repeat right top/70%;
  padding: 3rem 1rem;
}
.tre .wrap h2 {
  color: var(--clr_main);
  border-bottom: 2px var(--clr_main) dashed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tre .wrap .subnav {
  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;
  position: relative;
  z-index: 3;
  gap: 3rem 1rem;
  margin: 2rem auto 0;
}
.tre .wrap .subnav li {
  width: 48%;
  height: auto;
  text-align: center;
}
.tre .wrap .subnav li a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  color: var(--clr_main);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
}
.tre .wrap .subnav li a::before {
  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;
  content: "";
  background: url("../img/bg_tre_circle.svg") no-repeat center center/contain;
  margin: 0 auto 1rem;
  width: 12rem;
  height: 12rem;
}
.tre .wrap .subnav li a.sb01::before {
  content: url("../img/icon_tre01.svg");
}
.tre .wrap .subnav li a.sb02::before {
  content: url("../img/icon_tre02.svg");
}
.tre .wrap .subnav li a.sb03::before {
  content: url("../img/icon_tre03.svg");
}
.tre .wrap .subnav li a.sb04::before {
  content: url("../img/icon_tre04.svg");
}
.tre .wrap .subnav li a.sb05::before {
  content: url("../img/icon_tre05.svg");
}
.tre .wrap .subnav li a.sb06::before {
  content: url("../img/icon_tre06.svg");
}
.tre .wrap .subnav li a.sb07::before {
  content: url("../img/icon_tre07.svg");
}
.tre .wrap .subnav li a.sb08::before {
  content: url("../img/icon_tre08.svg");
}
.tre .wrap .subnav li a.sb10::before {
  content: url("../img/icon_tre10.svg");
}
.tre .wrap .subnav li.li_sb09 {
  display: none;
}

@media screen and (min-width: 48em), print {
  .tre {
    margin-top: 7rem !important;
    padding: 6rem 0 12rem;
    background: url("../img/bg_tre01.png") no-repeat calc(50% - 45rem) 58%, url("../img/bg_tre02.png") no-repeat calc(50% + 60rem) top;
  }
  .tre .wrap {
    margin: 0 auto;
  }
  .tre .wrap .subnav {
    gap: 3.2rem 7.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 5rem auto 0;
  }
  .tre .wrap .subnav li {
    width: 18.9rem;
    height: 24.5rem;
  }
  .tre .wrap .subnav li:hover {
    -webkit-transition: -webkit-transform 1.5s;
    transition: -webkit-transform 1.5s;
    transition: transform 1.5s;
    transition: transform 1.5s, -webkit-transform 1.5s;
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  .tre .wrap .subnav li a {
    font-size: 2rem;
  }
  .tre .wrap .subnav li a::before {
    width: 18.9rem;
    height: 18.9rem;
    margin: 0 auto 0.5rem;
  }
}
.aisatsu {
  margin-top: 0 !important;
  width: 100%;
  padding: 5rem 1rem 3rem;
}
.aisatsu .wrap .inner .txt {
  margin: 2rem 0 0 0;
}
.aisatsu .wrap .inner .txt p {
  margin: 0;
  line-height: 2.33;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.aisatsu .wrap .inner .txt .prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.aisatsu .wrap .inner .txt .prof p {
  margin: 0;
}
.aisatsu .wrap .inner .txt .prof p span {
  line-height: 1;
  display: block;
}
.aisatsu .wrap .inner .txt .prof .btn_detail {
  margin: 1rem 0 0 0;
}

@media screen and (min-width: 48em), print {
  .aisatsu {
    padding: 0 0 12rem;
  }
  .aisatsu .wrap {
    margin: 0 auto;
  }
  .aisatsu .wrap .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 5rem;
    margin: 5rem auto 0;
  }
  .aisatsu .wrap .inner .txt {
    margin: 5.8rem 0 0 0;
  }
  .aisatsu .wrap .inner .txt p {
    font-size: 1.6rem;
  }
  .aisatsu .wrap .inner .txt .prof {
    margin: 5rem 0 0 auto;
    gap: 0 3rem;
    height: 6rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .aisatsu .wrap .inner .txt .prof p {
    font-size: 1.6rem;
  }
  .aisatsu .wrap .inner .txt .prof p span {
    font-size: 2.4rem;
  }
  .aisatsu .wrap .inner .txt .prof .btn_detail {
    margin: 0;
    font-size: 1.6rem;
    padding: 0 6rem 0 3.1rem;
  }
}
.tube {
  margin-top: 0 !important;
  background: url("../img/bg_fertility.jpg") no-repeat center bottom/cover;
  width: 100%;
  padding: 5rem 1rem;
}
.tube .wrap iframe {
  display: block;
  border-radius: 1rem;
  margin: 2rem auto 0;
  width: 100%;
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .tube {
    padding: 12rem 0;
    height: 76.2rem;
  }
  .tube .wrap iframe {
    margin: 5rem auto 0;
    width: 56rem;
    height: 42rem;
    border-radius: 3rem;
  }
}
.insta {
  margin-top: 0 !important;
  width: 100%;
}
.insta .wrap {
  padding: 3rem 1rem;
}

@media screen and (min-width: 48em), print {
  .insta {
    padding: 12rem 0;
  }
  .insta .wrap {
    margin: 0 auto;
    padding: 0;
  }
}
body:not(.index) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 6rem 1rem;
}
body:not(.index) .main .tel {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 150%;
  color: var(--clr_main);
}
body:not(.index) .main .tel::before {
  content: "Tel.";
  font-size: 70%;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 12rem auto;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r, body:not(.index) .main .cf .img_c {
    max-width: 45rem;
    height: auto;
  }
}

.heading {
  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: 8rem;
  font-weight: 700;
  color: #fff;
  background: url(../img/tit_01.webp) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  padding: 0 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
@media screen and (min-width: 48em), print {
  .heading {
    height: 35rem;
    background: url(../img/tit_01.webp) no-repeat center center/auto;
    font-size: 4.2rem;
  }
}

.breadnav {
  width: 100%;
  margin: 0;
  padding: 0.4rem 1rem;
  overflow-x: auto;
  background: var(--clr_sub04);
}
.breadnav .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li a {
  color: var(--clr_txt);
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    padding: 1rem 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    width: 1200px;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_main);
  line-height: 1.4;
}
.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(--clr_main);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .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;
    gap: 2rem;
  }
  .device li {
    width: 32%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
.lst_flow dt {
  margin: 0;
  padding: 0.4rem 1rem;
  color: #fff;
  font-size: 120%;
  background: var(--clr_main);
}
.lst_flow dd {
  margin: 0;
  padding: 1rem;
  border: 2px solid var(--clr_main);
  position: relative;
}
.lst_flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5.4rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--clr_main);
  border-right: 2rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow dt {
    padding: 1rem 3rem;
  }
  .lst_flow dd {
    padding: 2rem 3rem;
  }
  .lst_flow dd:not(:last-child) {
    margin: 0 0 9rem;
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -7rem;
  }
}
.faq .main .accordion {
  width: 100%;
  margin: 0 auto;
}
.faq .main .accordion dt {
  background: var(--clr_main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.faq .main .accordion dt::hover, .faq .main .accordion dt::active, .faq .main .accordion dt.is-active {
  background-color: black;
}
.faq .main dd {
  text-align: left;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.faq .main dd:not(:last-child) {
  margin: 0 0 2rem;
}
.faq .main dd.is-open {
  padding: 1rem;
  line-height: normal;
  height: auto;
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .faq .main .accordion {
    width: 1200px;
  }
  .faq .main .accordion dt {
    font-size: 1.8rem;
  }
}
.bridal_check .tbl_lst2 td.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 48em), print {
  .bridal_check .tbl_lst2 td.vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.fertility_treatment .main .btn_detail a {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  .fertility_treatment .main .ico_line img:hover {
    opacity: 0.8;
  }
}
body.first .main .flex3 {
  display: block;
}
body.first .main .flex3 > li {
  width: 100%;
  text-align: center;
}
body.first .main .flex3 > li img {
  margin: 0 auto;
}

@media screen and (min-width: 48em), print {
  body.first .main .flex3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 5rem;
  }
  body.first .main .flex3 > li {
    width: auto;
  }
  body.first .main .flex3 > li img:hover {
    opacity: 0.8;
  }
}
body.access .main .lst_ul_disc li {
  margin: 0;
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
body.access .main .illst_map li {
  margin: 0 0 2rem;
}
body.access .main .illst_map li img {
  margin: 0 auto 1rem;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .gmap {
    height: 50rem;
  }
  body.access .main .flex2 > div {
    width: 45%;
  }
  body.access .main .illst_map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 6rem;
  }
}

.tbl_price, .tbl_lst2, .tbl_lst {
  width: 100%;
  border-collapse: collapse;
}
.tbl_price caption, .tbl_lst2 caption, .tbl_lst caption {
  text-align: left;
  font-size: 85%;
}
.tbl_price th, .tbl_lst2 th, .tbl_lst th {
  padding: 0.6rem 1.6rem;
  background: var(--clr_main);
  border: 1px solid #ccc;
  text-align: center;
  color: #fff;
  width: 50%;
}
.tbl_price td, .tbl_lst2 td, .tbl_lst td {
  padding: 0.6rem 1.6rem;
  border: 1px solid #ccc;
  text-align: right;
  width: 50%;
}
.tbl_price td:first-child, .tbl_lst2 td:first-child, .tbl_lst td:first-child {
  text-align: center;
}

.tbl_lst th {
  width: 30%;
}
.tbl_lst td {
  text-align: left;
  width: 70%;
}

.tbl_lst2 th {
  width: 40%;
}
.tbl_lst2 td {
  text-align: center;
  width: auto;
}
.tbl_lst2 td[scope=col] {
  background: #90CC8A;
  color: #fff;
}

.anc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  margin: 0 0 1rem;
  border-radius: 6px;
  background: var(--clr_sub03);
  padding: 1rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\f006";
  color: #fff;
  margin-right: 0.4rem;
}
.anc li a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .anc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6rem 2rem;
  }
  .anc li {
    margin: 0 0 1.6rem;
    padding: 1rem;
    width: 25%;
    margin: 0;
  }
  .anc li:hover {
    background: var(--clr_sub08);
  }
  .anc li::before {
    margin-right: 0.8rem;
  }
}
/*# sourceMappingURL=style.css.map */