@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;
    --line-height-p: 1.8;
    --size-ico-arr-22: 18px;
  }
  body {
    background-image: url(../images/body_bg_sp.jpg);
    background-size: 768px auto;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
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;
}
.menu_toggle .inside .link_list {
  margin: 0px auto;
  width: 100%;
}
.menu_toggle .inside .link_list .title {
  margin-bottom: 1.68em;
  color: #2e2e2e;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.menu_toggle .inside .link_list li {
  margin-bottom: 4px;
}
.menu_toggle .inside .link_list a {
  width: 100%;
  background-color: #f7f7f7;
  padding: 0.8107em 1em;
  border-radius: 0.2857em;
  color: #2e2e2e;
  transition: var(--value-transition);
  background-size: 1.2857em auto;
  background-position: right 4.25% center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg id='Group_755' data-name='Group 755' transform='translate(-3 162) rotate(-90)'%3E%3Ccircle id='Ellipse_1' data-name='Ellipse 1' cx='9' cy='9' r='9' transform='translate(144 3)' fill='%23f87790'/%3E%3Cpath id='Path_52447' data-name='Path 52447' d='M142.207,10.858l4,4,4-4' transform='translate(6.793 -0.858)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .link_list a:hover {
    background-color: rgb(221, 218, 218);
  }
}
.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 (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside .ft_link {
      /* Safari */
      padding-bottom: 120px;
    }
  }
}

#nav-icon {
  width: 1.8em;
  height: 1.8em;
  position: relative;
  margin: 0 auto 0px;
  background: url(../images/nav_icon.svg) no-repeat center/cover;
}

.hamburger-btn {
  width: 8.8em;
  height: 8.5em;
  position: fixed;
  top: calc((var(--wrapper) - 8.5em) / 2);
  right: 15px;
  z-index: 10;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  --mask: url(../images/hamburger_btn_mask_bg.svg);
  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);
}
.hamburger-btn .button-toggle.active {
  background-color: #bcbcbc;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover {
    background-color: var(--cl-hv-main);
  }
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}

.menu_toggle .inside .ttl_en {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
}

