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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  overflow-wrap: break-word;
}

button {
  cursor: pointer;
  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;
  object-fit: contain;
}

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

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_lightgreen {
  color: #8EB854;
}

.txt_red {
  color: #c00;
}

.txt_green {
  color: #306839;
}

.img_c {
  margin: 1rem auto;
}

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

img.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;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

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

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.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 {
  .mt00 {
    margin-top: 0rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt40 {
    margin-top: 8rem;
  }
  .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: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.6rem;
}
.tbl_time caption span {
  display: inline-block;
  padding: 0.2rem 1rem;
  background: #e5ebe7;
  margin: 0 0.4em 0 0;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  color: #fff;
  background: #6b9371;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=row] {
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  background: #fff;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid #ccc;
  line-height: 1;
  font-size: 80%;
  color: #8EB854;
  background: #fff;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 2rem 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  background: url(../img/tit_01.webp) no-repeat center center/auto 100%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  padding: 2.6rem 0 0;
  background: url(../img/tit_02.svg) no-repeat center top/3rem auto;
  margin: 0 auto 2rem;
}
.tit_02::after {
  display: block;
  content: "";
  width: 2em;
  height: 2px;
  background: #306839;
  margin: 1rem auto 0;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: #306839;
  padding: 0.4rem 1rem 0.2rem;
  margin: 0 0 2rem;
}
.tit_03::after {
  display: block;
  content: "";
  height: 1px;
  background: #fff;
  margin: 0.4rem -1rem 0;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 1rem 0.4rem;
  border-left: 0.3rem solid #306839;
  border-bottom: 1px solid #306839;
  margin: 0 0 2rem;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 0 0 1rem;
  border-left: 0.2rem solid #306839;
  margin: 0 0 2rem;
  position: relative;
}
.tit_05::before {
  display: block;
  content: "";
  width: 1px;
  min-height: calc(1em + 0.6rem);
  background: #306839;
  position: absolute;
  left: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 30rem;
    background: url(../img/tit_01.webp) no-repeat center center/auto;
    font-size: 3.6rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    padding: 3.4rem 0 0;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    background: url(../img/tit_02.svg) no-repeat center top/4.2rem auto;
    margin: 0 auto 5rem;
  }
  .tit_02::after {
    display: block;
    content: "";
    margin: 2rem auto 0;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 3rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: #8EB854;
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #333;
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: #8EB854;
}

.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: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 25%;
  }
  .lst_dl01 dd {
    width: 75%;
    padding: 0 0 0 1rem;
  }
}
.card_lst {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
}
.card_lst li img {
  width: 100%;
  height: auto;
  max-width: 6.5rem;
}
.card_lst li img.visa {
  min-height: 2.6rem;
  max-width: 7rem;
}
.card_lst li img.long {
  max-width: 8rem;
}
.card_lst li img.portrait {
  max-height: 5rem;
  height: 100%;
  width: auto;
}
@media screen and (min-width: 48em), print {
  .card_lst {
    gap: 1rem 2.5rem;
  }
  .card_lst li img {
    max-width: 8rem;
  }
  .card_lst li img.visa {
    max-height: 6rem;
    max-width: 10.5rem;
  }
  .card_lst li img.long {
    max-width: 11rem;
  }
  .card_lst li img.portrait {
    max-height: 6.5rem;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

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

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 2rem;
  }
  .flex3 li {
    width: 31%;
  }
}
.tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.4rem;
  color: #306839;
  font-weight: bold;
}
.tel::before {
  font-family: "fontello";
  content: "\e801";
}
.tel a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.box_gray {
  padding: 1.6rem;
  background: #F6F8F6;
}
@media screen and (min-width: 48em), print {
  .box_gray {
    padding: 3rem;
  }
}

.box_green {
  padding: 1.6rem;
  background: #F7FAF4;
}
@media screen and (min-width: 48em), print {
  .box_green {
    padding: 3rem;
  }
}

