/* 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 {
    --txt_size: 14px;
    --ttl_size: 22px;
    --wrapper: clamp(60px, 15vw, 80px);
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
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;
}
.menu_toggle .inside .ttl {
  color: var(--main-color);
  margin-bottom: 15px;
}
.menu_toggle .inside li {
  color: var(--clr1);
}
@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 .menu-child {
    position: relative;
    pointer-events: auto;
    --left: 22px;
  }
  .menu_toggle .inside .ft_link .menu-child > a {
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .inside .ft_link .menu-child.rotate {
    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: 22px;
    right: 1em;
    margin: auto;
    background-color: var(--main-color);
    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 a,
  .menu_toggle .inside .ft_link .menu-child > ul > li > a {
    position: relative;
    display: block;
    padding-left: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .menu_toggle .inside .ft_link a::before,
  .menu_toggle .inside .ft_link .menu-child > ul > li > a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 9px;
    top: 18px;
    bottom: 0px;
    left: 0px;
    background: url("../images/idx_ic_menu_arr.png") no-repeat center/cover;
  }
  .menu_toggle .inside .ft_link .menu-child > ul > li > a {
    font-size: 14px;
  }
  .menu_toggle .inside .ft_link .menu-child > a {
    padding-left: 0;
  }
  .menu_toggle .inside .ft_link .menu-child > a::before {
    display: none;
  }
  .menu_toggle .inside .ft_link li:not(.menu-child) {
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .inside .ft_link .menu-child > ul > li:last-child {
    border-bottom: 0;
  }
  .menu_toggle .inside .ft_link .menu01 {
    margin-bottom: 30px;
  }
}

#nav-icon {
  width: 39px;
  height: 21px;
  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;
  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: 10px;
}
#nav-icon span:nth-child(4) {
  bottom: 0;
}
#nav-icon.open span:nth-child(1) {
  top: 10px;
  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) {
  bottom: 10px;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover {
    background-color: var(--clr1);
  }
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 10px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}

/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  figure {
    text-align: center;
  }
  .totop {
    bottom: 75px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    display: flex;
  }
  .under .topic_path {
    padding-bottom: 10px;
  }
  .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.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;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
}
@media only screen and (max-width: 768px) {
  .flex_gr {
    --size-mg: 5px;
    justify-content: center;
  }
  .flex_gr.col-2 .item, .flex_gr.col-3 .item, .flex_gr.col-4 .item, .flex_gr.col-5 .item {
    margin: var(--size-mg);
    width: calc(50% - 2 * var(--size-mg));
  }
}
@media only screen and (max-width: 360px) {
  .btn-group {
    font-size: 7.75px;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .header_top {
    --pd-size: 20px;
    width: 100%;
    align-items: center;
    height: var(--wrapper);
  }
  .header_top::after {
    height: 1px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 100px);
    width: 52.24%;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 45px;
  }
  .ft_link .menu-child > a {
    display: block;
  }
  footer {
    padding: 0 0 70px;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 70px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 20;
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner p {
    font-weight: normal;
    font-size: 14px;
    line-height: 1;
  }
  .fixed_banner p::before {
    margin-right: 5px;
  }
  .fixed_banner > dl {
    width: 50%;
    background-color: #fff;
    color: #25498d;
    border-top: 1px solid #b3bfd7;
    display: flex;
    flex-direction: column;
  }
  .fixed_banner > dl:has(+ dl) {
    border-right: 1px solid #b3bfd7;
  }
  .fixed_banner > dl dt {
    text-align: center;
    background-color: #f8f9fa;
    font-size: 12px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding: 1px 0 4px;
  }
  .fixed_banner > dl dd {
    display: flex;
    flex-grow: 1;
    padding-bottom: 1px;
  }
  .fixed_banner .tel {
    width: 50%;
    position: relative;
  }
  .fixed_banner .tel::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    top: 0px;
    bottom: 0px;
    right: -1px;
    margin: auto 0;
    background-color: #b3bfd7;
  }
  .fixed_banner .map {
    width: 50%;
  }
  .fixed_banner .map p {
    padding-left: 5px;
  }
  .fixed_banner .map .close {
    display: none;
  }
  .fixed_banner .map .close::before {
    display: none;
  }
  .fixed_banner .map.active .open {
    display: none;
  }
  .fixed_banner .map.active .close {
    display: flex;
  }
  .fixed_banner .popup {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 100%;
    background-color: #fff;
  }
  .fixed_banner .popup:has(.content.active) {
    border-top: 1px solid #b3bfd7;
  }
  .fixed_banner .popup .content {
    font-size: min(2.45vw, 10px);
    max-width: 500px;
    margin: 0 auto;
    padding: 2em;
    display: none;
    transition: all 0.3s ease;
  }
  .fixed_banner .popup .content.active {
    display: block;
  }
  .fixed_banner .popup .content .iAddress {
    font-size: 1.4em;
    justify-content: center;
    margin-bottom: 10px;
  }
  .fixed_banner .popup .content .time_sheet {
    margin-bottom: 10px;
  }
  .fixed_banner .popup .content .time_sheet .tbl {
    font-size: max(7.75px, 1em);
  }
  .fixed_banner .popup .content .iVehical {
    display: flex;
    justify-content: space-between;
  }
  .fixed_banner .popup .content .iVehical .note {
    font-size: 1.2em;
  }
  .fixed_banner .popup .content .iVehical .note > span {
    position: relative;
    display: flex;
    align-items: center;
  }
  .fixed_banner .popup .content .iVehical .note > span::before {
    content: "";
    display: inline-block;
    width: 1.6667em;
    aspect-ratio: 1/1;
    margin-right: 0.4167em;
    background: url("../images/ic_vehicle.png") no-repeat center/cover;
  }
  .fixed_banner .popup .content .iVehical .link-map {
    font-size: 1em;
  }
  .fixed_banner .popup .content .iVehical .link-map a {
    text-decoration: none;
    font-size: 1.2em;
    color: var(--main-color);
  }
  .fixed_banner .popup .content .iVehical .link-map a > span {
    position: relative;
    display: flex;
    align-items: center;
  }
  .fixed_banner .popup .content .iVehical .link-map a > span::before {
    content: "";
    display: inline-block;
    width: 1.3333em;
    aspect-ratio: 32/44;
    margin-right: 0.4167em;
    background: url("../images/idx_ic_address.png") no-repeat center/cover;
  }
  .copyright {
    padding: 14px 0;
  }
  .copyright .textwidget p {
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  .copyright .textwidget span {
    display: block;
  }
}
@media only screen and (max-width: 360px) {
  .fixed_banner p::before {
    margin-right: 2px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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