@charset "utf-8";

body {
    /*font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;*/
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    line-height: 1.7;
    font-size: 14px;
    color: #000;
}

h2 {
    letter-spacing: 2px;
    font-size: 52px;
}

a {
    text-decoration: none;
    color: #333;
}

.hover a:hover {
    text-decoration: none;
    color: #79AED6;
}

.hover a:hover img {
    opacity: 0.6;
}

img {
    vertical-align: bottom;
}
.img_box img{
    width: 100%;
}
figure {
    margin: 0;
}

figcaption {
    line-height: 20px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.inner {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contents_style{
    padding: 40px 0 80px;
}


#main{
    overflow: hidden;
}
/* タイトル関連
------------- */

/*-- モーダル
-----------------*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 640px;
  padding: 10px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}
/* フェードイン
------------- */
/* 画面外にいる状態 */
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 800ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
.fadein_r {
    opacity: 0;
    transform: translate(50%, 0);
    transition: all 800ms;
}

/* 画面内に入った状態 */
.fadein_r.scrollin_r {
    opacity: 1;
    transform: translate(0, 0);
}
.fadein_l {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: all 800ms;
}

/* 画面内に入った状態 */
.fadein_l.scrollin_l {
    opacity: 1;
    transform: translate(0, 0);
}
/*================================
    header
=================================*/
header {
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    position: fixed;
}
header.fixed {
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 30%);
}
.header_top .inner{
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
header .header_top {
    transition-duration: .3s;
}
header:hover .header_top{
    background: rgba(255,255,255, 0.7);
}
header.fixed:hover .header_top,header.fixed .header_top{
    background: rgba(255,255,255, 1);
}
header .header_top .logo {
    width: 20%;
    max-width: 230px;
}
header .header_top .logo img{
    width: 100%;
}
header .header_top .logo h1 {
    display: none;
}
header .header_top .logo h1 {
    display: block;
}
.contents_nav {
    width: 80%;
    transition-duration: .3s;
}
.nav_pc .nav {
    display: flex;
    flex-wrap: wrap;
}
.contact_box{
    width: 10%;
    height: 100px;

    }
.contact_box p{
    display: table;
    width: 100%;
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/pc/ico/ico_mail.png) no-repeat #83ac06;
    background-size: 40px;
    background-position: center 15px;
}
.contact_box p:hover{
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/pc/ico/ico_mail_grn.png) no-repeat #fff;
    background-size: 40px;
    background-position: center 15px;
    box-sizng: border-box;
}
.contact_box p:hover a{
    color: #83ac06;
}
.contact_box a{
    color: #fff;
    width: 100%;
    height: 100px;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
    display: table-cell;
    padding-top: 40px;
}
.nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.nav_list li {
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 4px;
}
.nav_list li:first-child {
    margin-left: 0;
}
.nav_list li a {
        font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 15px 0;
    display: block;
    font-size: 1vw;
    color: #000;
}
.nav_list li a:hover {
    color: #83ac06;
    text-shadow: none;
}
.nav_list li a .sub {
    font-size: 10px;
    display: block;
}
.nav_list li.nav_contact {
    padding: 20px 0;
}
.nav_list li.nav_contact a {
    font-size: 14px;
    padding: 16px 36px 17px;
    box-sizing: border-box;
    display: block;
}
.nav_list li.nav_contact a .ico_mail {
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/pc/ico/ico_mail.png) no-repeat;
    background-position: left center;
    padding-left: 24px;
}
.nav_list li.nav_contact a:hover {
    color: #fff;
}

.nav_list li.nav_contact a:hover .ico_mail {
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/pc/ico/ico_mail_whi.png) no-repeat;
    background-position: left center;
}

.nav_sp {
    display: none;
}
.nav_sp .logo {
    text-align: center;
    padding: 32px 0;
}

.nav_sp .logo h1 {
    display: inline-block;
}

.nav_sp .logo h1 a {
    color: #fff;
}
.nav_sp .nav_list li {
    float: none;
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    margin: 0;
}

.nav_sp .nav_list li a {
    border: none;
    display: block;
    font-size: 14px;
    padding: 20px;
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/sp/ico/ico_arrow_right_wh.png) no-repeat;
    background-position: right 20px center;
    background-size: 10px;
}

.nav_sp .nav_list li:first-child {
    border-top: 2px solid #fff;
}

.nav_sp .nav_list li .main {
    min-width: 280px;
    display: inline-block;
}

.nav_sp .inf_link {
    margin-top: 60px;
}

.nav_sp .inf_link ul {
    padding-bottom: 60px;
}

.nav_sp .inf_link ul li {
    margin-top: 55px;
}

.nav_sp .inf_link ul li a {
    background: #fff;
    display: block;
    text-align: center;
    height: 112px;
    box-sizing: border-box;
    font-size: 30px;
    padding: 38px 0;
}