.btn_green {
  display: inline-flex;
  align-items: center;
  gap: 0 1rem;
  padding: 0.4rem 2rem;
  color: #fff;
  background: #489A23;
  border: 1px solid #489A23;
  text-decoration: none !important;
}
.btn_green::after {
  font-family: "fontello";
  content: "\32";
}
@media screen and (min-width: 48em), print {
  .btn_green {
    gap: 0 2rem;
    padding: 0.4rem 3rem;
  }
  .btn_green:is(:hover, :focus-visible) {
    background: #fff;
    color: #489A23;
    opacity: 1;
  }
}

.linkout {
  display: inline-block;
  color: #333;
  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;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: #8EB854;
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f104";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\32";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid #8EB854;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: #8EB854;
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #8EB854;
}
.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;
  }
}
html {
  font-size: 2.7777777778vw;
}

body {
  background: #fff;
  color: #333;
  font-feature-settings: "palt";
  font-family: "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(48, 104, 57, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/auto 85%;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  margin: 5.6rem 0 0;
}
.header > .wrap .headR ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
.header > .wrap .headR ul li.acs {
  font-size: 1.1rem;
  background: #F6F8F6;
  padding: 0.4rem 0.6rem;
}
.header > .wrap .headR ul li .tel {
  font-size: 1.5rem;
}

