@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 {
  position: fixed;
  top: var(--h_header);
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--h_header));
  padding: 0px 0px 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.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;
  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: 4.2em;
  height: 2.7em;
  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: 2px;
  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: 0.1em;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 0.9em;
}
#nav-icon span:nth-child(4) {
  top: 1.6em;
}
#nav-icon.open span:nth-child(1) {
  top: 1.1em;
  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: 1.1em;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  width: var(--h_header);
  height: var(--h_header);
  position: fixed;
  top: 2em;
  right: 2em;
  z-index: 10;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.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;
  background-color: #b69b31;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: #8d7515;
  }
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 1px;
}

@media only screen and (min-width: 769px) and (max-width: 1300px) {
  #nav-icon {
    height: 2.55em;
  }
  #nav-icon span:nth-child(4) {
    top: 1.7em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  #nav-icon {
    height: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle {
    background-color: #b39b24;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .hamburger-btn {
    top: 0;
    right: 5px;
  }
  .hamburger-btn .button-toggle {
    font-size: 8px;
  }
  .hamburger-btn .button-toggle #menu_btn {
    letter-spacing: 0.05em;
  }
  #nav-icon {
    height: 2.2em;
  }
  #nav-icon.open {
    height: 2.8em;
  }
  .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;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
  }
  .ft_link li {
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link a {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 11px;
    font-size: 14px;
  }
  .ft_link a::before {
    top: 17px;
    width: 5px;
    height: 5px;
  }
  .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;
  }
  .key {
    margin-top: 60px;
  }
  .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: 2;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
  .TabContainer .TabPager >div{width: calc(50% - 1px);margin-right: 1px;}
  .TabContainer .TabPager > div::before {
    bottom: -1.625em;
    width: 1.8125em;
    height: 1.6875em;
  }
  .TabContainer .TabPager > div .tt {
    padding: 0.6em 0.2em;
    font-size: min(20px, 3.2vw);
    letter-spacing: 0;
  }
  .TabContainer .TabContent .content > div {
    padding-top: 25px;
  }
}

/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header {
    --h_header: 60px;
  }
  .ovh header .header_top, header.active .header_top {
    padding-top: 0;
  }
  .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: 295px;
    width: calc(100% - 100px);
    margin-left: 10px;
    -webkit-transform: none;
            transform: none;
  }
  .time_sheet .note {
    margin-top: 5px;
    margin-left: 0px;
    font-size: 13px;
  }
  .time_sheet table {
    font-size: min(14px, 3.5vw);
  }
  .time_sheet table th, .time_sheet table td {
    padding-left: 0.1em;
    padding-right: 0.1em;
    width: 9.5%;
  }
  .time_sheet table th:first-child, .time_sheet table td:first-child {
    width: auto;
    padding-left: 0.5%;
    letter-spacing: 0.05em;
  }
  .time_sheet table th:last-child, .time_sheet table td:last-child {
    width: 15%;
    padding-right: 1em;
    letter-spacing: -2px;
  }
  footer {
    padding: 0;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 90px;
    right: 5px;
  }
  .totop .icon {
    width: 52px;
    height: 52px;
    background-position: 38% 12%;
    background-size: 94% auto;
  }
  .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: 60px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .fixed_banner.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed_banner .tt01 {
    border-width: 1px;
    margin-bottom: 0.1em;
    padding-bottom: 0.5em;
  }
  .fixed_banner > div {
    width: 50%;
    height: 100%;
    padding: 2.5em 1.5em 1em;
    font-size: min(7px, 1.8vw);
  }
  .fixed_banner .tel {
    background-color: #ff8552;
    background-image: unset;
  }
  .fixed_banner .tel .tt01 {
    margin-bottom: 0.5em;
  }
  .fixed_banner .mail {
    background-color: #364a86;
    background-image: unset;
  }
  .fixed_banner .mail .tt01 {
    margin-bottom: 0.4em;
  }
  .ft_map {
    height: 299px;
  }
  .copyright {
    display: block;
    padding-top: 16px;
    padding-bottom: 73px;
  }
  .copyright .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .idx_gallery ul li .img {
    width: 220px;
  }
}
@media only screen and (max-width: 580px) {
  .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: 5px;
    max-width: 130px;
  }
  .copyright .textwidget {
    margin-top: 5px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    text-align: center;
    font-size: 12px;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/