.nav_sp .inf_link ul li span {
    color: #83ac06;
}

.nav_sp .inf_link ul li:first-child {
    margin-top: 0;
}
.drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #83ac06;
    padding: 0 15px 100px;
    box-sizing: border-box;
}
.drawer--right .drawer-nav {
    right: -100%;
}
.drawer-hamburger {
    left: auto;
    right: 33px !important;
    top: 33px;
    width: 36px;
    height: 20px;
    box-sizing: border-box;
    padding: 0;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    width: 100%;
    height: 2px;
    background-color: #83ac06;
    margin-top: 0px;
}
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    top: -7px;
}
.drawer-hamburger-icon:after {
    top: 7px;
    width: 60%;
    margin-left: 40%;
}
.drawer-open .drawer-hamburger-icon:before {
    background: #fff;
}
.drawer-open .drawer-hamburger-icon:after {
    background: #fff;
    width: 100%;
    margin-left: 0%;
}
.drawer-overlay {
    z-index: -1;
}

/*================================
    スライドイン
=================================*/
/*.fade{
    transform:translateX(-50px);
    opacity:0;
    transition:opacity 1s,transform 0.5s;
}
.fadein{
  opacity:1;
  transform:translateX(0);
}*/
/*================================
    footer
=================================*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    z-index: 100;
}
footer{
}
footer .footer_inf {
    background: #83ac06;
    padding: 50px 0 20px;
}
footer .footer_inf .inner {
    overflow: hidden;
    padding: 0 20px;
}
footer .footer_inf .footer_nav .nav_list {
    margin-bottom: 0;
    width: 100%;
    display: block;
    padding: 0;
}
footer .footer_inf .footer_nav .nav_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
footer .footer_inf .footer_nav .nav_list ul li {
    margin: 0;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    padding: 0 28px;
    text-align: center;
}
footer .footer_inf .footer_nav .nav_list ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 0;
}
footer .footer_inf .footer_nav .nav_list ul li:first-child {
    margin-left: 0;
    border-left: 1px solid #fff;
}
footer .logo {
    width: 70%;
    text-align: center;
    margin: 0px auto 5%;
}
footer .logo img{
    width: 100%;
}
.site_inf{
    width: 25%;
    color: #fff;
    text-align: center;
}
.inf_box{
    width: 100%;
    text-align: center;
}
.site_inf .adrs{
    margin-bottom: 5px;
}
.site_inf .mail_ad{
    font-size: 18px;
    font-weight: 700;
}
.site_inf .tel_box p{
    display: inline;
}
.site_inf .tel_box a{
    color: #fff;
}
.site_inf .tel_box .tel{
    margin-right: 10px;
}
.footer_nav .contact_btn {
    text-align: center;
    margin-top: 20px;
}
footer .copyright {
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    background: #83ac06;
}
footer .contact_block {
    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/common/img/pc/bg/bg_contact_block.png) no-repeat;
    background-position: top;
    background-size: cover;
    min-height: 273px;
    padding: 70px 20px;
    box-sizing: border-box;
    position: relative;
}
footer .contact_block .cover{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.6);
    z-index: 0;
}
footer .contact_block .inner {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

footer .contact_block .cont_box {
    float: left;
    width: 50%;
    color: #fff;
}
footer .contact_block .cont_left .tatle_box h2 {
    margin-bottom: 15px;
}
footer .contact_block .cont_right {
    display: table;
    padding: 22px 0 0 0px;
    box-sizing: border-box;
}
footer .contact_block .cont_right .contact_link {
    display: table-cell;
    vertical-align: middle;
    max-width: 300px;
    width: 50%;
}
footer .contact_block .cont_right .contact_link a {
    width: 100%;
    height: 100%;
    font-size: 20px;
    background: #fff;
    color: #83ac06;
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding: 25px 0px;
    border: 1px solid #83ac06;
    -webkit-transition: all .3s;
    transition: all .3s;
}
footer .contact_block .cont_right .contact_link a:hover {
    color: #fff;
    background: #83ac06;
    border: 1px solid #fff;
}
footer .contact_block .cont_right .tel_link {
    display: table-cell;
    vertical-align: middle;
    padding-left: 40px;
}
footer .contact_block .cont_right .tel_link dl{
      display: table;
}
footer .contact_block .cont_right .tel_link dl dt {
    display: table-cell;
    font-size: 20px;
    vertical-align: middle;
}
footer .contact_block .cont_right .tel_link dl dd a {
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    color: #fff;
}
footer .contact_block .cont_right .tel_link dl dd a:hover {
    color: #83ac06;
    text-shadow: 1px 1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff;
}
.tatle_box h2 .main {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-weight: 900;
}
.tatle_box h2 .sub {
    font-size: 14px;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
    position: relative;
    top: 0;
}
.tatle_box h2 {
    font-size: 34px;
    font-weight: bold;
    display: table;
    margin-bottom: 35px;
}
footer .contact_block .cont_left .tatle_box h2 {
    margin-bottom: 15px;
}
.map{
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 20px;
}
.map_block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #ccc;
}
.map_box{
    width: 32%;
}
.map_box iframe{
    width: 100%;
    height: 300px;
}
.map_inf h2{
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
}
.map_inf dl{
    display: table;
    width: 100%;
    padding: 10px 0;
}
.map_inf dt{
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}
.map_inf dt span{
    padding: 2px;
    width: 100%;
    background: #83ac06;
    display: inline-block;
    box-sizing: border-box;
}
.map_inf dd{
    padding-left: 20px;
    display: table-cell;
    vertical-align: middle;
}
.map_inf .share_title::after {
    position: absolute;
    content: " ";
    border-bottom: solid 4px #83ac06;
    bottom: -4px;
    width: 20%;
    display: block;
}
.footer_inf .cont_block{
    display: flex;
    flex-wrap: wrap;
      align-items: center;

}
.footer_nav{
    width: 72%;
    padding-left: 3%;
}
.contact_btn{
    text-align: center;
    margin-top: 40px;
}
.contact_btn a{
    display: inline-block;
    background: #fff;
    color: #83ac06;
    padding: 10px 20px;
    width: 300px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
}
/*================================
    tag系
=================================*/
.tag {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tag span {
    margin-left: 10px;
}

.tag span:first-child {
    margin-left: 0;
}

.tag_new {
    color: red;
}

.tag_recommended {
    color: blue;
}

/*================================
    list_style
=================================*/
.list_style {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.list_style li {
    width: 48.718%;
    margin: 0 0 0 2.56%;
}

@media screen and (max-width: 768px) {
    .list_style li {
        width: 100%;
        margin: 20px 0 0 0;
    }
}

.list_style li:first-child {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .list_style li:first-child {
        margin: 0 !important;
    }
}

.list_style li:nth-child(-n+4) {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .list_style li:nth-child(-n+4) {
        margin: 20px 0 0 0;
    }
}

.list_style li.img_max {
    width: 100%;
    display: block;
    margin: 20px 0 0 0;
}

.list_style li.img_max .img_box {
    height: 520px;
}

.list_style li.img_max .img_box img {
    height: 520px;
}

.list_style .img_box {
    position: relative;
    height: 200px;
}

.list_style .img_box img {
    height: 200px;
    object-fit: fill;
    width: 100%;
}

.list_style .img_box .ctg_tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.list_style figcaption {
    padding: 25px 0;
}

.list_style .day {
    font-size: 11px;
    margin-bottom: 20px;
}

.list_style .cont_title {
    font-size: 18px;
    margin-bottom: 20px;
}

.list_style .cont_text {
    line-height: 22px;
    font-size: 13px;
}

.top_cont .list_style li {
    width: 31.667%;
    margin: 0 0 0 2.5%;
}

.top_cont .list_style li:first-child {
    margin-left: 0;
}

.top_cont .list_style figcaption {
    border-top: none;
    box-sizing: border-box;
}

.d_flex {
    display: flex;
    flex-wrap: wrap;
}

.figure_list {
    width: 100%;
}

.figure_list .img_box {
    width: 48%;
}

.figure_list .img_box img {
    height: 200px;
    object-fit: cover;
}

.figure_list figcaption {
    width: 50%;
    padding: 0 0 0 2%;
}
#keyvisual{
    position: relative;
    height: auto;
}
#video_box{
/*    height: 400px !important;
*/}
#video_teaser{
}
#top #keyvisual .kv_cont{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: url(https://karimata.p-c-tech.com/system/wp-content/themes/kmt/assets/img/pc/top/top_mv.png)no-repeat center top;
    background-size: cover;*/
}
#top #keyvisual .kv_cont h2{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4vw;
    color: #fff;
    margin: -5% 0 0 -25%;
    text-shadow: 1px 2px 3px #000;
    animation-name: fadeInAnime;
    animation-fill-mode: backwards;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 5s;
    animation-direction: normal;
}
@keyframes fadeInAnime {
0%{
  opacity: 0;
  }

25%{
  opacity: 1;
  }
75%{
  opacity: 0;
  }
100%{
  opacity: 0;
  }
}
#breadcrumbs {
}
#breadcrumbs ul {
    display: flex;
    padding: 10px 0;
}
#breadcrumbs ul li:before {
    content: '>';
    margin: 0 10px;
    display: inline-block;
}
#breadcrumbs ul li:first-of-type:before {
    content: none;
}
#breadcrumbs ul li a:hover {
    color: #83ac06;
    text-shadow: none;
}