@media screen and (min-width: 48em), print {
  .header {
    padding: 0 0 2rem;
    background: #fff;
    box-shadow: 0 0.2rem 0.2rem rgba(102, 102, 102, 0.2);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  .header.hide {
    transform: translateY(-300%);
  }
  .header > .wrap {
    padding: 2rem 0 0;
    display: flex;
    justify-content: space-between;
  }
  .header > .wrap .logo {
    width: 35%;
    height: 6.6rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
    background: url(../img/logo.svg) no-repeat left center/auto 100%;
  }
  .header > .wrap .headR {
    width: 60%;
    margin: 0;
  }
  .header > .wrap .headR ul {
    justify-content: flex-end;
    gap: 0 3rem;
  }
  .header > .wrap .headR ul li.acs {
    font-size: 1.8rem;
    padding: 0.6rem 2rem;
  }
  .header > .wrap .headR ul li .tel {
    font-size: 3rem;
  }
  .header #nav {
    margin: -1.4rem 0 0;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: #8EB854;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.6rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e800";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 8rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid #8EB854;
  border-bottom: 1px solid #8EB854;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted #8EB854;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: #8EB854;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\34";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\33";
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: flex;
  flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
  border-top: 1px solid #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:nth-child(even) {
  border-left: 1px solid #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #fff;
  font-weight: bold;
  background: rgba(142, 184, 84, 0.9);
  text-align: center;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: rgba(48, 104, 57, 0.9);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #8EB854;
  background: rgba(142, 184, 84, 0.1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e800";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: static;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: auto;
    max-height: inherit;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 2.8rem;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    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 {
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    padding: 1rem 0;
    margin: 0;
    cursor: pointer;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li a::before, #nav .gnav_subnav .gnav > li .sub::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    background: #8EB854;
    position: absolute;
    bottom: 1rem;
    opacity: 0;
    transition: 0.2s;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible) {
    opacity: 1;
    color: #8EB854;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible)::before, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible)::before {
    opacity: 1;
    transform: translate(0, 1rem);
  }
  #nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li a.current::before, #nav .gnav_subnav .gnav > li .sub.current::before {
    transition: 0s;
    opacity: 1;
    transform: translate(0, 1rem);
  }
  #nav .gnav_subnav .gnav > li a.home, #nav .gnav_subnav .gnav > li .sub.home {
    position: relative;
  }
  #nav .gnav_subnav .gnav > li a.home span, #nav .gnav_subnav .gnav > li .sub.home span {
    display: block;
    width: 1.6em;
    height: 1.6em;
    overflow: hidden;
    clip-path: inset(50%);
    color: transparent;
  }
  #nav .gnav_subnav .gnav > li a.home::after, #nav .gnav_subnav .gnav > li .sub.home::after {
    display: block;
    font-family: "fontello";
    content: "\e805";
    font-size: 2rem;
    text-align: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 50rem;
    position: absolute;
    top: 5.6rem;
    left: -20rem;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1.6rem 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    background: rgba(48, 104, 57, 0.9);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    display: none;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 4rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #F6F8F6;
}
.overview > .wrap .overviewL .clinic_name {
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap .overviewL .tel {
  display: flex;
  font-size: 2.2rem;
  text-align: center;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 2rem 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 23%;
  padding: 1rem 0.4rem;
  text-align: center;
  font-weight: bold;
  border-top: 1px solid #ccc;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 77%;
  padding: 1rem 0.4rem;
  border-top: 1px solid #ccc;
}
.overview > .wrap .overviewL .gaiyo dd .tel {
  font-size: 120%;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0;
}
.overview > .wrap .overviewR .gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 3rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 51rem;
  }
  .overview > .wrap .overviewL .tel {
    font-size: 3.6rem;
  }
  .overview > .wrap .overviewL .gaiyo {
    margin: 3rem 0 0;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    padding: 1.6rem 1rem;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    padding: 1.6rem 1rem 1.6rem 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    height: 100%;
  }
}
#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: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li.telno a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
  height: 100%;
  color: #306839;
  font-weight: bold;
  font-size: 2rem;
}
#tel_up ul li.telno a::before {
  font-family: "fontello";
  content: "\e801";
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  text-align: center;
  color: #fff;
  line-height: 1;
  padding: 0 1rem;
  background: #8EB854;
  border: 1px solid #8EB854;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\33";
  font-size: 3rem;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 1rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    border-radius: 50%;
  }
  #tel_up #pageup::before {
    font-size: 4rem;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    color: #8EB854;
    background: #fff;
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  display: block;
  background: #306839;
  color: #fff;
  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 {
    font-size: 1.6rem;
    padding: 3rem 0;
    margin: 2rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  opacity: 0;
  animation: fadein 4s ease-out 0.6s 1 normal forwards;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 27rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 24rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin: 0 0 10rem;
  }
  .keyvsl #keyvsl {
    height: 80rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 76rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
}
body.index .main .tit_02 {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.4rem 0;
}
body.index .main .tit_02::before {
  display: block;
  content: attr(data-txt);
  color: #306839;
  font-size: 50%;
  font-weight: normal;
  letter-spacing: 0;
  text-indent: 0;
}
body.index .main .tit_02::after {
  display: none;
}

