/* 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: 26px;
    --wrapper: 60px;
  }
  .wrapper {
    background-size: 4px 4px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
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: 18px;
    margin-bottom: 10px;
  }
  .menu_toggle .inside .ft_link .menu01 a,
  .menu_toggle .inside .ft_link .menu-child > a {
    font-size: 16px;
  }
  .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 var(--clr-gray1);
  }
  .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: 6px;
  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: 50px;
    right: 5px;
  }
  .totop .icon {
    width: 40px;
    height: 40px;
  }
  .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: 250px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    padding: 0.5em 1.75em 0.5em;
  }
  .btn-group .btn.style01 a::before, .btn-group .btn.style01 a::after, .btn-group .btn.style02 a::before, .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;
  }
  .ovh header {
    background-color: #fff;
  }
  .ovh header .header_top,
  .ovh header .hamburger-btn {
    top: 0;
  }
  .header_top {
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 12px);
    height: 100%;
    top: 6px;
    border-radius: 30px;
    padding: 5px 10px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: clamp(206px, 55vw, 412px);
  }
  .idx_gallery ul li .img {
    width: 225px;
    height: 500px;
    background-size: 100% auto;
  }
  footer {
    --h-img: clamp(180px, 54vw, 690px);
  }
  footer .ft_logo {
    max-width: 231px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  footer .ft_about .wrap {
    background-size: 4px 4px;
    padding: 40px 10px;
  }
  footer .ft_address {
    margin-bottom: 25px;
  }
  footer .ft_address .btn-group {
    margin-left: auto;
    margin-right: auto;
  }
  footer .info_address {
    font-size: 14px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  footer .box_time_sheet {
    margin-bottom: 20px;
  }
  footer .ft_map {
    margin-bottom: 25px;
    height: 199px;
  }
  footer .ft_bnr {
    font-size: clamp(6.5px, 1.5vw, 0.625em);
    flex-wrap: wrap;
    gap: 10px;
  }
  footer .ft_bnr .bnr {
    border-radius: 10px;
    width: calc(50% - 5px);
  }
  footer .page_link {
    padding: 30px 0 60px;
    gap: 15px;
  }
  footer .page_link .item {
    width: 100%;
  }
  footer .ft_menu {
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    padding: 20px 0 60px;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 46px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    gap: 2px;
  }
  .fixed_banner > div {
    width: calc(19% - 1.5px);
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner p {
    font-size: min(3.125vw, 12px);
  }
  .fixed_banner p::before {
    font-size: 0.875em;
    margin-bottom: 0;
    margin-right: 5px;
  }
  .fixed_banner .tel {
    width: calc(43% - 1.5px);
  }
  .fixed_banner .popup {
    width: calc(100% - 20px);
    right: 10px;
  }
  .fixed_banner .popup .panel {
    height: 18em;
    padding: 10px;
    border-radius: 10px;
  }
  .fixed_banner .popup .panel[data-content=time] .box_time_sheet {
    font-size: min(1.8vw, 8.75px);
  }
  .copyright {
    text-align: center;
  }
  .grecaptcha-badge {
    bottom: 95px !important;
  }
}
@media only screen and (max-width: 430px) {
  footer .ft_bnr {
    font-size: 7.5px;
    gap: 15px;
  }
  footer .ft_bnr .bnr {
    width: 100%;
  }
}
@media only screen and (max-width: 360px) {
  .fixed_banner .popup .panel[data-content=time] .box_time_sheet {
    font-size: 5.25px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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