@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;
  }
  .wrapper {
    padding-top: var(--wrapper);
  }
  .btn-group .btn.style02 a {
    padding-left: 1.5em;
  }
  .btn-group .btn.style02 a span {
    display: inline-block;
  }
  .btn-group .btn.style02 a::after {
    right: 1em;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
.menu_toggle {
  background-color: #fff;
  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 20px 40px;
  margin-bottom: 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: 32px;
  height: 27px;
  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: 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: 11px;
}
#nav-icon span:nth-child(4) {
  top: 19px;
}
#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 {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 12px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .menu_toggle .lv2 .title {
    border-bottom: none;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 1.125em;
    padding: 4px 10px 4px 0px;
    position: relative;
  }
  .menu_toggle .lv2 .title::before, .menu_toggle .lv2 .title::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    width: 14px;
    height: 2px;
    right: 2%;
    top: calc(50% - 1px);
    background-color: var(--main-color);
    z-index: 2;
  }
  .menu_toggle .lv2 .title:not(.rotate)::after {
    transform: rotate(90deg);
  }
  .menu_toggle .lv2 ul {
    background-color: var(--main-color);
  }
  .menu_toggle .lv2 > a {
    display: block;
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .lv2 li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .menu_toggle .lv2 li a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 14px;
    padding-left: 1.25em;
  }
  .menu_toggle .lv2 li a::before {
    color: #fff !important;
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link li.ttl {
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .ft_link li.ttl > a {
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link li.ttl li a {
    font-size: 1em;
  }
  .ft_link li:not(.ttl) > a {
    display: block;
    padding-left: 1em;
  }
  .ft_link li:not(.ttl) > a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "・";
    color: var(--main-color);
  }
  .ft_link .menu02 {
    margin-top: 30px;
    padding-top: 22px;
  }
}
/* 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 {
    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_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .h_left {
    padding-left: 10px;
    width: calc(100% - 100px);
  }
  .header_top .logo {
    max-width: 100%;
    width: auto;
    margin-left: 10px;
    transform: none;
    padding-right: 0;
    border: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 35px;
  }
  .ft_top {
    padding: 60px 0px;
  }
  .ft_top .tt .en {
    font-size: 3em;
  }
  .ft_top .tt2 {
    font-size: 1.35em;
  }
  .ft_top .h_bnr {
    margin-top: 30px;
    justify-content: center;
    font-size: min(1.625em, 5.5vw);
  }
  .ft_top .h_bnr p {
    margin-top: 20px;
  }
  .ft_bot .wrap {
    padding: 60px 0px 20px;
  }
  .ft_bot .wrap .ft_info {
    max-width: 327px;
  }
  .ft_bot .wrap .icon {
    margin-bottom: 0;
  }
  .ft_bot .wrap .h_bnr {
    font-size: min(1em, 4vw);
  }
  .ft_bot .wrap .h_bnr p:last-child {
    margin-bottom: 0;
  }
  footer {
    padding: 0px 0 50px;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_info .des {
    margin-bottom: 30px;
    text-align: center;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  footer .ft_logo {
    margin: 0px auto 0px;
    padding-bottom: 30px;
    max-width: 290px;
  }
  footer .ft_logo a {
    margin: 0px auto 0;
  }
  .totop {
    bottom: 55px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .fixed_banner {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 50px;
    transform: translateY(100%);
    z-index: 19;
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner .h_bnr {
    max-width: 100%;
    font-size: min(1em, 3.5vw);
  }
  .fixed_banner .h_bnr p {
    width: 50%;
    height: 50px;
  }
  .fixed_banner .h_bnr p a {
    border-radius: 0;
  }
  .copyright {
    display: block;
    padding: 0px 50px;
    text-align: center;
  }
  .copyright .grits a {
    display: table;
    margin: 0px auto;
  }
  .idx_gallery ul li .img {
    width: 220px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/