@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 p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
  --color: #051828;
  font-size: 14px;
}
.menu_toggle .inside .news {
  margin-bottom: 1em;
  width: 100%;
}
.menu_toggle .inside .news .flex {
  margin: 0px auto;
  align-items: center;
  max-width: 39.125em;
  border-bottom: 1px solid #d6dae1;
  padding: 6px 0px 6px;
}
.menu_toggle .inside .news .ttl {
  padding-top: 0.3em;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 1.25em;
}
.menu_toggle .inside .news ul {
  width: calc(100% - 7.7em);
}
.menu_toggle .inside .news li {
  width: auto;
}
.menu_toggle .inside .news li a {
  position: relative;
  display: flex;
  text-decoration: none;
  --w: 6.9em;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  white-space: nowrap;
  max-width: 100%;
  color: #051828;
}
.menu_toggle .inside .news li a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 0.45em;
  height: 0.55em;
  right: 0%;
  top: calc(50% - 0.2em);
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='82px' height='98px'%3E%3Cpath fill-rule='evenodd' fill='rgb(23, 58, 111)' d='M81.544,49.059 L0.294,97.965 L0.294,0.153 L81.544,49.059 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}
.menu_toggle .inside .news li a:hover {
  color: var(--clr1);
}
.menu_toggle .inside .news li a:hover .date {
  color: var(--clr1);
}
.menu_toggle .inside .news li a:hover::after {
  background-color: var(--clr2);
}
.menu_toggle .inside .news li a .date {
  position: relative;
  display: block;
  width: var(--w);
  color: var(--clr2);
  transition: all 0.3s;
}
.menu_toggle .inside .news li a .title {
  max-width: calc(100% - var(--w));
  position: relative;
  padding-right: 1em;
  text-overflow: ellipsis;
  overflow: hidden;
}
.menu_toggle .inside .ft_bnr {
  margin-bottom: 2.5em;
}
.menu_toggle .inside .ft_bnr p {
  margin-bottom: 0.625em;
}
.menu_toggle .inside .bnr {
  margin-bottom: 0.625em;
  max-width: 27.5em;
}
.menu_toggle .inside .bnr:last-child {
  margin-bottom: 0;
}
.menu_toggle .inside .ft_link {
  width: 100%;
}
.menu_toggle .inside .ft_link .title {
  color: #173a6f;
}

.nav-icon {
  width: 30px;
  height: 24px;
  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: all 0.3s;
}
.nav-icon span:nth-child(1) {
  top: 3px;
}
.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 9px;
}
.nav-icon span:nth-child(4) {
  top: 15px;
}
.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 {
  width: var(--wrapper);
  height: var(--wrapper);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  padding-top: calc(var(--wrapper) / 2 - 9px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--main-color);
  }
  .hamburger-btn .button-toggle:hover .nav-icon span {
    background-color: #fff;
  }
}

@media only screen and (max-width: 768px) {
  .key .key_text {
    width: 100%;
  }
  .banner, .ft_bnr {
    max-width: 385px;
    margin: 0px auto;
    font-size: min(14px, 3vw);
  }
  .menu_toggle .menu_row {
    padding: 20px 20px 90px;
  }
  @supports (-webkit-touch-callout: none) {
    .menu_toggle .menu_row {
      /* Specific to iOS devices */
      padding-bottom: 120px;
    }
  }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .menu_toggle .menu_row {
        /* Safari */
        padding-bottom: 120px;
      }
    }
  }
  .menu_toggle .menu_row .news {
    margin-bottom: 20px;
  }
  .menu_toggle .menu_row .news ul {
    width: calc(100% - 6em);
  }
  .menu_toggle .ft_link {
    margin-bottom: 30px;
  }
  .menu_toggle .ft_link .title {
    margin-bottom: 5px;
  }
  .menu_toggle .ft_link a {
    display: block;
  }
  .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;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .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: -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: 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;
  }
  .idx_bnr {
    padding: 40px 20px;
  }
  .right_head {
    width: 0;
    padding: 0;
  }
  header.active .logo, .ovh header .logo {
    margin-left: 20px;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 80px);
    width: auto;
    margin-left: 25px;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 35px;
  }
  .header_top .ins {
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_top .ins p {
    width: 60px;
    height: 100%;
  }
  .header_top .ins a {
    width: 60px;
    height: 100%;
  }
  .header_top .ins a::after {
    margin-top: 0;
    background-color: var(--clr);
  }
  .ft_top {
    padding: 0px 0px 60px;
  }
  footer {
    padding: 60px 0 0px;
  }
  footer .ft_info,
  footer .ft_right {
    width: auto;
    margin: 0 auto;
    max-width: 464px;
  }
  footer .ft_info .des,
  footer .ft_right .des {
    margin-bottom: 25px;
    text-align: center;
  }
  footer .ft_right {
    margin-top: 20px;
  }
  footer .ft_logo {
    max-width: 320px;
    margin: 0px auto;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 80px;
    left: 20px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .ovh .fixed_banner, .fixed_banner.active {
    transform: translateY(0%);
  }
  .ovh .fixed_banner .tel, .ovh .fixed_banner .web, .ovh .fixed_banner .map {
    opacity: 0;
    visibility: hidden;
  }
  .time_sheet table {
    font-size: min(1em, 3.1vw);
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 60px;
    z-index: 21;
  }
  .fixed_banner > div {
    width: calc((100% - 60px) / 3);
    height: 100%;
  }
  .fixed_banner > div > p {
    font-size: min(13px, 3vw);
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    flex-direction: row;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
    margin-right: 5px;
  }
  .fixed_banner > div.hamburger-btn {
    width: 60px;
    right: auto;
    top: auto;
  }
  .fixed_banner .map p .tt::before {
    font-size: 0.7em;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .copyright .flex {
    justify-content: center;
  }
  .idx_gallery {
    padding-top: 60px;
  }
  .idx_gallery .item {
    max-width: 40vw;
  }
  .idx_gallery .list .img.mt {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 639px) {
  .idx_bnr .bnr {
    max-width: 385px;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 640px) {
  .ft_bnr .icon {
    width: 8.9em;
  }
  .copyright .flex {
    max-width: 380px;
    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: 10px;
    max-width: 130px;
  }
  .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;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/