/* 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: 18px;
    --ttl_size: 26px;
    --wrapper: 65px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.menu_toggle {
  background-color: var(--clr-beige6);
  position: fixed;
  top: var(--wrapper);
  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 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 .ft_link {
  padding: 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;
    }
  }
}

#nav-icon {
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
#nav-icon span {
  background-color: var(--main-color);
  display: block;
  position: absolute;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: var(--x);
}
#nav-icon span:nth-child(4) {
  top: calc(100% - 2px);
}
#nav-icon.open span:nth-child(1) {
  top: var(--x);
  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: var(--x);
  width: 0%;
  left: 50%;
}
@media only screen and (min-width: 769px) {
  #nav-icon {
    width: 6em;
    height: 24px;
    --x: 11px;
  }
  #nav-icon span {
    height: 2px;
  }
}
@media only screen and (max-width: 768px) {
  #nav-icon {
    width: 35px;
    height: 17px;
    --x: 7px;
  }
  #nav-icon span {
    height: 1px;
  }
}

.hamburger-btn {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-btn .button-toggle {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.hamburger-btn #menu_btn {
  margin-top: 0.6667em;
  line-height: 1;
  color: var(--main-color);
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn {
    top: -0.3em;
    right: 2.5em;
  }
  .hamburger-btn .button-toggle:hover #nav-icon span {
    background-color: var(--clr2);
  }
  .hamburger-btn .button-toggle:hover #menu_btn {
    color: var(--clr2);
  }
  .hamburger-btn #menu_btn {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    top: 1px;
    right: 5px;
  }
  .hamburger-btn #menu_btn {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .menu_toggle .menu-child {
    position: relative;
  }
  .menu_toggle .menu-child::after {
    content: "";
    position: absolute;
    width: 15px;
    aspect-ratio: 3/2;
    background: var(--main-color);
    top: 18px;
    right: 5px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transition: all 0.3s ease;
  }
  .menu_toggle .menu-child.rotate::after {
    transform: rotate(180deg);
  }
  .menu_toggle .menu-child > a {
    font-size: calc(var(--fs-base) - 2px);
    margin-bottom: 0;
    padding-left: 10px;
  }
  .menu_toggle .menu-child > a::before {
    content: none;
  }
  .menu_toggle .menu-child > ul {
    padding: 0 10px;
  }
  .menu_toggle .menu-child > ul > li a {
    font-size: calc(var(--fs-base) - 4px);
    position: relative;
    border-top: 0;
    padding-left: 20px;
  }
  .menu_toggle .menu-child > ul > li a::before {
    top: 12px;
    left: 10px;
  }
  .menu_toggle .menu-child.lv2 > a {
    font-size: calc(var(--fs-base) - 4px);
    margin-bottom: 0;
  }
  .menu_toggle .inside .ft_link {
    padding-left: 0;
    padding-right: 0;
  }
  .ft_link .title {
    display: none;
  }
  .ft_link li {
    margin-bottom: 0;
  }
  .ft_link a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    font-size: calc(var(--fs-base) - 2px);
    border-top: 1px solid rgb(var(--clr1-rgb)/0.5);
  }
  .ft_link .sub-menu > li:last-child a {
    border-bottom: 0;
  }
  .ft_link .sub-menu a {
    border-bottom: 1px dashed rgb(var(--clr1-rgb)/0.5);
  }
  .ft_link .menu01 > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .ft_link .menu01 > ul > li {
    width: 50%;
  }
  .ft_link .menu01 > ul > li a {
    display: flex;
    align-items: center;
  }
  .ft_link .menu01 > ul > li a::before {
    content: none;
  }
  .ft_link .menu01 > ul > li:nth-child(odd) a {
    border-right: 1px solid rgb(var(--clr1-rgb)/0.5);
  }
  .ft_link .menu02 > ul > li:last-child {
    border-bottom: 1px solid rgb(var(--clr1-rgb)/0.5);
  }
  .ft_link .menu-child7 > ul > li:last-child a {
    border-bottom: 0 !important;
  }
  .ft_link .menu-child7 > ul > li > a {
    border-bottom: 1px dashed rgb(var(--clr1-rgb)/0.5) !important;
  }
  .ft_link .menu-child7 > a {
    border-width: 0;
  }
  .ft_link .menu-child7.rotate > a {
    border-bottom: 1px dashed rgb(var(--clr1-rgb)/0.5) !important;
  }
}
/* 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;
  }
}
@media only screen and (max-width: 360px) {
  :root {
    --fs-base: 16px;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header.active .logo,
  .ovh header .logo {
    max-width: 25.4em;
    top: -0.8em;
  }
  header {
    font-size: min(2.8125vw, 10px);
  }
  .header_top {
    width: calc(100% - 15em);
    align-items: center;
    height: var(--wrapper);
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: 28em;
    width: auto;
    transform: none;
    top: 0.1em;
    left: -0.4em;
  }
  .header_top .logo a {
    width: calc(100% - 1.5em);
  }
  .h_instagram {
    width: 2.7em;
  }
  footer {
    padding: 20px 0 40px;
  }
  footer::after {
    top: calc(round(down, 14.3229166667vw, 1px) * -1);
  }
  footer .ft_logo {
    width: clamp(265px, 60vw, 464px);
    margin-bottom: 20px;
  }
  footer .idx_tel.ft_tel {
    margin-bottom: 20px;
  }
  footer .idx_time_sheet {
    margin-bottom: 20px;
  }
  footer .ft_banner {
    max-width: 280px;
    margin: 0 auto;
  }
  .totop {
    bottom: 10px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .bnr_corona {
    width: min(84vw, 315px);
    aspect-ratio: 315/65;
    bottom: 5px;
    right: 60px;
  }
  .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 {
    font-size: 12px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
  }
  .copyright {
    display: block;
    padding: 0 0 75px;
  }
  .copyright .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .copyright .wrap {
    max-width: 300px;
    margin: auto;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgb(var(--main-color-rgb)/0.5);
    padding-bottom: 10px;
  }
  .copyright .textwidget {
    margin-top: 10px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    text-align: center;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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