@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: #eceee3;
  background: -webkit-gradient(linear, left bottom, left top, from(#eceee3), to(#fff));
  background: linear-gradient(0deg, #eceee3 0%, #fff 100%);
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100vh;
  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;
}
@supports (-webkit-touch-callout: none) {
  .menu_toggle .inside .ft_link {
    /* Specific to iOS devices */
    padding-bottom: 120px;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside .ft_link {
      /* Safari */
      padding-bottom: 120px;
    }
  }
}

#nav-icon {
  width: 4.4em;
  height: 3.4em;
  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: var(--main-color);
  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: 0.2em;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 1.6em;
}
#nav-icon span:nth-child(4) {
  top: 3em;
}
#nav-icon.open span:nth-child(1) {
  top: 1.1em;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-22deg);
          transform: rotate(-22deg);
}
#nav-icon.open span:nth-child(4) {
  top: 1.1em;
  width: 0%;
  left: 50%;
}

.hamburger-btn {
  position: fixed;
  top: 3.3em;
  right: 2.8em;
  z-index: 10;
}
.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;
}
@media only screen and (min-width: 769px) {
  .hamburger-btn .button-toggle:hover #nav-icon span {
    background-color: #C59C6A;
  }
}
.hamburger-btn .button-toggle #menu_btn {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .hamburger-btn {
    top: 3.4em;
    font-size: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .hamburger-btn {
    top: 1.85em;
    right: 1.8em;
  }
  #nav-icon span:nth-child(1) {
    top: 0;
  }
  #nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 1.2em;
  }
  #nav-icon span:nth-child(4) {
    top: 2.4em;
  }
  .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;
  }
  .ft_link {
    padding: 90px 20px 120px;
    font-size: 14px;
  }
  .ft_link .title {
    font-size: calc(var(--ttl_size) + 0px);
    display: none;
  }
  .ft_link li {
    padding: 0.5714285714em 0;
    margin-bottom: 0;
    border-bottom: 1px dashed #ccc;
  }
  .ft_link li.mn_tl {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0.1428571429em;
    margin-bottom: 0;
  }
  .ft_link li.mn_tl > a {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 1.1428571429em;
  }
  .ft_link li.mn_tl > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.625em;
    width: 0.75em;
    height: 0.5em;
    background-color: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin: auto;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .ft_link li.mn_tl > a.rotate::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .ft_link li.sub_tl {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .ft_link li.sub_tl > a {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.5714285714em;
    padding-top: 0.5714285714em;
    margin-bottom: 0;
    padding-left: 1.2142857143em;
  }
  .ft_link li.sub_tl > a::before {
    top: 1.2857142857em;
  }
  .ft_link li.sub_tl > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.7142857143em;
    width: 0.8571428571em;
    height: 0.5714285714em;
    background-color: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin: auto;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .ft_link li.sub_tl > a.rotate::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .ft_link a {
    display: block;
    padding-left: 0.7142857143em;
  }
  .ft_link a::before {
    top: 0.6428571429em;
    left: 0;
  }
  .ft_link .menu01 {
    margin-bottom: 0;
  }
  .ft_link .list_mn01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ft_link .list_mn01 li {
    width: 48%;
  }
}
@media only screen and (max-width: 375px) {
  .ft_link {
    font-size: min(14px, 3.8vw);
  }
}
/* 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;
  }
  .under .key {
    margin-top: 60px;
  }
  .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 {
    font-size: 16px;
    padding-right: 55px;
  }
  .btn a::before, .btn a:after {
    width: 40px;
    height: 40px;
  }
  .btn03 a {
    min-height: 5em;
    font-size: 16px;
    padding: 0.6315789474em 3.2em 0.5263157895em 0.8em;
  }
  .btn03 a::before, .btn03 a::after {
    right: 1em;
    width: 2em;
    height: 2em;
  }
  .TabContainer .TabPager {
    min-height: 60px;
  }
  .TabContainer .TabPager > div {
    height: 56px;
    padding: 10px 10px;
  }
  .TabContainer .TabPager > div p {
    font-size: min(18px, 5vw);
  }
  .TabContainer .TabPager > div.active {
    height: 60px;
  }
  .TabContainer .TabContent > .content {
    border-top-width: 3px;
  }
  .TabContainer .TabContent > .content > div {
    padding: 40px 5% 40px;
  }
  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;
  }
  header {
    --h_hd: 60px;
  }
  .header_top {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0 0 3px;
  }
  .header_top p {
    margin-bottom: 0;
  }
  .header_top .logo {
    max-width: calc(100% - 80px);
    width: auto;
    margin-left: 10px;
    -webkit-transform: none;
            transform: none;
  }
  .header_top .logo img {
    width: auto;
    max-height: 50px;
  }
  .b_tel {
    font-size: min(7px, 1.9vw);
  }
  .b_tel .txt_time {
    margin-top: 0.5em;
    font-size: 1.6em;
  }
  .b_mail {
    max-width: 330px;
    height: 7.5em;
    font-size: min(10px, 3vw);
  }
  .b_mail a .icon::before {
    top: 0.3em;
  }
  .block_contact {
    padding: 30px 6%;
  }
  .block_contact::before {
    display: none;
  }
  .block_contact > div:first-child {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--clr1);
  }
  .block_contact .idx_logo {
    width: 90%;
  }
  footer {
    padding: 50px 0 50px;
    background-image: url(../images/ft_bg_sp.jpg);
  }
  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }
  footer .ft_map iframe {
    height: 100%;
  }
  footer .ft_link {
    width: auto;
  }
  .totop {
    bottom: 55px;
    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: 50px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    font-size: min(10px, 3vw);
  }
  .fixed_banner.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed_banner > div {
    height: 100%;
  }
  .fixed_banner > div > p {
    line-height: 1;
  }
  .fixed_banner > div > p .tt {
    font-size: 1.2em;
  }
  .fixed_banner > div > p .tt::before {
    font-size: 0.9em;
  }
  .fixed_banner .tel, .fixed_banner .mail, .fixed_banner .consultation {
    width: 24%;
  }
  .fixed_banner .tel p .tt {
    font-size: 1.2em;
  }
  .fixed_banner .tel p .tt::before {
    margin-bottom: 0.3em;
  }
  .fixed_banner .mail p .tt::before {
    margin-bottom: 0.5em;
    font-size: 0.8em;
  }
  .fixed_banner .consultation p .tt::before {
    margin-bottom: 0.5em;
    font-size: 0.8em;
  }
  .fixed_banner .office {
    width: 28%;
  }
  .fixed_banner .office p .tt {
    font-size: 1.2em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fixed_banner .office p .tt::before {
    width: 100%;
    background-size: auto 100%;
    font-size: 1em;
    margin-bottom: -6px;
  }
  .fixed_banner .office p .tt::after {
    margin-top: 0;
    margin-left: 0.5em;
  }
  .copyright {
    display: block;
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .copyright .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .idx_gallery {
    margin-top: 60px;
    font-size: min(4px, 0.8vw);
  }
}
@media only screen and (max-width: 500px) {
  .copyright .flex {
    max-width: 400px;
    margin: auto;
    padding: 0 40px;
  }
  .copyright .grits {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--text-color);
  }
  .copyright .grits img {
    margin: auto;
  }
  .copyright .textwidget {
    margin-top: 10px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px 0;
    text-align: center;
  }
  .copyright .textwidget span {
    display: inline-block;
  }
}
/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/