@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: var(--wrapper);
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--wrapper));
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .title,
.menu_toggle .ttl-sm {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .menu_toggle .ttl-sm {
    margin-bottom: 0;
  }
  .menu_toggle .right {
    margin-top: 20px;
  }
  .menu_toggle .mn02 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle .menu-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu_toggle .menu-left .title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .menu_toggle .menu-left .left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .menu_toggle .menu-left .mn02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .menu_toggle .menu-left .right {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
}
.menu_toggle .inside .ft_link {
  padding: 20px 20px 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;
    }
  }
}

#nav-icon {
  width: 42px;
  height: 26px;
  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: #74987d;
  display: block;
  position: absolute;
  height: 1px;
  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;
}
#nav-icon span:nth-child(1) {
  top: 3px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 10px;
}
#nav-icon span:nth-child(4) {
  top: 17px;
}
#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);
}
#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%;
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  #nav-icon {
    width: 35px;
  }
}

.hamburger-btn {
  position: absolute;
  top: 29px;
  right: 78px;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger-btn .button-toggle #menu_btn {
  color: #74987d;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover .button-toggle #menu_btn {
    color: #edb5b5;
  }
  .hamburger-btn:hover #nav-icon span {
    background-color: #edb5b5;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .hamburger-btn {
    top: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .hamburger-btn {
    right: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .hamburger-btn {
    top: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger-btn {
    top: 15px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .hamburger-btn {
    right: 25px;
  }
  .hamburger-btn .button-toggle #menu_btn {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .hamburger-btn {
    top: -4px;
    right: 20px;
  }
  .hamburger-btn .button-toggle #menu_btn {
    font-size: 12px;
  }
  .menu_toggle .arr {
    background-color: #e9f5df;
    padding: 10px;
    margin-bottom: 0;
    min-height: 40px;
    color: #74987d;
    pointer-events: unset !important;
    position: relative;
  }
  .menu_toggle .arr::before, .menu_toggle .arr::after {
    position: absolute;
    content: "";
    background-color: #74987d;
    display: block !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu_toggle .arr::before {
    top: 12px;
    right: 17px;
    width: 2px;
    height: 16px;
  }
  .menu_toggle .arr::after {
    width: 16px;
    height: 2px;
    top: 19px;
    right: 10px;
  }
  .menu_toggle .arr.rotate::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .menu_toggle .menu-right {
    margin-top: 20px;
  }
  .menu_toggle .menu-right .title {
    font-size: 1.375em;
  }
  .menu_toggle .ft_link ul {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .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;
  }
  #nav-icon {
    width: 35px;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link a {
    display: inline-block;
    width: 100%;
    padding-left: 10px;
  }
  .ft_link a span {
    display: inline-block;
  }
  .ft_link a::before {
    position: absolute;
    top: 0;
    left: 0;
  }
  .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-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;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 250px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    font-size: 1.8em;
    min-height: 60px;
  }
  .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;
  }
  .right_head {
    padding: 0;
    width: auto;
    background-color: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding-right: 75px;
  }
  .time_sheet .note {
    padding-left: 0;
    margin-top: 15px;
  }
  .time_sheet .note span {
    display: inline-block;
    margin-right: 10px;
  }
  .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 {
    max-width: 62%;
    top: 0;
    margin-left: 10px;
    -webkit-transform: none;
            transform: none;
    width: auto;
  }
  .header_top .logo img {
    width: auto;
    max-height: 40px;
  }
  footer {
    padding: 60px 0 120px;
  }
  footer .time_sheet {
    font-size: min(16px, 3vw);
  }
  footer .ft-timeSheet {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  footer .ft_info {
    width: 100%;
    margin: 0 auto;
  }
  footer .ft_info .des {
    text-align: center;
  }
  footer .ft_info .ft-tel {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 120px;
    right: 5px;
    width: 55px;
    height: 55px;
  }
  .totop .icon {
    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: 50%;
    height: 100%;
  }
  .fixed_banner > div > p {
    font-size: 14px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
    margin-right: 0.6em;
  }
  .fixed_banner p .tt {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
  .fixed_banner .chatbox {
    display: none !important;
  }
  .fixed_banner .ins p {
    background-image: url(../images/ins-bg-sp.jpg);
  }
  .copyright {
    padding-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .idx_gallery .item .img {
    max-width: 50vw;
  }
}
@media only screen and (max-width: 480px) {
  .time_sheet .note span {
    display: block;
  }
}
@media only screen and (max-width: 430px) {
  .copyright {
    display: block;
  }
  .copyright .grits {
    display: table;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .copyright .textwidget {
    text-align: center;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style_sp.css.map */