@charset "UTF-8";
/* CSS Document */
@media only screen and (max-width: 768px) {
  .blurFixSP {
    image-rendering: optimizeSpeed;
    /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;
    /* Firefox                        */
    image-rendering: -o-crisp-edges;
    /* Opera                          */
    image-rendering: -webkit-optimize-contrast;
    /* Chrome (and eventually Safari) */
    image-rendering: pixelated;
    /* Chrome */
    image-rendering: optimize-contrast;
    /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;
    /* IE8+                           */
  }
  :root {
    --fs-base: 14px;
    --lh-base: 1.8;
    --ttl_size: 26px;
    --wrapper: 70px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.menu_toggle {
  background-color: rgba(28, 28, 28, 0.2);
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  transition: all 0.5s ease;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px) brightness(1);
  -webkit-backdrop-filter: blur(10px) brightness(1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside {
    width: 70%;
    max-width: 935px;
    height: calc(100% - 10px);
    margin: 5px 20px 5px auto;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle .inside {
    height: calc(100% - 10px);
    width: calc(100% - 20px);
    margin: 5px 10px;
  }
  .menu_toggle .inside .ft_link {
    padding: 60px 20px;
  }
}
@supports (-webkit-touch-callout: none) {
  .menu_toggle .inside {
    /* Specific to iOS devices */
  }
  .menu_toggle .inside .ft_link {
    padding-bottom: 120px;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside {
      /* Safari */
    }
    .menu_toggle .inside .ft_link {
      padding-bottom: 120px;
    }
  }
}

.nav-icon {
  width: 3.5em;
  height: 12px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nav-icon span:nth-child(1) {
  top: 0;
}
.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 5px;
  width: 80%;
}
.nav-icon span:nth-child(4) {
  bottom: 0;
}
.nav-icon.open span:nth-child(1) {
  width: 0%;
}
.nav-icon.open span:nth-child(2) {
  width: 100%;
  transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg);
}
.nav-icon.open span:nth-child(4) {
  width: 0%;
}
@media only screen and (max-width: 768px) {
  .nav-icon {
    width: 2.5em;
  }
}

.hamburger-btn {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--clr1);
  }
}
@media only screen and (min-width: 769px) {
  .hamburger-btn {
    width: var(--h-nav);
    height: var(--h-nav);
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .menu_toggle .lv2 ul {
    background-color: rgba(107, 158, 178, 0.8);
  }
  .menu_toggle .lv2 li {
    padding: 0 10px;
  }
  .menu_toggle .lv2 li a,
  .menu_toggle .lv2 li p.title {
    display: block;
    position: relative;
    color: #fff;
    font-size: 13px;
    padding: 10px 10px 10px 25px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  }
  .menu_toggle .lv2 li a::after {
    content: "›";
    display: block;
    position: absolute;
    top: 47%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
  .inside .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
    margin-bottom: 0.5em;
  }
  .inside .ft_link li {
    padding: 10px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .inside .ft_link a {
    display: block;
  }
  .inside .ft_link .menu01,
  .inside .ft_link .menu02 {
    margin-bottom: 30px;
  }
  .inside .ft_link .bnr_official {
    font-size: 8px;
  }
  .inside .ft_link .bnr_official a {
    margin: 0 auto;
  }
}
/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  a:hover {
    opacity: 1 !important;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .txt_l,
  .txt_r {
    float: none;
    width: auto;
  }
  .image_l,
  .image_r {
    float: none;
    width: auto;
    margin: 0 0 20px;
    text-align: center;
    max-width: none;
  }
  p {
    margin-bottom: 13px;
    line-height: 2;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header {
    --h-nav: 70px;
    --mr: 2.5em;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 70px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 80px);
    width: auto;
    transform: none;
    margin-left: 10px;
  }
  .header_top .logo img {
    width: auto;
    max-height: 60px;
  }
  footer {
    padding: 60px 0 0;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
    padding: 40px 20px;
  }
  footer .ft_info::before {
    width: 100%;
  }
  footer .ft_logo {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  footer .ft_tel {
    margin-bottom: 30px;
  }
  footer .time_sheet {
    margin-bottom: 30px;
  }
  footer .time_sheet table {
    font-size: min(2vw, 10px);
  }
  footer .ft_link {
    padding: 30px 0 60px;
  }
  footer .ft_link::before {
    left: -20px;
  }
  footer .ft_payment {
    margin: 0 auto;
  }
  footer .bnr_official {
    font-size: min(2.34375vw, 7.5px);
    width: 100%;
    margin-bottom: 30px;
  }
  footer .bnr_official a {
    margin: 0 auto;
    max-width: 20em;
    width: 100%;
  }
  footer .ft_map {
    height: 199px;
  }
  .totop {
    bottom: 55px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .bnr_corona {
    font-size: min(1.875vw, 8.75px);
    bottom: 80px;
    left: 10px;
  }
  .bnr_corona.active {
    bottom: 55px;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 50px;
    transform: translateY(100%);
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner > div {
    width: 33.33%;
    height: 100%;
  }
  .fixed_banner > div > p {
    position: relative;
    font-size: 12px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
  }
  .fixed_banner .tel p {
    background-color: #344872;
    z-index: 0;
  }
  .fixed_banner .tel p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: rgba(24, 39, 72, 0.4);
    z-index: -1;
  }
  .fixed_banner .web p {
    background-color: #EFDBCD;
    z-index: 0;
  }
  .fixed_banner .web p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: rgba(220, 189, 168, 0.4);
    z-index: -1;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .copyright .wrap {
    justify-content: center;
  }
  .copyright .textwidget p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .copyright .wrap {
    flex-wrap: wrap;
    max-width: 450px;
    margin: auto;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    max-width: 122px;
  }
  .copyright .textwidget {
    width: 100%;
    margin-top: 5px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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