@charset "UTF-8";
/* 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: 26px;
    --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 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;
}
@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 {
  width: 42px;
  height: 27px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: var(--main-color);
  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: 5px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 12px;
}
#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: #fff;
  width: calc(var(--wrapper) - 2px);
  height: calc(var(--wrapper) - 2px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover {
    background-color: var(--clr1);
  }
  .hamburger-btn:hover #nav-icon span {
    background-color: #fff;
  }
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 12px);
  padding-right: 2px;
  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) {
  .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;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
}
/* 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;
  }
  .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;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .menu_toggle .inner {
    padding-top: 30px;
    padding-bottom: 180px;
  }
  .ft_link .link_list {
    gap: 0;
    flex-direction: column-reverse;
  }
  .ft_link li {
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link a {
    font-size: 14px;
    width: 100%;
    padding: 7px 7px 7px 0px;
  }
  .ft_link .menu01 {
    width: 100%;
  }
  .ft_link .menu01 .title {
    margin-bottom: 10px;
  }
  .ft_link .menu02 {
    width: 100%;
    margin-bottom: 30px;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
    margin-bottom: 16px;
  }
  .ft_link .ttl {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
    position: relative;
    padding: 10px;
    border: 1px solid var(--main-color);
    pointer-events: auto;
  }
  .ft_link .ttl::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto 0;
    width: 14px;
    height: 2px;
    background-color: var(--main-color);
  }
  .ft_link .ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto 0;
    width: 2px;
    height: 14px;
    background-color: var(--main-color);
    transition: all 0.3s ease;
  }
  .ft_link .fmenu-col {
    margin-bottom: 13px;
  }
  .ft_link .fmenu-col:last-child {
    margin-bottom: 0;
  }
  .ft_link .fmenu-col.active > .ttl::after {
    opacity: 0;
  }
  .ft_link .fmenu-col ul {
    display: none;
    margin-top: 10px;
  }
  .ft_link .fmenu-col .fmenu-col {
    margin-top: 13px;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 10px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 100px);
    width: auto;
    transform: none;
    height: 100%;
    display: inline-block;
    padding-top: 2px;
  }
  .header_top .logo picture {
    width: 100%;
    height: 100%;
  }
  .header_top .logo a {
    line-height: 1;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header_top .logo img {
    width: auto;
    max-height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 55px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
    background-size: 20px auto;
  }
  .fixed_banner {
    opacity: 1;
    visibility: visible;
  }
  .fixed_banner .ftel {
    height: 100%;
  }
  .fixed_banner .ftel a {
    background-color: var(--main-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    height: 100%;
  }
  .fixed_banner .ftel-lb {
    font-size: 1.2em;
    color: var(--main-color);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.4166666667em;
    color: #fff;
  }
  .fixed_banner .ftel-num {
    line-height: 1;
    font-size: 2.6em;
    font-weight: 500;
    color: var(--main-color);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.1538461538em;
    letter-spacing: 0.055em;
  }
  .fixed_banner .ftel-num::before {
    content: "";
    display: inline-block;
    width: 0.6923076923em;
    height: 0.7692307692em;
    margin-right: 0.2692307692em;
    transform: translateY(0.06em);
    background: url(../images/ic-tel.png) center/contain no-repeat;
    filter: brightness(0) invert(1);
  }
  .time_sheet .note {
    margin-left: 0;
  }
  .idx_gallery {
    padding: 30px 0;
  }
  .idx_gallery .img img {
    width: 200px;
    margin: 0 5px;
  }
  footer {
    margin-bottom: 50px;
  }
  .footer-top {
    padding: 50px 0;
  }
  .footer-top .ft-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .footer-top .ft-cnt {
    font-size: 14px;
    max-width: 100%;
    width: 100%;
  }
  .footer-top .ft-logo {
    max-width: 300px;
    width: 100%;
    font-size: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top .ft-tbl {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.6em;
  }
  .footer-top .time_sheet {
    font-size: min(1.5625vw, 8px);
    max-width: 540px;
  }
  .footer-top .time_sheet .note {
    font-size: max(1.6em, 14px);
  }
  .footer-top .ft-info {
    padding-top: 20px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
  }
  .footer-top .ft-ic {
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    width: 280px;
    margin: 0 auto 15px;
  }
  .footer-top .ft-bus::before {
    margin-right: 0.8em;
  }
  .footer-top .ft-car::before {
    margin-right: 0.8em;
  }
  .footer-top .ft-btn-map {
    font-size: 14px;
    max-width: 100%;
    width: 280px;
    margin: 0 auto 20px;
  }
  .footer-top .ft-btn-map a::before {
    margin-right: 0.8em;
  }
  .footer-top .ft-btn-map span {
    padding-right: 30px;
    font-size: 15px;
  }
  .footer-top .ft-img-map {
    margin-left: 0;
    font-size: 12px;
    max-width: 100%;
  }
  .footer-menu {
    padding-top: 0;
  }
  .copyright {
    display: block;
    padding: 20px 0 15px;
    text-align: center;
  }
  .copyright .grits {
    padding-right: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright .grits::before {
    display: none;
  }
  .copyright .grits img {
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    max-width: 120px;
  }
  .copyright .textwidget {
    margin-top: 10px;
  }
  .copyright .textwidget p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 374px) {
  .totop .icon {
    transform: scale(0.8);
    transform-origin: bottom right;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
@media screen and (max-width: 768px) {
  #nav-icon {
    width: 32px;
  }
  .pc {
    display: none;
  }
	
	.time_sheet table th, .time_sheet table td{font-weight:700}
		.time_sheet table td{padding:1.25em 0.3em 1.125em}
	.time_sheet table th{padding:0.75em 0.4em}
}
@media screen and (max-width: 524px) {
  .sp425 {
    display: block;
  }
}
@media screen and (max-width: 424px) {
  .sp375 {
    display: block;
  }
	.time_sheet table{font-size:2.4em}

	.time_sheet table th:last-child, .time_sheet table td:last-child{width:23%}
	.time_sheet table .cl-red{white-space:nowrap}
}
@media screen and (max-width: 374px) {
  .sp320 {
    display: block;
  }
}

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