@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: #fff;
  position: fixed;
  top: var(--h-hd);
  left: 0px;
  width: 100%;
  height: calc(100vh - var(--h-hd));
  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 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;
}
#nav-icon {
  width: 4.2em;
  height: 2.7em;
  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: #716246;
  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: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 0.7em;
}
#nav-icon span:nth-child(4) {
  top: 1.4em;
}
#nav-icon.open span:nth-child(1) {
  top: 1.1em;
  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: 1.1em;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  position: relative;
  top: 0.6em;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn:hover #nav-icon span {
    background-color: var(--main-color);
  }
  .menu_toggle .inside .ft_link{padding: 10px 20px 10px;}
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.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) {
  #nav-icon {
    width: 35px;
  }
  .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;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 12px;
    font-weight: normal;
  }
  .menu_toggle .ft_link {
    padding: 20px 20px 120px;
  }
  .ft_link .title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .ft_link li {
    padding: 8px 0px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link a {
    display: block;
    font-size: 14px;
  }
  .ft_link a::before {
    font-size: 1.3em;
    top: 0.475em;
  }
  .ft_link .menu01, .ft_link .menu02, .ft_link .menu03, .ft_link .menu04 {
    margin-bottom: 15px;
  }
}
/* 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;
  }
  .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,
  li {
    line-height: 2;
  }
  p {
    margin-bottom: 13px;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
  .btn a {
    font-size: 16px;
  }
  .btn-group .btn {
    margin: 5px;
    width: 100%;
  }
  .btn-group .btn:last-child {
    margin-right: 5px;
  }
  .TabContainer .TabPager {
    width: 100%;
    flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 0;
    margin-bottom: 4em;
    font-size: min(8.75px, 2vw);
  }
  .TabContainer .TabPager > div {
    min-height: 6em;
  }
  .TabContainer .TabPager > div::before {
    bottom: -2em;
    width: 1.7em;
    height: 2.1em;
  }
   .TabContainer .TabPager > div:nth-last-child(-n+2){margin-top: 2em;}
  .TabContainer .TabPager > div .tt {
    font-size: 1.8em;
    padding: 0.5em 0 0.5em 0.5em;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header {
    --h-hd: 60px;
  }
  header.active .header_top, .ovh header .header_top {
    padding-top: 0;
  }
  .header_top {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0 20px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: 250px;
    width: calc(100% - 90px);
    -webkit-transform: none;
            transform: none;
  }
  .header_top .logo img {
    width: auto;
  }
  .right_head {
    width: auto;
  }
  .h-line {
    margin: 0 0.9em 0 0.9em;
  }
  footer .ft-menu01 {
    padding: 5px 0 40px;
  }
  footer .ft-menu02 {
    padding: 50px 0;
  }
  footer .ft_logo {
    max-width: 350px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  footer .ft_info {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    padding-left: 0;
  }
  footer .ft-traffic {
    width: 100%;
    margin: 20px auto 0;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  footer .ft-menu02 .ft-time{
    margin-top: 30px;
  }
  .ft-time .time-tl{
    font-size: 18px;
    line-height: 1.5;
  }
  .tbl-bg{
    font-size: min(10px, 1.9vw);
  }
  .ft-time .col-time{
    display: table;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 584px;
  }
  .ft-time .col-time:last-child{margin-bottom: 0;}
  .ft-traffic {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px -0.5em 0;
    font-size: min(10px, 2.6vw);
    border-top: 1px dotted #ccc;
  }
  .ft-traffic .item {
    width: 100%;
    margin: 0.5em 0;
    padding: 0 0 0.5em 0;
    background-color: transparent;
    border-width: 0;
    border-bottom: 1px dotted #ccc;
    text-align: left;
  }
  .ft-traffic .traffic-tl {
    margin-bottom: 0;
  }
  .ft-traffic .traffic-img {
    margin-bottom: 1em;
    display: none;
  }
  .ft-traffic .traffic-txt{
    display: block;
    min-height: auto;
  }
  .box-info dl {
    font-size: 16px;
    --w: 85px;
    margin-bottom: 10px;
  }
  .box-info dt, .box-info dd {
    letter-spacing: 0.05em;
  }
  .box-info a {
    letter-spacing: 0.05em;
  }
  .totop {
    bottom: 105px;
    right: 5px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
  .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: 100px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    font-size: min(10px, 2.7vw);
  }
  .fixed_banner.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed_banner > div {
    width: 33.33%;
    height: 50px;
  }
  .fixed_banner > div > p {
    font-size: 1.2em;
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    line-height: 1.5;
  }
  .fixed_banner > div > p .tt::before {
    margin-bottom: 0;
    margin-right: 0.6em;
    font-size: 0.9em;
  }
  .fixed_banner .tel p {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(105, 72, 50, 0.5)), to(rgba(170, 96, 56, 0.5)));
    background-image: linear-gradient(90deg, rgba(105, 72, 50, 0.5) 0%, rgba(170, 96, 56, 0.5) 100%);
  }
  .fixed_banner .tel p .tt::before {
    margin-bottom: 0;
  }
  .fixed_banner .web p {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(105, 72, 50, 0.5)), to(rgba(170, 96, 56, 0.5)));
    background-image: linear-gradient(90deg, rgba(105, 72, 50, 0.5) 0%, rgba(170, 96, 56, 0.5) 100%);
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0;
  }
  .fixed_banner .online p {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(105, 72, 50, 0.5)), to(rgba(170, 96, 56, 0.5)));
    background-image: linear-gradient(90deg, rgba(105, 72, 50, 0.5) 0%, rgba(170, 96, 56, 0.5) 100%);
  }
  .fixed_banner .online p .tt::before {
    margin-bottom: 0;
  }
   .fixed_banner .f_line,  .fixed_banner .f_yt{
    width: 50%;
   }
   .fixed_banner .f_line p,  .fixed_banner .f_yt p{
    font-size: 1.5em;
   }
   .fixed_banner .f_line p tt:before, .fixed_banner .f_yt p .tt:before{font-size: 0.8em;}
  .ai-chat {
    right: 5px;
    bottom: 105px;
    height: 16em;
    max-width: 28em;
    width: calc(25% - 1.5em);
    max-width: 100%;
    position: absolute;
    -webkit-transition: position 0.3s ease, left 0.3s ease, bottom 0.3s ease;
    transition: position 0.3s ease, left 0.3s ease, bottom 0.3s ease;
  }
  .ai-chat.active {
    right: 60px;
    position: fixed;
  }
  .ai-chat .box-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ai-chat figure {
    width: 7.4em;
  }
  .ai-chat .bnr-tl {
    padding-left: 0;
  }
  .ai-chat .bnr-tl .label {
    font-size: 0.8em;
    width: 5em;
    padding: 0.1428571429em 0.2em;
    top: 0.3em;
    right: -0.5em;
  }
  .fix-bnr {
    bottom: 105px;
    left: 5px;
    width: calc(75% - 55px - 2em);
    position: absolute;
  }
  .fix-bnr.active {
    position: fixed;
  }
  .fix-bnr .item {
    height: 16em;
    max-width: 100%;
  }
  .fix-bnr .item .box-in {
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .fix-bnr .item figure {
    width: 6.4em;
  }
  .fix-bnr .item .bnr-tl {
    letter-spacing: 0.05em;
    font-size: 2.4em;
    width: 100%;
    padding-left: 0;
  }
  .ai-chat, .fix-bnr {
    font-size: min(5px, 0.85vw);
  }
  .ai-chat.active, .fix-bnr.active {
    position: fixed;
  }
  .under .ai-chat, .under .fix-bnr {
    bottom: 15px;
  }
  .under .ai-chat.active, .under .fix-bnr.active {
    bottom: 105px;
  }
  .ft-bnr .bnr-it {
    width: calc(50% - 10px);
    margin: 5px;
  }
  .copyright {
    display: block;
    padding-top: 15px;
    padding-bottom: 189px;
  }
  .copyright .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .copyright .grits img {
    max-width: 100px;
  }
  .copyright .textwidget {
    padding-left: 10px;
    margin-left: 10px;
  }
  .copyright .textwidget p {
    font-size: 12px;
  }
  .idx_gallery {
    padding: 30px 0;
  }
  .idx_gallery .list .img img {
    max-width: min(250px, 60vw);
  }
}
@media only screen and (max-width: 450px) {
  .tbl-time th, .tbl-time td{width: 7.5%;}
  .tbl-time th:first-child, .tbl-time td:first-child{width: auto;}
  .copyright {
    padding-bottom: 185px;
  }
  .ft-traffic .traffic-tl{font-size: 1.7em;}
  .ft-bnr .bnr-it {
    width: 100%;
    margin: 5px auto;
  }
  .time_sheet {
    width: 100%;
  }
  .time_sheet .tb-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .time_sheet .tb-scroll table {
    width: 640px;
  }
  .time_sheet .tbl_note {
    font-size: 12px;
    color: var(--main-color);
  }
}
@media only screen and (max-width: 370px) {
  .ai-chat {
    width: calc(25% - 1.5em);
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/