/* 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;
    --ttl_size: 24px;
    --wrapper: 60px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}
.menu_toggle {
  background-color: #fff;
  position: fixed;
  top: var(--wrapper);
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--wrapper));
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle ul li {
  position: relative;
  overflow: hidden;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
  background-color: var(--clr-bg2);
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .ttl + ul {
    display: flex !important;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle .inside .ft_link {
    padding: 20px 10px 20px;
  }
  @supports (-webkit-touch-callout: none) {
    .menu_toggle .inside .ft_link {
      /* Specific to iOS devices */
      padding-bottom: 120px;
    }
  }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .menu_toggle .inside .ft_link {
        /* Safari */
        padding-bottom: 120px;
      }
    }
  }
  .menu_toggle .inside .ft_link .title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .menu_toggle .inside .ft_link .menu01 {
    margin-bottom: 30px;
  }
  .menu_toggle .inside .ft_link .menu-child {
    position: relative;
    pointer-events: auto;
    border-bottom: 0;
    --left: 2em;
  }
  .menu_toggle .inside .ft_link .menu-child > ul {
    margin-top: 10px;
  }
  .menu_toggle .inside .ft_link .menu-child:not(.rotate) {
    padding-bottom: 1em;
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .inside .ft_link .menu-child.rotate::before {
    transform: rotate(0deg);
  }
  .menu_toggle .inside .ft_link .menu-child::before, .menu_toggle .inside .ft_link .menu-child::after {
    content: "";
    display: block !important;
    position: absolute;
    top: 2em;
    right: 1em;
    margin: auto;
    background-color: currentColor;
    transition: 0.3s all;
    width: calc(var(--left) / 2);
    height: 2px;
    z-index: 2;
  }
  .menu_toggle .inside .ft_link .menu-child::before {
    transform: rotate(90deg);
  }
  .menu_toggle .inside .ft_link li {
    border-bottom: 1px dashed #699f84;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .menu_toggle .inside .ft_link a {
    display: block;
    color: var(--clr1);
  }
}
#nav-icon {
  width: 20px;
  height: 16px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: var(--main-color);
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 7px;
}
#nav-icon span:nth-child(4) {
  top: calc(100% - 2px);
}
#nav-icon.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
.hamburger-btn {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover {
    background-color: var(--clr1);
  }
}
.hamburger-btn .button-toggle {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
}
/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  figure {
    text-align: center;
  }
  .totop {
    bottom: 40px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    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;
  }
  .btn-group {
    font-size: 8.75px;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 280px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    padding: 0.5em 2.5em 0.5em 1em;
  }
  .btn-group .btn.style01 a::after, .btn-group .btn.style02 a::after {
    font-size: 0.875em;
    right: 8px;
  }
  .btn-group .btn.style01.md, .btn-group .btn.style02.md {
    min-width: 100px;
  }
  .btn-group .btn.style01.md a, .btn-group .btn.style02.md a {
    min-height: 45px;
    font-size: 14px;
  }
  p {
    margin-bottom: 13px;
    line-height: 2;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .header_top {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-right: 50px;
    padding-left: 10px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: max(155px, 42vw);
  }
  .header_top .logo img {
    content: url(../images/shared_header_logo_sp.svg);
  }
  .header_top .social-bnr {
    position: relative;
    gap: 10px;
  }
  .header_top .social-bnr .bnr {
    max-width: clamp(35px, 10vw, 40px);
  }
  .idx_gallery ul li .img {
    width: 225px;
    height: 500px;
    background-size: 100% auto;
  }
  footer .ft_logo {
    max-width: 193px;
    margin-bottom: 20px;
  }
  footer .ft_info {
    padding: 60px 0 40px;
    border-radius: 0 0 40px 40px;
  }
  footer .ft_info .wrap {
    border-radius: 20px;
  }
  footer .ft_info .box01 {
    padding: 40px 0 20px;
    max-width: 518px;
    margin: 0 auto;
  }
  footer .ft_info .box02 {
    padding: 20px 0 40px;
  }
  footer .ft_info .info {
    margin-bottom: 15px;
  }
  footer .ft_info .info_address,
  footer .ft_info .info_tel a {
    padding-left: 35px;
  }
  footer .ft_info .info_address::after,
  footer .ft_info .info_tel a::after {
    left: 25px;
  }
  footer .ft_info .page_link {
    font-size: 8.75px;
    flex-wrap: wrap;
  }
  footer .ft_info .page_link .item {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .ft_info .ft_bnr {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  footer .ft_menu {
    margin-top: -40px;
    padding: 60px 0 54px;
  }
  .box_news {
    max-width: 588px;
  }
  .box_news .ttl {
    margin-bottom: 15px;
  }
  .box_news ul {
    margin-bottom: 25px;
  }
  .box_news a {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
  .box_news .ttl {
    margin-left: auto;
    margin-right: auto;
  }
  .box_news .btn-news a {
    margin-left: auto;
    margin-right: auto;
  }
  .time_sheet {
    font-size: min(2.1875vw, 10px);
  }
  .banner_ai {
    font-size: clamp(5px, 1.6vw, 8.75px);
    bottom: calc(50% - 25em);
    right: 4em;
  }
  .banner_ai.active {
    bottom: 45px;
    right: 60px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 320px) and (max-height: 585px) {
  .banner_ai {
    bottom: calc(50% - 35em);
  }
}
@media only screen and (max-width: 768px) {
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 34px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    gap: 2px;
    z-index: 20;
  }
  .fixed_banner > div {
    width: calc(25% - 1.5px);
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner .tt {
    border-radius: 5px 5px 0 0;
    border: 1px solid #ccd9d4;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    background-color: #fff;
  }
  .fixed_banner .tt::before {
    font-size: 0.875em;
    margin-bottom: 0;
    margin-right: 5px;
  }
  .fixed_banner .time.active .tt,
  .fixed_banner .map.active .tt {
    border-top: 0;
  }
  .fixed_banner .popup {
    width: 100%;
    height: auto;
    top: 0;
  }
  .fixed_banner .popup .txt {
    width: 100%;
    bottom: 0;
    left: 0;
    height: auto;
    border-radius: 5px 5px 0 0;
    border: 1px solid var(--clr-gray2);
    border-bottom: 0;
    padding: 10px;
  }
  .fixed_banner .popup .txt_time .time_sheet {
    font-size: 8px;
    padding-top: 0;
  }
  .fixed_banner .popup .txt_map .area {
    padding: 0;
    max-width: 500px;
  }
  .fixed_banner .popup .txt_map .area .map {
    height: 199px;
    margin-bottom: 15px;
  }
  .fixed_banner .popup .txt_map .area .btn-group {
    font-size: 8.75px;
    margin-bottom: 10px;
  }
  .fixed_banner .popup .txt_map .area .btn-group .btn {
    max-width: 220px;
  }
  .fixed_banner .popup .txt_map .area > p {
    font-size: 10px;
  }
  .copyright {
    text-align: center;
  }
}
@media only screen and (max-width: 430px) {
  .box_info .info_vehicle {
    padding: 0.5em;
  }
  .box_info .info_vehicle .item01 {
    padding-right: 5px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 360px) {
  footer .ft_info .info_address {
    font-size: 12px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style_sp.css.map */