@media screen and (max-width: 960px) {
    .map_box {
        width: 49%;
    }
    .map_box:first-child {
        width: 100%;
    }
}
/*===============================================
●tablet.css 画面の横幅が768pxまで
===============================================*/
@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .inner {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
    #main{
        padding-top: 80px;
    }
    .header_top .inner {
        padding: 10px 20px;
    }

/*================================
    header
=================================*/
    header {
        position: fixed;
        padding: 0;
        background: #fff;
        z-index: 999999;
        min-width: 100%;
        top: 0;
    }
    header .header_top {
        text-align: center;
    }
    header .header_top .logo {
        display: block;
        float: none;
        margin: 0;
        padding: 10px 0;
        text-align: center;
        width: 160px;
        position: relative;
    }
    header .header_top .logo .cover {
        background-position: none;
        width: 100%;
        height: auto;
        position: static;
    }
    .contents_nav {
        display: none;
    }
    .nav_list li a .sub {
        display: block;
        padding: 5px 0 0 2px;
    }
    .nav_list li.nav_contact a {
        text-align: left;
    }
    .nav_list li.nav_contact a .ico_mail {
        padding-left: 0;
    }
    .nav_sp {
        display: block;
    }
    .share_style header .nav_list a .sub {
        color: #fff;
    }
    .share_style header .nav_list .nav_contact a {
        border: none;
        padding: 38px 30px;
    }
    .nav_list {
        width: 100%;
        padding-right: 0;
    }
    .nav_sp .logo {
        padding: 0;
        width: 220px;
        margin: 20px auto;
    }
    .nav_sp .nav_list li a {
        color: #fff;
    }

    #keyvisual{
        position: relative;
        /*height: calc(100vh - 100px);*/
        overflow: hidden;
    }

