/* 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;
  }
  @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 .title {
    position: relative;
    pointer-events: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    color: #646463;
    padding-left: 0;
    line-height: 1.6em;
    margin-bottom: 0 !important;
    font-weight: 600;
  }
  .menu_toggle .inside .ft_link .title:not(.rotate) {
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .inside .ft_link .title.rotate::before {
    transform: rotate(0deg);
  }
  .menu_toggle .inside .ft_link .title::before, .menu_toggle .inside .ft_link .title::after {
    content: "";
    display: block !important;
    position: absolute;
    top: calc(50% - 1px);
    right: 0.5em;
    margin: auto;
    background-color: var(--main-color);
    transition: 0.3s all;
    width: 12px;
    height: 2px;
    z-index: 2;
    left: initial;
  }
  .menu_toggle .inside .ft_link .title::before {
    transform: rotate(90deg);
  }
  .menu_toggle .inside .ft_link li:not(.menu-item-has-children) {
    border-bottom: 1px dashed #ccc;
  }
  .menu_toggle .inside .ft_link .menu01 .ttl {
    margin-top: 0;
  }
}

#nav-icon {
  width: 15px;
  height: 14px;
  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: 1px;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 6px;
}
#nav-icon span:nth-child(4) {
  top: 12px;
}
#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 {
  --ham: #fff;
  width: 35px;
  height: 35px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover {
    background-color: var(--clr1);
  }
}
.hamburger-btn #nav-icon span {
  background-color: var(--ham);
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 20px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  border: 1px solid var(--ham);
  border-radius: 50%;
  transition: all 0.3s;
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}
.hamburger-btn .button-toggle.active {
  --ham: var(--main-color);
}

header.active .hamburger-btn,
.ovh header .hamburger-btn {
  top: 12px;
  right: 10px;
}
header.active .button-toggle,
.ovh header .button-toggle {
  --ham: var(--main-color);
}

/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  figure {
    text-align: center;
  }
  .totop {
    bottom: 70px;
    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: 8.75px;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 280px;
  }
  .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;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .sp_links {
    width: 82px;
    height: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    right: 67px;
    z-index: 1;
  }
  .sp_links li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .sp_links li a:hover {
    opacity: 1;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: 180px;
    width: auto;
    margin-left: 19px;
    transform: none;
    margin-top: 19px;
  }
  .header_top .logo img {
    width: auto;
    content: url(../images/shared_logo_sp.png);
  }
  header.active,
  .ovh header {
    padding: 0 10px;
  }
  header.active .header_top,
  .ovh header .header_top {
    padding: 0;
  }
  header.active .logo,
  .ovh header .logo {
    margin: 0;
  }
  header.active .logo img,
  .ovh header .logo img {
    width: auto;
    content: url(../images/shared_header_logo.png);
    filter: unset;
  }
  header.active .sp_links,
  .ovh header .sp_links {
    top: 12px;
    right: 60px;
  }
  .menu_toggle .en {
    display: none;
  }
  .menu_toggle .ft_link .menu01 ul li.menu-item-home a {
    color: transparent;
  }
  .menu_toggle .ft_link .menu01 ul li.menu-item-home a .en {
    display: inline-flex;
    color: #242423;
    text-transform: uppercase;
  }
  .menu_toggle .ft_link .menu01 ul li,
  .menu_toggle .ft_link .menu02 ul li {
    margin: 0;
  }
  .menu_toggle .ft_link .ttl_small {
    margin: 15px 0;
    opacity: 0;
  }
  .menu_toggle .ft_link .ttl.rotate ~ .clear .ttl_small {
    opacity: 1;
  }
  .menu_toggle .ft_link ul li a {
    font-weight: 500;
    font-size: 14px;
    padding: 8px 8px 8px 14px;
    display: block;
    width: 100%;
  }
  .menu_toggle .ft_link .menu01 ul li a {
    font-size: 16px;
  }
  .menu_toggle .ft_link .menu01 ul li a::before {
    left: 0;
    top: 1.2em;
  }
  .menu_toggle .ft_link .menu01.menu01_1 ul li {
    border-bottom: 1px solid #ccc;
  }
  .menu_toggle .ft_link .menu01.menu01_1 ul li a {
    background: url(../images/ico_btn.svg) calc(100% - 12px) 50%/6px no-repeat;
  }
  .menu_toggle .ft_link .menu02 ul li a::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #646463;
    position: absolute;
    left: 0;
    top: 20px;
  }
  footer {
    padding-bottom: 60px;
  }
  footer .ft_map {
    height: 299px;
  }
  footer .ft_bg {
    padding: 19px 0;
    background-color: #fff;
  }
  footer .ft_bg .inner {
    padding: 0;
  }
  footer .ft_bg .inner::after {
    display: none;
  }
  footer .copyright p {
    text-align: center;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 360px) {
  .header_top .logo {
    margin-left: 10px;
    max-width: 150px;
  }
  .hamburger-btn {
    right: 10px;
  }
  .sp_links {
    right: 56px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/