.info {
  margin: 4rem 0;
  overflow: hidden;
}
.info .wrap {
  padding: 0 1.6rem;
  position: relative;
}
.info .wrap::before {
  display: block;
  content: "";
  width: 20rem;
  height: 20rem;
  background: url(../img/logo_mark.svg) no-repeat center center/contain;
  opacity: 0.05;
  position: absolute;
  right: -5rem;
}
.info .wrap dl {
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #ccc;
}
.info .wrap dl dt {
  display: flex;
  align-items: flex-start;
  gap: 0 0.6rem;
  margin: 0 0 1rem;
  font-weight: bold;
  color: #306839;
  line-height: 1.6;
  cursor: pointer;
}
.info .wrap dl dt::before {
  font-family: "fontello";
  content: "\34";
}
.info .wrap dl dt.close::before {
  font-family: "fontello";
  content: "\33";
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid #ccc;
}
.info .wrap dl dd {
  margin: 0 0 1.6rem;
}
.info .wrap dl dd:nth-of-type(n+4) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 8rem 0;
  }
  .info .wrap {
    display: flex;
    align-items: flex-start;
    gap: 0 10rem;
  }
  .info .wrap::before {
    width: 37rem;
    height: 37rem;
    position: absolute;
    top: 10rem;
    left: -17rem;
  }
  .info .wrap .tit_02 {
    width: 16rem;
  }
  .info .wrap dl {
    padding: 0 0 1rem;
    flex: 1;
    min-height: 48rem;
  }
  .info .wrap dl dt {
    margin: 0 0 1rem;
    transition: 0.2s;
  }
  .info .wrap dl dt::before {
    margin-right: 1rem;
  }
  .info .wrap dl dt:not(:first-of-type) {
    margin: 2rem 0 1rem;
    padding: 2rem 0 0;
  }
  .info .wrap dl dt:hover {
    color: #8EB854;
  }
  .info .wrap dl dd {
    margin: 0 0 2rem;
  }
}
.tre {
  padding: 4rem 1.6rem;
  background: url(../img/index_tre_bg.jpg) no-repeat center top/auto 100%;
}
.tre .subnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.tre .subnav li {
  width: 45%;
  opacity: 0;
}
.tre .subnav li a {
  display: block;
  padding: 1rem;
  background: #fff;
  color: #306839;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.tre .subnav li a::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}
.tre .subnav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 1rem solid transparent;
  border-bottom: 1rem solid #8EB854;
}
.tre .subnav li a.ortho::before {
  background: url(../img/icon_seikei.svg) no-repeat center center/contain;
}
.tre .subnav li a.sports_ortho::before {
  background: url(../img/icon_sports.svg) no-repeat center center/contain;
}
.tre .subnav li a.rehabilitation::before {
  background: url(../img/icon_reha.svg) no-repeat center center/contain;
}
.tre .subnav li a.osteoporosis::before {
  background: url(../img/icon_kotsu.svg) no-repeat center center/contain;
}
.tre .subnav li a.rheumatism::before {
  background: url(../img/icon_ra.svg) no-repeat center center/contain;
}
.tre .subnav li a.internal::before {
  background: url(../img/icon_naika.svg) no-repeat center center/contain;
}
.tre .subnav li a.checkup::before {
  background: url(../img/icon_kenshin.svg) no-repeat center center/contain;
}
.tre .subnav li a.vaccination::before {
  background: url(../img/icon_yobo.svg) no-repeat center center/contain;
}
.tre .subnav li a.current {
  background: #EDFED7;
  opacity: 1;
}
.tre.trigger .subnav li {
  animation: fade_up 0.6s ease-out forwards;
}
.tre.trigger .subnav li:nth-child(1) {
  animation-delay: 0.3s;
}
.tre.trigger .subnav li:nth-child(2) {
  animation-delay: 0.6s;
}
.tre.trigger .subnav li:nth-child(3) {
  animation-delay: 0.9s;
}
.tre.trigger .subnav li:nth-child(4) {
  animation-delay: 1.2s;
}
.tre.trigger .subnav li:nth-child(5) {
  animation-delay: 1.5s;
}
.tre.trigger .subnav li:nth-child(6) {
  animation-delay: 1.8s;
}
.tre.trigger .subnav li:nth-child(7) {
  animation-delay: 2.1s;
}
.tre.trigger .subnav li:nth-child(8) {
  animation-delay: 2.4s;
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 8rem 0;
  }
  .tre .subnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .tre .subnav li {
    width: 31.6%;
  }
  .tre .subnav li a {
    display: flex;
    align-items: center;
    gap: 0 5rem;
    font-size: 2rem;
    padding: 3rem;
    overflow: hidden;
  }
  .tre .subnav li a::before {
    content: "";
    display: block;
    width: 6rem;
    height: 6rem;
    margin: 0;
    transition: 0.8s;
  }
  .tre .subnav li a::after {
    border-left: 2rem solid transparent;
    border-bottom: 2rem solid #8EB854;
  }
  .tre .subnav li a:is(:hover, :focus-visible) {
    background: #EDFED7;
    opacity: 1;
  }
  .tre .subnav li a:is(:hover, :focus-visible)::before {
    transform: scale(1.4);
  }
}
.feature {
  margin: 4rem 1.6rem;
  counter-reset: number 0;
  overflow: hidden;
}
.feature > div {
  counter-increment: number 1;
  padding: 0 0 18rem;
  opacity: 0;
}
.feature > div section .tit {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #306839;
  border-bottom: 1px solid #ccc;
  margin: 0 0 2rem;
}
.feature > div section .tit::before {
  display: block;
  content: counter(number, decimal-leading-zero);
  color: #8EB854;
  font-size: 250%;
  flex: 0 0 5.4rem;
}
.feature > div:not(:last-of-type) {
  margin: 0 0 3rem;
}
.feature > div.senmon {
  background: url(../img/index_feature_senmon.jpg) no-repeat center bottom/100% auto;
}
.feature > div.acs {
  background: url(../img/index_feature_acs.jpg) no-repeat center bottom/100% auto;
}
.feature > div.shinryo {
  background: url(../img/index_feature_shinryo.jpg) no-repeat center bottom/100% auto;
}
.feature > div.reha {
  background: url(../img/index_feature_reha.jpg) no-repeat center bottom/100% auto;
}
.feature > div.kotsu {
  background: url(../img/index_feature_kotsu.jpg) no-repeat center bottom/100% auto;
}
.feature > div.trigger:nth-child(even) {
  animation: fade_right 1s ease-out 0.2s 1 normal forwards;
}
.feature > div.trigger:nth-child(odd) {
  animation: fade_left 1s ease-out 0.2s 1 normal forwards;
}