/*================================
    footer
=================================*/
    footer .contact_block .cont_box {
        float: none;
        width: 100%;
    }
    footer .contact_block .cont_right {
        padding: 40px 0 0 0;
    }
    footer .contact_block .cont_right .contact_link {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    footer .contact_block .cont_right .tel_link {
        display: block;
        padding-left: 0;
        margin-top: 20px;
    }
    footer .contact_block .cont_right .tel_link dl dd {
        font-size: 26px;
    }
    footer .footer_inf {
        padding: 20px 20px 0;
    }
    footer .footer_inf .footer_cont {
        float: none;
    }
    footer .footer_inf .footer_cont h1 {
        margin: 0 auto;
        min-width: 106px;
        width: 10%;
    }
    footer .footer_inf .footer_cont h1 span {
        font-size: 10px;
    }
    footer .footer_inf .footer_cont a {
        font-size: 16px;
    }
    footer .footer_inf .footer_nav {
        float: none;
    }
    footer .footer_inf .footer_nav .nav_list {
        margin: 20px 0 10px;
        display: none;
    }
    footer .footer_inf .footer_nav .nav_list ul {
        border-bottom: 1px solid #83ac06;
    }
    footer .footer_inf .footer_nav .nav_list ul li {
        width: 50%;
        margin: 0;
        border-top: 1px solid #83ac06;
    }
    footer .footer_inf .footer_nav .nav_list ul li:nth-child(2n) {
        border-left: 1px solid #83ac06;
    }
    footer .footer_inf .footer_nav .nav_list ul li a {
        padding: 15px 0;
        box-sizing: border-box;
        display: block;
    }
    footer .footer_inf .footer_nav .nav_link p {
        padding-top: 0;
        float: none;
        text-align: right;
    }
    footer .footer_inf .footer_nav .nav_link p a {
        font-size: 14px;
        color: #83ac06;
    }
    footer .footer_inf .footer_nav .nav_link ul {
        display: none;
    }
    footer .copyright {
        font-size: 10px;
        padding: 11px 0;
        background: #83ac06;
        position: static;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
    }
    footer .contact_block {
        padding: 50px 20px;
    }
    footer .contact_block .cont_box {
        float: none;
        width: 100%;
    }
    footer .contact_block .cont_right {
        padding: 40px 0 0 0;
    }
    footer .contact_block .cont_right .contact_link {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    footer .contact_block .cont_right .tel_link {
        display: block;
        padding-left: 0;
    }
    footer .contact_block .cont_right .tel_link dl dd {
        font-size: 26px;
    }
    #video_box {
        width: 100% !important;
        height: 100% !important;
    }
    .map_box {
        width: 100%;
        margin-top: 20px;
    }
    .top_movie-dimensions.vjs-fluid {
        padding-top: 130% !important;
    }
    .map_box:first-child {
        margin-top: 0;
    }
    footer .footer_inf .inner {
        padding: 0;
    }
    .site_inf {
        width: 100%;
    }
    .footer_nav {
        width: 100%;
        padding-left: 0;
    }

    header .header_top .logo img {
        width: auto;
    }


}