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

.menu_toggle {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding: 28px 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  background-color: rgba(0, 46, 73, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle p {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .menu_toggle {
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .menu_toggle .inside {
    -webkit-overflow-scrolling: touch;
    /* Lets it scroll lazy */
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    overflow: auto;
    border-radius: 10px;
  }
  .menu_toggle .inside .menu_link {
    padding: 40px 15px;
    display: flex;
    flex-direction: column-reverse;
  }
  .menu_toggle .inside .menu_link > ul li.menu_gr:not(:last-child) {
    margin-bottom: 20px;
  }
  .menu_toggle .inside .menu_link > ul li.menu_child {
    padding: 20px 15px;
  }
  .menu_toggle .inside .menu_link > ul li.menu_child:not(:last-child) {
    margin-bottom: 20px;
  }
  .menu_toggle .inside .menu_link > ul li.menu_child > a {
    font-size: 18px;
    border-bottom: 0;
    padding: 0;
    margin-bottom: 15px;
  }
  .menu_toggle .inside .menu_link > ul li.menu_child > a .en {
    font-size: 12px;
  }
  .menu_toggle .inside .menu_link > ul a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
  }
  @supports (-webkit-touch-callout: none) {
    .menu_toggle .inside .menu_link {
      /* Specific to iOS devices */
      padding-bottom: 120px;
    }
  }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .menu_toggle .inside .menu_link {
        /* Safari */
        padding-bottom: 120px;
      }
    }
  }
  .menu_toggle .inside .menu_banner {
    font-size: 7px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
  .menu_toggle .inside .menu_banner > div {
    width: 33.3333333333%;
  }
  .menu_toggle .inside .menu_banner > div:not(:last-child) {
    border-right: 1px solid #eaeaea;
  }
  .menu_toggle .inside .menu_banner > div p .ic {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 768px) and (max-width: 480px) {
  .menu_toggle .inside .menu_banner > div {
    width: 50%;
  }
  .menu_toggle .inside .menu_banner > div:not(:first-child) {
    border-right-width: 0;
  }
  .menu_toggle .inside .menu_banner > div:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
  }
}

#nav-icon {
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  mix-blend-mode: soft-light;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(4) {
  bottom: 0;
}
#nav-icon span:nth-child(1), #nav-icon span:nth-child(4) {
  opacity: 1;
  visibility: visible;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 1.2em;
  opacity: 0;
  visibility: hidden;
}
#nav-icon.open span {
  height: 1px;
  mix-blend-mode: unset;
}
#nav-icon.open span:nth-child(1), #nav-icon.open span:nth-child(4) {
  opacity: 0;
  visibility: hidden;
}
#nav-icon.open span:nth-child(2), #nav-icon.open span:nth-child(3) {
  opacity: 1;
  visibility: visible;
}
#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
@media only screen and (min-width: 769px) {
  #nav-icon {
    width: 4em;
    height: 0.8em;
  }
}
@media only screen and (max-width: 768px) {
  #nav-icon {
    width: 25px;
    height: 8px;
  }
}

.hamburger-btn {
  position: fixed;
  width: calc(var(--wrapper) - 1em);
  height: calc(var(--wrapper) - 1em);
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger-btn .button-toggle.active {
  background-color: var(--clr-grey-01);
  filter: unset;
}
.hamburger-btn .button-toggle.active #nav-icon {
  width: 2.2em;
  height: 2.2em;
}
.hamburger-btn .button-toggle.active #nav-icon span {
  background-color: #A3A3A3;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--clr1);
  }
}
@media only screen and (min-width: 769px) {
  .hamburger-btn {
    top: 3em;
    right: 3em;
  }
  .hamburger-btn:has(.button-toggle.active) {
    top: 40px;
  }
  .hamburger-btn .button-toggle.active {
    width: calc(var(--wrapper) - 3.2em);
    height: calc(var(--wrapper) - 3.2em);
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    top: 15px;
    right: 15px;
  }
}

@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;
  }
  .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;
  }
}
@media only screen and (max-width: 768px) {
  .flex_gr {
    --size-mg: 5px;
    justify-content: center;
  }
  .flex_gr.col-2 .item, .flex_gr.col-3 .item, .flex_gr.col-4 .item, .flex_gr.col-5 .item {
    margin: var(--size-mg);
    width: calc(50% - 2 * var(--size-mg));
  }
}
@media only screen and (max-width: 430px) {
  .flex_gr.col-2 .item, .flex_gr.col-3 .item, .flex_gr.col-4 .item, .flex_gr.col-5 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.col-2-sp.set-fs {
    font-size: min(2vw, 7px);
  }
  .flex_gr.col-2-sp .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-2-sp .item a {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .header_top {
    width: max-content;
    align-items: center;
    height: 60px;
    padding: 0 20px 0 15px;
    border-bottom-right-radius: 10px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: 100%;
    width: auto;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 40px;
  }
  footer {
    padding: 20px 0 40px;
  }
  footer::before {
    height: 20px;
  }
  footer .ft_info {
    margin-bottom: 0;
  }
  footer .ft_logo {
    max-width: 260px;
  }
  .totop {
    bottom: 65px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .bnr-corona {
    font-size: 7.5px;
    top: min(70vh, 480px);
    left: 5px;
  }
  .bnr-corona.active {
    top: calc(100vh - 143px);
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 60px;
    transform: translateY(100%);
    background-color: #fff;
  }
  .fixed_banner.active {
    transform: translateY(0%);
  }
  .fixed_banner > div {
    width: 33.33%;
    height: 100%;
    padding: 0 5px;
  }
  .fixed_banner > div > p {
    font-size: 12px;
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    flex-direction: column;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
  .fixed_banner .chatbot p .tt::before {
    margin-bottom: 2px;
  }
  .fixed_banner .chatbot p .tt > span {
    line-height: 1.2;
  }
  .fixed_banner .chatbot p .tt > span::after {
    margin-bottom: 0;
    margin-left: 0.25em;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 80px;
  }
  .copyright .textwidget {
    text-align: center;
  }
  .idx_gallery .item .img img {
    width: 220px;
  }
}
@media only screen and (max-width: 640px) {
  .copyright .textwidget {
    border: none;
    max-width: 300px;
    margin: auto;
    text-align: center;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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