@charset "UTF-8";
/* CSS Document */
@media only screen and (max-width: 768px) {
  .blurFixSP {
    image-rendering: optimizeSpeed;
    /* STOP SMOOTHING, GIVE ME SPEED  */
    /* 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;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.menu_toggle {
  background-color: var(--main-color);
  position: fixed;
  top: 20px;
  right: 25px;
  width: 100%;
  height: 100%;
  height: calc(100% - 40px);
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  max-width: 900px;
  border-radius: 30px;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .menu_toggle .inside {
    overflow: auto;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    padding: 84px 90px 20px;
  }
}
@supports (-webkit-touch-callout: none) {
  .menu_toggle .inside .ft_link {
    /* Specific to iOS devices */
    padding-bottom: 120px;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside .ft_link {
      /* Safari */
      padding-bottom: 120px;
    }
  }
}
@media (769px <= width <= 1560px) {
  .menu_toggle .inside .ft_link {
    padding: 20px 60px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (769px <= width <= 1366px) {
  .menu_toggle .inside .ft_link {
    padding: 20px 30px;
  }
  .menu_toggle .inside .ft_link .title {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media (769px <= width <= 991px) {
  .menu_toggle .inside .ft_link .title {
    margin-bottom: 5px;
  }
}
.menu_toggle .ft_link .link_list > div {
  position: relative;
}
.menu_toggle .ft_link .link_list > div:last-child::after {
  display: none;
}
.menu_toggle .ft_link .link_list > div::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #fff;
}
.menu_toggle .ft_link .title {
  color: #fff;
  margin-bottom: 0.727273em;
}
.menu_toggle .ft_link a::before {
  top: 0.1875em;
  background-image: url(../images/menu_toggle_arr.png);
}
@media (769px <= width <= 1024px) {
  .menu_toggle {
    width: calc(100% - 50px);
  }
}

#nav-icon {
  width: 23px;
  height: 27px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: 3px;
}
#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) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 50%;
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.ovh .hamburger-btn {
  border: 1px solid #fff;
  z-index: 1;
}
@media only screen and (min-width: 769px) {
  .ovh .hamburger-btn {
    top: 40px;
    right: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .ovh .hamburger-btn {
    right: 30px;
    top: 30px;
  }
}

.hamburger-btn {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  overflow: hidden;
  position: fixed;
  top: 31px;
  right: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 21px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--clr3);
  }
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}
@media (769px <= width <= 1024px) {
  .hamburger-btn {
    right: 20px;
    width: 75px;
    height: 75px;
  }
  .hamburger-btn .button-toggle {
    padding-top: calc(var(--wrapper) / 2 - 24px);
  }
}
@media (769px <= width <= 991px) {
  .hamburger-btn {
    width: 70px;
    height: 70px;
  }
  .hamburger-btn .button-toggle {
    padding-top: calc(var(--wrapper) / 2 - 16px);
  }
}

@media only screen and (max-width: 768px) {
  .hamburger-btn {
    width: 60px;
    height: 60px;
    right: 10px;
    top: 10px;
  }
  .hamburger-btn .button-toggle {
    padding-top: calc(var(--wrapper) / 2 - 13px);
  }
  .menu_toggle {
    top: 20px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 40px;
  }
  .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;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
  .menu_toggle .ft_link .title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .ft_link {
    padding: 60px 20px 40px;
  }
  .ft_link a span {
    display: inline-block !important;
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link li:last-child {
    border-bottom: 0;
  }
  .ft_link a {
    display: block;
    color: #fff;
    font-size: 14px;
    width: 100%;
  }
  .ft_link .link_list > div {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .ft_link .menu01 {
    margin-bottom: 30px;
  }
}
/* 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: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .under .topic_path {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .under .topic-left .topic_path {
    padding-top: 0;
    padding-bottom: 0;
  }
  .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 .btn.style01, .btn-group .btn.style02 {
    max-width: 260px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    min-height: 60px;
    font-size: 16px;
    padding-left: 20px;
  }
  .btn-group .btn.style01 a::after, .btn-group .btn.style02 a::after {
    right: 10px;
  }
  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;
  }
  .time_sheet {
    font-size: min(16px, 2.8vw);
    margin-top: 15px;
  }
  .header_top {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    width: 35%;
    max-width: 120px;
    -webkit-transform: none;
            transform: none;
    top: 10px;
  }
  .copyright {
    margin-top: 20px;
  }
  footer {
    padding: 40px 0 50px;
  }
  footer .inner_big {
    padding-bottom: 30px;
    padding-top: 40px;
    width: calc(100% - 30px);
  }
  footer .ft_logo {
    padding-bottom: 20px;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 55px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
  .fixed_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 50px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .fixed_banner.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed_banner > div {
    width: 25%;
    height: 100%;
  }
  .fixed_banner > div > p {
    font-size: min(14px, 2.6vw);
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    text-align: left;
    letter-spacing: 0;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 1em;
    width: 2.1428571429em;
    height: 2.1428571429em;
    margin-bottom: 0 !important;
    margin-right: 0.3em;
  }
  .fixed_banner .tel p .tt::before {
    width: 1.5714285714em;
    height: 1.7857142857em;
  }
  .fixed_banner .web p .tt::before {
    height: 2.2em;
  }
  .copyright .textwidget p {
    font-size: 14px;
  }
  .idx_gallery .list .img img {
    max-width: 50vw;
  }
  .idx_gallery {
    padding-top: 10px;
  }
  .idx_gallery::after {
    top: -310px;
  }
  .idx_gallery .gallery-slider {
    height: min(455px, 55vw);
  }
}
@media only screen and (max-width: 640px) {
  .copyright .flex {
    max-width: 400px;
    margin: auto;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    max-width: 130px;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .copyright .flex {
    display: block;
  }
  .copyright .img {
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid rgba(170, 170, 170, 0.6666666667);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .copyright .textwidget p {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style_sp.css.map */