/* 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 {
    --txt_size: 14px;
    --ttl_size: 26px;
    --line-height-default: 2;
    --wrapper: 60px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.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 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 {
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: var(--clr1);
  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: var(--y);
}
#nav-icon span:nth-child(4) {
  top: 100%;
}
#nav-icon.open span:nth-child(1) {
  top: var(--y);
  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: var(--y);
  width: 0%;
  left: 50%;
}
@media only screen and (min-width: 769px) {
  #nav-icon {
    width: max(30px, 4em);
    height: 14px;
  }
  #nav-icon span {
    --y: 7px;
  }
}
@media only screen and (max-width: 768px) {
  #nav-icon {
    width: 30px;
    height: 14px;
  }
  #nav-icon span {
    --y: 7px;
  }
}

.hamburger-btn {
  height: var(--wrapper);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-btn .button-toggle {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover #nav-icon span {
    background-color: var(--clr2);
  }
}
@media only screen and (min-width: 769px) {
  .hamburger-btn {
    width: calc(var(--wrapper) + 2em);
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    width: var(--wrapper);
  }
}

@media only screen and (max-width: 768px) {
  .ft_link .title {
    font-size: 16px;
    margin-bottom: 0.75em;
  }
  .ft_link li {
    border-bottom: 1px dashed #ccc;
  }
  .ft_link li:not(:last-child) {
    margin-bottom: 0;
  }
  .ft_link > li,
  .ft_link li.menu-child {
    border-bottom: 0;
  }
  .ft_link a {
    font-size: 14px;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ft_link .menu-child:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .ft_link .menu-child > a {
    font-size: 15px;
  }
  .ft_link .menu01 {
    margin-bottom: 30px;
  }
  .ft_link .menu02 {
    margin-bottom: 20px;
  }
  .ft_link .menu04 {
    margin-bottom: 30px;
  }
  .ft_link .menu04 a {
    padding-left: 1.25em;
    font-weight: 600;
  }
  .ft_link .menu03 a,
  .ft_link .menu04 a {
    font-size: 16px;
  }
  .menu_toggle .lv2 {
    position: relative;
  }
  .menu_toggle .lv2 > a {
    padding-right: 20px;
  }
  .menu_toggle .lv2::before, .menu_toggle .lv2::after {
    content: "";
    position: absolute;
    background-color: var(--clr1);
    transition: all 0.3s ease;
  }
  .menu_toggle .lv2::before {
    width: 14px;
    height: 2px;
    top: 21px;
    right: 5px;
  }
  .menu_toggle .lv2::after {
    height: 14px;
    width: 2px;
    right: 11px;
    top: 15px;
  }
  .menu_toggle .lv2.rotate::after {
    transform: rotate(90deg);
  }
}
/* 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: var(--line-height-default);
  }
  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;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    padding-top: 10px;
    max-width: 306px;
    width: calc(100% - 130px);
    margin-left: 4vw;
    transform: none;
  }
  footer {
    padding: 40px 0 50px;
  }
  footer::before {
    width: 100%;
    left: 0;
    background-image: url("../images/ft_bg_sp.jpg");
    background-position: center;
  }
  footer .ft_bnr {
    margin-bottom: 40px;
  }
  footer .ft_logo {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  footer .ft_tel {
    margin-bottom: 20px;
  }
  footer .ft_tel a {
    margin: 0 auto;
    font-size: 20px;
  }
  footer .ft_info {
    margin-bottom: 30px;
  }
  footer .ft_info .desc {
    text-align: center;
  }
  .totop {
    font-size: clamp(5px, 1.333vw, 10px);
    bottom: 65px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .fixed_banner {
    font-size: 5px;
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 11em;
    transform: translateY(100%);
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner > div {
    position: relative;
    width: 33.33%;
    height: 100%;
  }
  .fixed_banner > div:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 64%;
    max-height: 70px;
    top: 0px;
    bottom: 0px;
    right: -1px;
    margin: auto 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
  .fixed_banner > div > p {
    background: url(../images/fixed_banner_bg.jpg) no-repeat center/cover;
    font-size: 2.4em;
    font-weight: 400;
    line-height: 1;
    padding-right: 0.8333em;
  }
  .fixed_banner > div > p .tt::before {
    margin-right: 0.75em;
  }
  .fixed_banner .tel p .tt::before {
    width: 1.1667em;
    height: 1.1667em;
    --mask: url("../images/shared_fixed_bnr_icon01_sp.png");
  }
  .fixed_banner .mail p .tt::before {
    width: 1.2917em;
    height: 1.0417em;
    --mask: url("../images/shared_fixed_bnr_icon02_sp.png");
  }
  .fixed_banner .line p .tt::before {
    width: 1.375em;
    height: 1.2917em;
    --mask: url("../images/shared_fixed_bnr_icon03_sp.png");
  }
  .copyright {
    display: block;
    padding-top: 25px;
    font-size: clamp(5px, 1.333vw, 10px);
    padding-bottom: 80px;
  }
  .copyright .flex {
    justify-content: center;
  }
  .idx_gallery {
    padding-bottom: 40px;
  }
  .idx_gallery::before {
    width: 100%;
    left: 0;
    background-size: cover;
  }
  .idx_gallery .list {
    font-size: min(1.5625vw, 7px);
    margin-bottom: 40px;
  }
  .idx_gallery .list::before {
    font-size: 8.4375vw;
  }
  .idx_gallery .list .img img {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 639px) {
  .ft_bnr .list {
    gap: 15px 10px;
  }
  .ft_bnr .list .item {
    width: calc(50% - 5px);
  }
  .ft_bnr .list01 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 430px) {
  .copyright .flex {
    max-width: 250px;
    margin: auto;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgba(198, 101, 85, 0.5);
    padding-bottom: 10px;
    max-width: 104px;
  }
  .copyright .textwidget {
    margin-top: 10px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    text-align: center;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  :root {
    --wrapper: 60px;
  }
  #nav-icon {
    width: 30px;
    height: 14px;
  }
  #nav-icon span {
    --y: 7px;
  }
  .header_top .logo {
    max-width: 245px;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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