@media only screen and (min-width: 769px) and (max-height: 650px) {
  .menu_toggle .inside .link_list .title {
    margin-bottom: 1.2em;
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    font-size: 5px;
    right: 1.5em;
  }
  .menu_toggle .inside .ttl_en {
    font-size: 17px;
  }
  .menu_toggle .inside .link_list .title {
    font-size: 20px;
  }
  .menu_toggle .inside .ft_link {
    font-size: 10px;
  }
  .menu_toggle .inside .ft_link a {
    padding-right: 35px;
    font-size: 1.4em;
    background-position: right 10px center;
  }
  .menu_toggle .inside .ft_link .menu01,
  .menu_toggle .inside .ft_link .menu02 {
    margin-bottom: 30px;
  }
  .menu_toggle .inside .ft_link .title {
    margin-bottom: 1em;
  }
  .menu_toggle .inside .lv2 ul {
    background-color: rgba(107, 158, 178, 0.8);
  }
  .menu_toggle .inside .lv2 li {
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
  }
  .menu_toggle .inside .lv2 li a,
  .menu_toggle .inside .lv2 li p.title {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 10px 10px 25px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  }
  .menu_toggle .inside .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: 15px;
  }
  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;
  }
  .btn a::after {
    right: 10px;
  }
  .btn-group:not(.flex_gr) .btn {
    margin-right: auto;
    margin-left: auto;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 300px;
  }
  .btn-group .btn.style01 a, .btn-group .btn.style02 a {
    padding-right: 35px;
    min-height: 60px;
  }
  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.keep-col-2-sp .item {
    width: calc(50% - 2 * var(--size-mg));
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  .ovh .right_head {
    padding-right: 65px;
  }
  body:not(.ovh) .right_head {
    padding-right: 10px;
  }
  body:not(.ovh) .hamburger-btn {
    display: none;
  }
  .header_top {
    width: 100%;
    align-items: center;
    height: 60px;
    padding: 0;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 190px);
    width: auto;
    margin-left: 10px;
    transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 40px;
  }
  .right_head {
    padding-right: 65px;
    font-size: 6px;
    width: auto;
  }
  .right_head .hd_social {
    font-size: clamp(7px, 1.1vw, 8px);
    margin-left: 0;
  }
  .ft_banner {
    padding: 60px 0px;
  }
  .ft_banner::before {
    height: calc(100% + 100px - 7vw);
  }
  .ft_banner .flex {
    padding: 20px 15px;
  }
  footer {
    padding: 60px 0 100px;
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_logo {
    margin-bottom: 20px;
  }
  .totop {
    bottom: 105px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 52px;
  }
  .fixed_banner {
    display: flex;
    flex-wrap: wrap;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100px;
    font-size: min(9px, 1.8vw);
  }
  .fixed_banner::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: 3;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: white;
  }
  .fixed_banner > div {
    width: 33.333333%;
    height: 50%;
    border-right: 1px solid #fff;
  }
  .fixed_banner > div.tel > p, .fixed_banner > div.web > p, .fixed_banner > div.fixed_chat_box > p {
    background-color: var(--main-color);
  }
  .fixed_banner > div.tel p .tt::before {
    background-image: url(../images/fixed_tel_ico_pink.svg);
  }
  .fixed_banner > div.web p .tt::before {
    background-image: url(../images/fixed_web_ico_pink.svg);
  }
  .fixed_banner > div.fixed_chat_box p .tt::before {
    background-image: url(../images/fixed_AI_ico_pink.svg);
  }
  .fixed_banner > div.web, .fixed_banner > div.fixed_hamburger {
    border-right: none;
  }
  .fixed_banner > div > p {
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    display: flex;
    flex-direction: row;
  }
  .fixed_banner > div > p .tt::before {
    margin-bottom: 0;
    width: 2.5em;
    height: 2.5em;
    margin-right: 0.5em;
  }
  .fixed_banner .tel {
    order: 1;
  }
  .fixed_banner .online {
    order: 2;
  }
  .fixed_banner .online br {
    display: none;
  }
  .fixed_banner .web {
    order: 3;
  }
  .fixed_banner .web02 {
    order: 4;
  }
  .fixed_banner .fixed_chat_box {
    order: 5;
  }
  .fixed_banner .fixed_hamburger {
    order: 6;
  }
  .fixed_banner .fixed_chat_box .chatbot {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .copyright .flex {
    flex-direction: column;
    align-items: center;
  }
  .copyright .banner {
    margin-bottom: 20px;
  }
  .copyright .copyright_r {
    width: 100%;
    justify-content: center;
  }
  .idx_gallery {
    font-size: min(0.7em, 3vw);
  }
  .time_sheet {
    font-size: min(1.7vw, 9px);
  }
  .infor_details {
    --size-w-dt: 5em;
  }
  .infor_details dl {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .infor_details dl dd {
    padding-left: 10px;
  }
  .infor_traffice {
    --size-w-ico: 5.8em;
    font-size: 8.94736px;
  }
}
@media only screen and (max-width: 430px) {
  .time_sheet {
    font-size: min(2.2vw, 8px);
  }
  .time_sheet table th,
  .time_sheet table td {
    width: 9.5%;
    white-space: nowrap;
  }
  .time_sheet table th:first-child,
  .time_sheet table td:first-child {
    width: 20%;
  }
  .copyright .copyright_r {
    flex-direction: column;
  }
  .copyright .copyright_r .grits {
    padding-bottom: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .copyright .textwidget {
    margin-top: 0;
  }
  .copyright .textwidget p {
    padding-left: 0;
    border-left: none;
    margin-left: 0;
  }
}
@media only screen and (max-width: 375px) {
  .right_head {
    font-size: 5px;
  }
  .header_top .logo {
    max-width: calc(100% - 175px);
  }
  .fixed_banner {
    font-size: 2.2vw;
  }
  .fixed_banner > div > p .tt {
    flex-direction: column;
  }
  .fixed_banner > div > p .tt::before {
    width: 2em;
    height: 2em;
    margin-right: 0;
    margin-bottom: 0.3em;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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