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

.menu_toggle {
  background-color: #fff;
  position: fixed;
  top: var(--wrapper);
  bottom: 0px;
  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 ul li {
  position: relative;
  overflow: hidden;
}
.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 .ttl {
  color: var(--main-color);
}
.menu_toggle .inside li {
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .ttl + ul {
    display: flex !important;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle .inside .ft_link {
    padding: 20px 10px 20px;
    font-size: 10px;
  }
  @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;
      }
    }
  }
  .menu_toggle .inside .ft_link .ttl {
    position: relative;
    pointer-events: auto;
    margin-top: 1em;
    margin-bottom: 10px;
    --left: 1.5em;
  }
  .menu_toggle .inside .ft_link li {
    border-bottom: 1px dashed #ccc;
  }
  .menu_toggle .inside .ft_link li a {
    color: var(--clr1);
  }
  .menu_toggle .inside .ft_link .menu01 .ttl {
    margin-top: 0;
  }
}

#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 {
  background-color: var(--main-color);
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--clr2);
}
@media only screen and (min-width: 769px) {
  .hamburger-btn {
    display: none;
  }
  .hamburger-btn:hover {
    background-color: var(--clr1);
  }
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 19px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}

@media only screen and (max-width: 768px) {
  .ft_link .menu_catch > ul > li {
    margin-bottom: 0;
  }
  .ft_link li {
    margin-bottom: 0;
  }
  .ft_link li a {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ft_link .menu_catch > ul > li > a::before {
    top: 19px;
    background-color: var(--clr1);
  }
  .ft_link .menu_catch li.is_ttl_second > a {
    color: white;
    background-color: var(--main-color);
  }
  .menu_toggle .inside .ft_link li.is_ttl {
    --left:28px;
    position: relative;
  }
  .menu_toggle .inside .ft_link li.is_ttl > a {
    pointer-events: unset;
  }
  .menu_toggle .inside .ft_link li.is_ttl > ul > li:first-child {
    border-top: 1px dashed #ccc;
  }
  .menu_toggle .inside .ft_link li.is_ttl > ul > li:last-child {
    border-bottom: none;
  }
  .menu_toggle .inside .ft_link li.is_ttl:not(.rotate) {
    padding-bottom: 0.5em;
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .inside .ft_link li.is_ttl.rotate::before {
    transform: rotate(0deg);
  }
  .menu_toggle .inside .ft_link li.is_ttl::before, .menu_toggle .inside .ft_link li.is_ttl::after {
    content: "";
    display: block !important;
    position: absolute;
    top: 2em;
    right: 1em;
    margin: auto;
    background-color: var(--main-color);
    transition: 0.3s all;
    width: calc(var(--left) / 2);
    height: 2px;
    z-index: 2;
  }
  .menu_toggle .inside .ft_link li.is_ttl::before {
    transform: rotate(90deg);
  }
  .ft_link .menu_catch li.is_ttl_second > ul > li:first-child {
    border-top: 1px dashed #ccc;
  }
  .ft_link .menu_catch li.is_ttl_second > ul > li:last-child {
    border-bottom: none;
  }
  .ft_link .menu_catch li.is_ttl_second > a {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .ft_link .menu_catch li.is_ttl > a {
    margin-bottom: 0;
  }
}
/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  figure {
    text-align: center;
  }
  .totop {
    bottom: 55px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    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 {
    font-size: 10px;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 220px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    padding-right: 2em;
    font-size: 1.4em;
  }
  .btn-group .btn.style01 a::after, .btn-group .btn.style02 a::after {
    right: 10px;
  }
  .btn-group .btn.style01.md, .btn-group .btn.style02.md {
    min-width: 100px;
  }
  .btn-group .btn.style01.md a, .btn-group .btn.style02.md a {
    min-height: 45px;
    font-size: 14px;
  }
  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;
  }
}
@media only screen and (max-width: 768px) {
  .flex_gr {
    --size-mg: 5px;
    justify-content: center;
  }
  .flex_gr.col-2 .item, .flex_gr.col-3 .item, .flex_gr.col-4 .item, .flex_gr.col-5 .item {
    margin: var(--size-mg);
    width: calc(50% - 2 * var(--size-mg));
  }
}
@media only screen and (max-width: 430px) {
  .flex_gr.col-2 .item, .flex_gr.col-3 .item, .flex_gr.col-4 .item, .flex_gr.col-5 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.keep-col-2-sp .item {
    width: calc(50% - 2 * var(--size-mg));
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header {
    font-size: 10px;
  }
  .right_head {
    width: 0;
  }
  .social {
    --size-h-item: 4em;
    right: 10px;
    top: calc((var(--wrapper) - var(--size-h-item)) / 2);
    position: absolute;
  }
  .social .item:not(:last-child) {
    margin-right: 10px;
  }
  .social .btn_en {
    width: var(--size-h-item);
  }
  .social .btn_en .ttl {
    display: none;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 130px);
    width: auto;
    margin-left: 10px;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 45px;
  }
  .idx_gallery ul li .img {
    width: 225px;
    height: 500px;
    background-size: 100% auto;
  }
  footer {
    position: relative;
    z-index: 1;
    padding: 280px 0 0;
  }
  footer::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    left: 0;
    top: 0;
    width: 100%;
    height: 250px;
    background: url(../images/ft_img01_sp_750.jpg) no-repeat center/cover;
  }
  footer .ft_logo {
    margin-bottom: 25px;
    max-width: 255px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .infor_address {
    text-align: center;
  }
  footer .btn-group {
    justify-content: center;
  }
  footer .ft_row {
    flex-wrap: wrap;
    justify-content: center;
    font-size: min(2.5vw, 10px);
  }
  footer .ft_row .infor_tel02 {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1em;
  }
  footer .ft_row .infor_btn {
    margin-top: 15px;
    width: 100%;
    font-size: 1em;
  }
  footer .ft_info {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .ft_info .box_r {
    display: none;
  }
  footer .ft_info .box_l {
    padding-left: 0;
    padding-right: 0;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 45px;
    transition: transform 0.3s ease-in-out;
  }
  .fixed_banner p {
    font-weight: normal;
    font-size: 13px;
    line-height: 1;
  }
  .fixed_banner p::before {
    height: 1.4em;
  }
  .fixed_banner p::before {
    margin-bottom: 5px;
  }
  .fixed_banner > div {
    width: calc((100% - 45px) / 4);
    border-right: none;
  }
  .copyright {
    position: relative;
    z-index: 1;
    padding: 40px 0px 70px;
  }
  .copyright::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -1;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 100%;
    background: url(../images/ft_bg_sp.jpg) repeat-x left top/375px auto;
  }
  .copyright::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: url(../images/ft_bg_sp.jpg) repeat-x left bottom/375px auto;
  }
  .copyright .textwidget p {
    text-align: center;
  }
  .time_sheet table {
    font-size: min(2.5vw, 9px);
  }
}
@media only screen and (max-width: 430px) {
  footer {
    padding-top: 250px;
  }
  footer::before {
    height: 220px;
    background-image: url(../images/ft_img01_sp.jpg);
    background-position: right center;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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