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

body.ovh header::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 88;
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0.1;
}

.menu_toggle {
  background-color: #fff;
  position: fixed;
  --pd: 30px;
  top: var(--pd);
  left: var(--pd);
  border-radius: calc(var(--border-radius) * 2);
  z-index: 99;
  width: calc(100% - var(--pd) * 2);
  height: calc(100vh - var(--pd) * 2);
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle .hamburger-btn {
  position: absolute;
  right: 1.875em;
  top: 1.25em;
  width: 4.375em;
  height: 4.375em;
}
.menu_toggle .hamburger-btn .button-toggle {
  background-color: #f7f7f7;
  box-shadow: none;
}
.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: 39px 20px 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 {
  width: 1.75em;
  height: 0.9375em;
  position: relative;
  margin: 0 auto 13%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  opacity: 0.5;
}
.nav-icon span {
  background-color: #bfb3a5;
  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: 3px;
}
.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 7px;
}
.nav-icon span:nth-child(4) {
  top: 11px;
}
.nav-icon.open span:nth-child(1) {
  top: 11px;
  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: 11px;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  aspect-ratio: 1/1;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: var(--border-radius);
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: rgba(216, 198, 176, 0.5);
  }
}
.hamburger-btn .button-toggle .menu_btn {
  color: #7e7977;
  font-size: 0.75em;
  text-align: center;
  line-height: 1;
  font-family: var(--f-jp);
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .hamburger-btn {
    height: 50px;
    top: 5px;
  }
  .menu_toggle .inside .ft_link {
    padding: 39px 20px 40px;
    font-size: 16px;
  }
  .menu_toggle {
    --pd: 15px;
  }
  .menu_toggle .hamburger-btn {
    font-size: 14px;
    height: 50px;
    width: 50px;
  }
  .menu_toggle a span {
    display: inline-block;
  }
  .menu_toggle .lv2 ul {
    background-color: rgba(107, 158, 178, 0.8);
  }
  .menu_toggle .lv2 li {
    padding: 0 10px;
  }
  .menu_toggle .lv2 li a,
  .menu_toggle .lv2 li p.title {
    display: block;
    position: relative;
    color: #fff;
    font-size: 13px;
    padding: 10px 10px 10px 25px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  }
  .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 .title {
    margin-bottom: 1em;
  }
  .ft_link a {
    display: block;
  }
  .ft_link .link_list > div {
    margin-bottom: 15px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
  }
  .ft_link .link_list > div:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* 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;
  }
  .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;
  }
  p,
  li {
    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 {
    padding: 15px 15px;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 80px);
    width: auto;
    margin-left: 10px;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 40px;
  }
  .ft_gr_banner {
    padding: 60px 0px;
  }
  .ft_gr_banner .flex p {
    max-width: calc(50% - 10px);
  }
  footer {
    padding: 60px 0 60px;
  }
  footer::before {
    background-image: url(../images/ft_bg_sp.jpg);
    height: 100%;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_info .ft_logo {
    margin: 0 auto;
    max-width: 290px;
  }
  footer .ft_info .sub {
    width: 100%;
    margin: 0 auto 40px;
    max-width: 290px;
  }
  footer .ft_gr {
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 640px;
    justify-content: space-between;
  }
  footer .ft_gr > p {
    width: calc(50% - 5px);
    max-width: 317px;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 65px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 60px;
    transform: translateY(100%);
    font-size: min(9px, 2.3vw);
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner > div {
    height: 100%;
    width: 25%;
  }
  .fixed_banner > div > p {
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    letter-spacing: 0.025em;
  }
  .fixed_banner > div > p .tt::before {
    margin-bottom: 0.5em !important;
    font-size: 0.9em;
  }
  .copyright {
    display: block;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .copyright .textwidget p {
    margin-top: 0;
    text-align: center;
  }
  .idx_gallery {
    font-size: min(0.7em, 2vw);
  }
}
@media only screen and (max-width: 480px) {
  .fixed_banner > div > p .tt br {
    display: block !important;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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