@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: #f9f7f3;
  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;
}
.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 */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
}
.menu_toggle .inside .ft_link {
  padding: 40px 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: 2.625em;
  height: 1.6875em;
  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: var(--clr1);
  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: 0.3125em;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 0.75em;
}
#nav-icon span:nth-child(4) {
  top: 1.1875em;
}
#nav-icon.open span:nth-child(1) {
  top: 0.6875em;
  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: 0.6875em;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover #nav-icon span {
    background-color: var(--main-color);
  }
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  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 (min-width: 769px) and (max-width: 1400px) {
  
  .menu_toggle .inside .ft_link{padding: 20px 20px 0px;}
}
@media only screen and (max-width: 768px) {
  .menu_toggle .lv2 ul {
    background-color: rgba(107, 158, 178, 0.8);
  }
  .menu_toggle .lv2 li {
    padding: 0 10px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  }
  .menu_toggle .lv2 li a,
  .menu_toggle .lv2 li p.title {
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    font-size: 13px;
    padding: 10px 10px 10px 25px;
  }
  .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;
  }
  .menu_toggle .inside .ft_link {
    padding-bottom: 120px;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
    margin-bottom: 0;
  }
  .ft_link li {
    margin-bottom: 0;
  }
  .ft_link li.tl_mn {
    margin-bottom: 15px;
  }
  .ft_link li.tl_mn.sp_mb{margin-bottom: 0;}
  .ft_link li.tl_mn > a {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }
  .ft_link li a {
    border-bottom: 1px dashed #ccc;
    display: block;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 5px;
  }
  .ft_link li a::before {
    top: 17px;
  }
  .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;
  }
  .key {
    margin-top: 120px;
  }
  .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;
  }
  .cm_btn a {
    font-size: 16px;
  }
  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 {
    font-size: min(14px, 4vw);
  }
  .TabContainer .TabPager > div {
    padding: 0.25em 0 0.25em;
  }
  .TabContainer .TabPager > div::before {
    right: 0.5em;
    width: 1.8em;
    height: 1.8em;
  }
  .TabContainer .TabPager > div p {
    font-size: 1.5em;
    padding: 0.5em 1.5em 0.7em;
    line-height: 1.4;
  }
  .TabContainer .TabPager > div.active p {
    padding-right: 1.5em;
    padding-left: 0.5em;
    padding-top: 0.7em;
    padding-bottom: 0.6em;
  }
  .TabContainer .TabContent .content > div {
    padding: 35px 3%;
  }
}
@media only screen and (max-width: 450px) {
  .TabContainer .TabPager {
    font-size: min(12px, 3.5vw);
  }
  .TabContainer .TabPager > div {
    padding: 0;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header {
    --h_header: 120px;
  }
  header.active,
  .ovh header {
    --h_header: 65px;
  }
  header.active .header_top,
  .ovh header .header_top {
    padding-top: 0;
  }
  header.active .logo,
  .ovh header .logo {
    max-width: 210px;
  }
  .header_top {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 48px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .right_head {
    width: 40px;
  }
  .logo {
    max-width: 230px;
    width: calc(100% - 80px);
    -webkit-transform: none;
            transform: none;
  }
  .h_gr_tel {
    position: absolute;
    top: 0;
    left: 0;
    font-size: min(15px, 3.8vw);
  }
  .h_gr_tel .h_btn {
    max-width: 100%;
    width: 100%;
    height: 50px;
  }
  .ft_address {
    margin-left: 105px;
  }
  .ft_address .des {
    font-size: 16px;
    line-height: 1.7;
  }
  .p_tel {
    margin-top: 5px;
  }
  .p_tel a {
    font-size: min(30px, 7vw);
    letter-spacing: 0.05em;
    padding-left: 0.8em;
  }
  .p_tel a::before {
    top: 0.18em;
  }
  .ft_gr {
    display: table;
    margin: 0 auto;
  }
  .ft_map {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  footer {
    padding: 50px 0 50px;
    background-image: url(../images/ft_bg_sp.jpg);
  }
  footer .ft_logo {
    max-width: 410px;
    margin-left: 0;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 55px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 68px;
  }
  .time_sheet .note {
    margin-top: 0.5em;
    margin-left: 0.5em;
    line-height: 1.6;
  }
  .time_sheet table {
    font-size: min(14px, 3.95vw);
  }
  .time_sheet table th, .time_sheet table td {
    width: 11.5%;
  }
  .time_sheet table th:first-child, .time_sheet table td:first-child {
    padding-left: 0;
    width: auto;
  }
  .time_sheet table th:last-child, .time_sheet table td:last-child {
    width: 12%;
  }
  .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: 33.33%;
    height: 100%;
  }
  .fixed_banner > div > p {
    font-size: min(12px, 3.5vw);
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fixed_banner > div > p::before {
    margin-right: 0.5em;
  }
  .fixed_banner .mail p::before, .fixed_banner .web p::before {
    font-size: 0.9em;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .copyright .grits img {
    max-width: 110px;
  }
  .copyright .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .copyright .textwidget {
    padding-left: 10px;
    margin-left: 10px;
  }
  .copyright .textwidget p {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .idx_gallery ul li .img {
    width: 220px;
  }
}
@media only screen and (max-width: 639px) {
  .copyright {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .copyright .flex {
    margin: auto;
    display: block;
  }
  .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: 10px;
    max-width: 115px;
  }
  .copyright .textwidget {
    margin-top: 10px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    text-align: center;
  }
  .copyright .textwidget p {
    line-height: 1.5;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
  .time_sheet .note {
    margin-left: 2.4vw;
  }
  .time_sheet table td, .time_sheet table th {
    width: 9.4%;
  }
  .time_sheet table td:first-child, .time_sheet table th:first-child {
    width: auto;
    padding-left: 0;
  }
  .time_sheet table td:last-child, .time_sheet table th:last-child {
    width: 10%;
  }
}
@media only screen and (max-width: 639px) {
  .time_sheet .note .tt_left, .time_sheet .note .tt_right{width: 100%;}
  .time_sheet .note .tt_left{margin-bottom: 10px;}
  .time_sheet .note .tt_right{letter-spacing: 0;}
}
@media only screen and (max-width: 450px) {
  .ft_address {
    margin-left: 22vw;
    margin-top: -15vw;
  }
}
@media only screen and (max-width: 370px) {
.time_sheet .note .br{display: none;}
}
@media only screen and (max-width: 350px) {
  .copyright .textwidget p {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/