@media screen and (min-width: 48em), print {
  .feature {
    width: 1200px;
    margin: 8rem auto;
  }
  .feature div {
    display: flex;
    align-items: center;
    min-height: 30rem;
  }
  .feature div section {
    width: calc(1200px - 57.0rem);
  }
  .feature div section .tit {
    gap: 0 1rem;
    font-size: 3rem;
    padding: 0 0 0 6rem;
  }
  .feature div section .tit::before {
    font-size: 250%;
    flex: 0 0 9rem;
  }
  .feature div:not(:last-child) {
    margin: 0 0 8rem;
  }
  .feature div:nth-child(even) {
    padding: 0 0 0 57rem;
  }
  .feature div:nth-child(even) section .tit {
    padding: 0 0 0 6rem;
  }
  .feature div:nth-child(even) section p {
    padding: 0 2rem 0 6rem;
  }
  .feature div:nth-child(odd) {
    padding: 0 57rem 0 0;
  }
  .feature div:nth-child(odd) section .tit {
    padding: 0 6rem 0 0;
  }
  .feature div:nth-child(odd) section p {
    padding: 0 6rem 0 0;
  }
  .feature div.senmon {
    background: url(../img/index_feature_senmon.jpg) no-repeat left center/auto 30rem;
  }
  .feature div.acs {
    background: url(../img/index_feature_acs.jpg) no-repeat right center/auto 30rem;
  }
  .feature div.shinryo {
    background: url(../img/index_feature_shinryo.jpg) no-repeat left center/auto 30rem;
  }
  .feature div.reha {
    background: url(../img/index_feature_reha.jpg) no-repeat right center/auto 30rem;
  }
  .feature div.kotsu {
    background: url(../img/index_feature_kotsu.jpg) no-repeat left center/auto 30rem;
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 4rem 1.6rem 6rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 100rem;
    margin: 8rem auto;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
  color: #8EB854;
}
.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 {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.6rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.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;
  transition: 0.3s ease;
  background: #8EB854;
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid #8EB854;
}

@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);
  }
  .gallery .gallery_thum#clinic02_nav .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
.lst_flow dd {
  margin: 0;
  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: -7rem;
  left: 0;
  right: 0;
  border: 3rem solid transparent;
  border-top: 2rem solid #8EB854;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow dd:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -9rem;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

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