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

.menu_toggle {
  position: absolute;
  top: var(--wrapper);
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--wrapper));
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  background-color: #E0F5FF;
  z-index: -1;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
}
.menu_toggle .inside .ft_link {
  padding: 30px 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-bottom: 0.8em;
}
#nav-icon::before {
  content: "";
  display: block;
  width: 2.6em;
  height: 2.6em;
  --mask: url("../images/ic-menu.png");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--clr);
}

.hamburger-btn {
  width: 60px;
  height: var(--wrapper);
  position: fixed;
  top: 0.8em;
  right: 2.5em;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  --clr: var(--main-color);
  transition: all 0.3s ease;
}
.hamburger-btn .button-toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.hamburger-btn .button-toggle #menu_btn {
  color: var(--clr);
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}
.hamburger-btn .button-toggle.active {
  --clr: #676767;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    --clr: #014374;
  }
}

@media only screen and (max-width: 768px) {
  .menu_toggle {
    padding: 20px;
  }
  .menu_toggle .inside {
    border-radius: 10px;
  }
  .menu_toggle .lv2 li {
    padding: 0 10px;
  }
  .menu_toggle .lv2 li a,
  .menu_toggle .lv2 li p.title {
    display: block;
    position: relative;
    color: #fff;
  }
  .menu_toggle .lv2 li a::after {
    content: "›";
    display: block;
    position: absolute;
    top: 47%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
  .ft_link .link_list > div:not(:last-child) {
    margin-bottom: 25px;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) - 4px);
    margin-bottom: 20px;
  }
  .ft_link .title > span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4666666667;
    margin-bottom: 7px;
    display: block;
  }
  .ft_link ul li:has(+ li) {
    margin-bottom: 0.5em;
  }
  .ft_link a {
    display: block;
    font-size: 14px;
    padding: 1.0625em 2.625em 0.9375em 1.3125em;
    background-color: #F7F7F7;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .ft_link a::before, .ft_link a::after {
    content: "";
    font-size: max(6px, 0.625em);
    position: absolute;
    width: round(2.2em, 1px);
    height: round(2.2em, 1px);
    top: 0;
    bottom: 0;
    left: unset;
    right: 1em;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .ft_link a::before {
    background-color: #0FA9E1;
  }
  .ft_link a::after {
    --w: round(0.65em, 1px);
    transform: rotate(180deg);
    --mask: url("../images/ic-arrow.svg");
    mask-image: var(--mask);
    -webkit-mask-image: var(--mask);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: var(--w) auto;
    -webkit-mask-size: var(--w) auto;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: #fff;
  }
  .ft_link a::before, .ft_link a::after {
    margin: auto 0;
  }
}
@media only screen and (max-width: 360px) {
  .ft_link .title {
    font-size: 18px;
  }
  .ft_link a {
    font-size: 14px;
  }
}
/* 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.active .header_top,
  .ovh header .header_top {
    padding-left: 15px;
  }
  header.active .instagram-btn,
  .ovh header .instagram-btn {
    top: 0;
  }
  header {
    font-size: 8px;
  }
  header.active .header_top {
    border-radius: 0 0 5px 5px;
  }
  header.active .hamburger-btn {
    top: 0.25em;
    right: 10px;
  }
  .ovh header .hamburger-btn {
    top: 0.5em;
    right: 0;
  }
  .hamburger-btn {
    right: 0;
  }
  .header_top {
    width: calc(100% - 20px);
    align-items: center;
    height: var(--wrapper);
    padding: 1em 0;
    padding-right: calc(var(--wrapper));
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 60px);
    width: auto;
    transform: none;
    margin-left: 5px;
  }
  .header_top .logo img {
    width: auto;
    max-height: 40px;
  }
  .header_top .instagram-btn {
    font-size: 1em;
    position: relative;
    top: 0.2em;
  }
  .header_top .instagram-btn a {
    border-radius: 5px;
    width: 4em;
    height: 4em;
    background: url("../images/instagram_bg_sp.jpg") no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_top .instagram-btn a .tt {
    position: relative;
  }
  .header_top .instagram-btn a .tt::before {
    content: "";
    display: block;
    width: 3em;
    height: 3em;
    margin: auto;
    background: url("../images/ic-instagram.png") no-repeat center/cover;
  }
  footer {
    padding: 60px 0 50px;
  }
  footer .ft_info {
    max-width: 557px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  footer .ft_logo {
    display: table;
    margin: 0 auto;
    width: 93%;
    min-width: 278px;
    margin-bottom: 30px;
  }
  footer .el_tel {
    margin-bottom: 30px;
  }
  footer .time_sheet {
    font-size: min(1.875vw, 10px);
  }
  header.active ~ .totop {
    bottom: 55px;
  }
  header.active ~ .totop.end-page {
    bottom: 115px;
  }
  .totop {
    font-size: 8px;
    bottom: 10px;
    left: 15px;
  }
  .totop[data-state=top] {
    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 {
    font-size: 12px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt::before {
    margin: auto 0;
    margin-right: 0.5em;
    font-size: 0.9em;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .copyright .textwidget p {
    line-height: 1.5;
    text-align: center;
  }
  .idx_gallery .list .img img {
    width: 220px;
  }
}
@media only screen and (max-width: 480px) {
  .totop {
    bottom: calc(100svh - 156vw - 45px);
  }
  .copyright .textwidget {
    max-width: 200px;
    margin: 0 auto;
  }
  .copyright .textwidget p span {
    display: inline-block;
  }
}
@media only screen and (max-width: 360px) {
  .fixed_banner > div > p {
    font-size: 10px;
  }
  .totop {
    bottom: calc(100svh - 156vw - 55px);
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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