@charset "UTF-8";

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    overflow-x: hidden;
}

body {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-family: "Sawarabi Mincho", YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", Honoka, Meiryo, "メイリオ", serif;
    color: #333;
    background: #fff;
    font-size: 16px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

#preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/preloader.png);
}

p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 200;
}

p a {
    color: #333;
}

p a:hover,
p a:focus {
    color: #4b4b4b;
}

i,
.italic {
    font-style: italic;
}

strong,
b {
    color: #333;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Noto Serif SC', serif;
    color: #333;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 20px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

li,
a {
    color: #333;
    text-decoration: none;
}

ul {
    padding: 0;
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0px;
}

a {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

blockquote {
    position: relative;
    margin: 15px 0;
    padding: 40px;
    border-left: none;
    background-color: #f9f9f9;
    color: #4b4b4b;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 28px;
}

blockquote cite {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: #604eaf;
    text-transform: uppercase;
    font-style: normal;
}

blockquote cite:before {
    content: '-';
    margin-right: 3px;
}

.blockquote--bordered {
    border: 1px solid #f1f1f1;
    border-top: 3px solid #604eaf;
    background: transparent;
    color: #4b4b4b;
}

.blockquote--bordered:before {
    color: #fff;
    background-color: #604eaf;
}

.blockquote--bordered cite {
    color: #604eaf;
}

.list {
    padding: 0;
    list-style: none;
}

.list li {
    margin-bottom: 15px;
}

.pt100 {
    padding-top: 100px;
}

/*-- navigation --*/

#navigation {
    position: relative;
}

#navigation .navbar-collapse {
    position: relative;
    top: 16px;
}

#navigation .navbar {
    margin-bottom: 0px;
    border: none;
    border-radius: 0px;
    min-height: 70px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    background: -moz-linear-gradient(top, #ccaa66 90%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #ccaa66 90%, #ffffff 100%);
    background: linear-gradient(to bottom, #ccaa66 90%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccaa66', endColorstr='#f5f0e3', GradientType=0);
}

.navbar-default {
    background-color: transparent;
    text-align: center;
    border: none;
    margin-bottom: 0;
}

.navbar-default .navbar-nav > li > a {
    position: relative;
    display: inline-block;
    padding: .5em 1.2em;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    color: #E9E9E9;
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-default .navbar-nav > li > a.current {
    color: rgba(255, 255, 255, 1);
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: rgba(255, 255, 255, 1);
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background-color: #fff;
    color: #333;
}

#navigation .navbar-brand {
    padding: 5px 10px;
}

#navigation .navbar-brand img {
    height: auto;
}

.navbar-default .navbar-toggle {
    background-color: transparent;
    border-color: transparent;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #333;
}

.navbar-toggle .icon-bar {
    width: 30px;
}

.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 1px;
}

.navbar-toggle .icon-bar:nth-of-type(4) {
    top: 2px;
}

.navbar-toggle .icon-bar {
    position: relative;
    transition: all 500ms ease-in-out;
}

.navbar-toggle.active .icon-bar:nth-of-type(2) {
    top: 6px;
    transform: rotate(45deg);
}

.navbar-toggle.active .icon-bar:nth-of-type(3) {
    background-color: transparent;
}

.navbar-toggle.active .icon-bar:nth-of-type(4) {
    top: -6px;
    transform: rotate(-45deg);
}

.homepage > section {
    clear: both;
}

/*-- call to action --*/
.button {
    display: inline-block;
    color: #f5f0e3;
    background: #CCAA66;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    padding: 0.75em 2em;
    margin-top: 2em;
    border-radius: 2em;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.button:hover {
    background: #a58a0e;
}

/*-- landing-section --*/
#landing-section {
    position: relative;
}

.videoContainer {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    background-color: #fff;
}

.videoContainer video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    opacity: 0.8;
    background-color: #fff;
}

@media all and (-ms-high-contrast: none) {
    .videoContainer video {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        min-height: 100%;
        min-width: 100%;
        overflow: hidden;
        opacity: 0.8;
    }
}


#landing-section .brand {
    position: absolute;
    top: 0;
    z-index: 1000;
}

#landing-section .brand a.logo {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 20px;
}

#landing-section .brand a.logo img {
    width: 230px;
    height: auto;
}

/*-- intro-section --*/
#intro-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#intro-section .container {
    position: relative;
}

#intro-section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/intro_bg.png);
    background-repeat: no-repeat;
    background-size: auto 80%;
    background-position: 100% 55%;
    display: block;
    opacity: 0.50;
}

#intro-section .intro_txt h1 {
    font-size: 28px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.09em;
    margin: 0;
}

#intro-section .intro_txt p {
    font-size: 18px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.09em;
    margin: 0;
}

#intro-section .intro_txt h1 span {
    display: inline-block;
    text-indent: 100px;
}

/*-- owner_intro-section --*/
#owner_intro-section {
    position: relative;
    padding: 100px 0;
    background: url(../img/txt_bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
}

#owner_intro-section .content_img {
    position: relative;
}

#owner_intro-section .content_img:before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: #fefefe 1px solid;
    z-index: 3;
    opacity: 0.4;
}

#owner_intro-section .owner_intro-item-right {
    position: relative;
}

#owner_intro-section .owner_intro-item-right h2 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0.09em;
    position: relative;
}

#owner_intro-section .owner_intro-item-right h2:before {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #CCAA66;
}

#owner_intro-section .owner_intro-item-right p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

#owner_intro-section .owner_intro-item-right p span {
    display: inline-block;
}

#owner_intro-section .owner_intro-item-right .name-txt {
    text-align: right;
    color: #CCAA66;
    font-weight: bold;
}



/*-- megalink_top-section --*/
#megalink_top-section {
    padding-top: 50px;
    position: relative;
}

#megalink_top-section .container {
    position: relative;
}

#megalink_top-section .link-block figure {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

#megalink_top-section .link-block figure .img_item {
    position: relative;
    height: 250px;
}

#megalink_top-section .link-block figure .img_item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#megalink_top-section .link-block figcaption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(204, 170, 102, 0.85);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 1;
}

#megalink_top-section .link-block figcaption img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 115px;
    height: 115px;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 2;
    transform: translateY(-50%);
}

#megalink_top-section .link-block figure:hover figcaption {
    opacity: 0;
}

.custom-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center;
}

.custom-object-fit img {
    opacity: 0;
}

/*-- img_mid-section --*/
#img_mid-section {
    padding: 50px 0;
    position: relative;
}

#img_mid-section .container {
    position: relative;
}

#img_mid-section .img_content {
    position: relative;
    overflow: hidden;
    height: 450px;
}

#img_mid-section .img_content:before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 450px;
    transform: translateY(-50%);
    background: url(../img/mid-bg.jpg) no-repeat;
    background-position: center center;
}

#img_mid-section .img_content:after {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: #fefefe 1px solid;
    z-index: 3;
    opacity: 0.4;
}

/*-- content-section --*/
#content-section {
    padding: 100px 0;
    position: relative;
    background: url(../img/txt_bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
}

#content-section .content_txt {
    padding: 40px 0;
}

#content-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0.09em;
}

#content-section p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

#content-section .content_img {
    position: relative;
}

#content-section .content_img:before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: #fefefe 1px solid;
    z-index: 3;
    opacity: 0.4;
}

/*-- news-section --*/
#news-section {
    position: relative;
    padding: 50px 0;
}

#news-section .container {
    position: relative;
    padding: 50px 0;
}

#news-section .title_txt {
    font-size: 32px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

#news-section .title_txt:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.news_list {
    text-align: center;
}

.news_list > div {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1000px) {
    .news_list > div {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.news_list > div .article_inner {
    max-width: 1200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media only screen and (max-width: 1000px) {
    .news_list > div .article_inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.news_list > div .article_inner .post_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
}

@media only screen and (max-width: 1000px) {
    .news_list > div .article_inner .post_header {
        margin-bottom: 20px;
    }
}

.news_list > div .article_inner .post_header .date {
    width: 124px;
    text-align: left;
}

.news_list > div .article_inner .post_content {
    margin-left: 15px;
    display: block;
    color: #333;
    font-size: 18px;
    position: relative;
    letter-spacing: 0.12em;
    width: 100%;
    text-align: left;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media only screen and (max-width: 1000px) {
    .news_list > div .article_inner .post_content {
        margin-left: 0;
    }
}

.news_list > div .article_inner .post_content span {
    position: relative;
    display: inline-block;
}

.news_list > div .article_inner .post_content span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #333;
    width: 100%;
    height: 1px;
    z-index: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news_list > div .article_inner .post_content:hover span:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*-- contact-section --*/
#contact-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

#contact-section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/intro_bg.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 0 55%;
    display: block;
    opacity: 0.50;
}

#contact-section .title_txt {
    font-size: 32px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    color: #333;
}

#contact-section .title_txt:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

#map {
    width: 100%;
    height: 450px;
    position: relative;
}

#map:before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: #fefefe 1px solid;
    z-index: 3;
    opacity: 0.4;
}

#contact-section h3,
#contact-section h3 a {
    font-size: 38px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.09em;
    color: #CCAA66;
}

#contact-section h3 a:hover {
    color: #a58a0e;
}

#contact-section h4 {
    font-size: 21px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-top: 50px;
}

#contact-section .table-content {
    position: relative;
    padding: 20px 0;
}

#contact-section .table-content p {
    color: #333;
    letter-spacing: 0.06em;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 15px;
}

#contact-section .table-content p span {
    display: inline-block;
    margin-right: 15px;
}

#contact-section table {
    width: 100%;
    border-collapse: collapse;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
}

#contact-section tr:nth-of-type(even) {
    background: transparent;
}

#contact-section tr:nth-of-type(odd) {
    background: transparent;
}

#contact-section th {
    background: transparent;
    color: #333;
    font-weight: 100;
}

#contact-section tr {
    color: #333;
}

#contact-section td,
#contact-section th {
    padding: 10px;
    text-align: center;
    border-top: 1px solid rgba(204, 170, 102, 0.6);
    border-bottom: 1px solid rgba(204, 170, 102, 0.6);
    border-left: 1px solid rgba(204, 170, 102, 0.6);
    border-right: 1px solid rgba(204, 170, 102, 0.6);
}

/*@media only screen and (max-width: 667px) {
    #contact-section table.table-calendar,
    #contact-section .table-calendar thead,
    #contact-section .table-calendar tbody,
    #contact-section .table-calendar th,
    #contact-section .table-calendar td,
    #contact-section .table-calendar tr {
        display: block;
    }

    #contact-section .table-calendar thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #contact-section .table-calendar tr {
        border: 1px solid rgba(204, 170, 102, 0.6);
    }

    #contact-section .table-calendar td {
        border: none;
        border-bottom: 1px solid rgba(204, 170, 102, 0.6);
        position: relative;
        padding-left: 50%;
        text-align: center;
    }

    #contact-section .table-calendar td:before {
        position: absolute;
        top: 8px;
        left: 6px;
        width: 45%;
        border-right: 1px solid rgba(204, 170, 102, 0.6);
        padding-right: 10px;
        white-space: nowrap;
    }

    #contact-section .table-calendar td:before {
        content: attr(data-table-header);
    }
}*/

/*-- external_link-section --*/
#external_link-section {
    position: relative;
    padding-bottom: 20px;
    padding-top: 50px;
}

#external_link-section .link_block {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

/*-- footer --*/
footer {
    position: relative;
    padding-top: 50px;
    background: url(../img/txt_bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    -o-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    text-align: center;

}

footer .footer-navbar {
    margin-bottom: 5px;
}

footer .footer-navbar > li,
footer .footer-navbar > li > a {
    display: inline-block;
    position: relative;
}

footer .footer-navbar > li > a {
    text-decoration: none;
    font-size: 13px;
    color: #333;
    padding: 10px 10px;
}

footer .footer-navbar > li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(204, 170, 102, 1) 0%, rgba(204, 170, 102, 1) 50%, rgba(248, 242, 229, 1) 50%, rgba(248, 242, 229, 1) 100%);
    background-size: 1px 4px;
    -ms-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

footer .footer-navbar > li:last-of-type:after {
    content: none;
}

footer .footer-navbar > li > a:hover {
    text-decoration: none;
    opacity: 0.8;
}

footer .footer-navbar > li > a:focus {
    border-color: transparent;
}

footer .footer-copyright {
    padding: 15px 0 30px;
}

footer .footer-copyright p {
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

footer .footer-copyright a {
    color: #333;
}

/*-- pages-2019-02-27 --*/
.subpage #landing-section {
    height: 190px;
}

.subpage #landing-section .brand {
    position: relative;
}

.subpage #landing-section .brand a.logo {
    position: relative;
}

.subpage #landing-section .brand a.logo img {
    width: 180px;
}

#hero-title {
    text-align: center;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: url(../img/txt_bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    -o-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

#hero-title .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#hero-title .hero-text h2 {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.09em;
    text-align: center;
    color: #CCAA66;
}

#hero-title .breadCrumb {
    position: absolute;
    top: 20px;
    left: 20px;
}

#hero-title .breadCrumb .breadCrumb-nav {}

#hero-title .breadCrumb .breadCrumb-nav li,
#hero-title .breadCrumb .breadCrumb-nav li > a {
    display: inline-block;
    position: relative;
}

#hero-title .breadCrumb .breadCrumb-nav li > a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 10px 10px;
    font-weight: bold;
}

#hero-title .breadCrumb .breadCrumb-nav li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(204, 170, 102, 1) 0%, rgba(204, 170, 102, 1) 50%, rgba(248, 242, 229, 1) 50%, rgba(248, 242, 229, 1) 100%);
    background-size: 1px 4px;
    -ms-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

#hero-title .breadCrumb .breadCrumb-nav li:last-of-type:after {
    content: none;
}

#cate_content {
    position: relative;
    padding: 100px 0;
}

/*-- menu-naviNav --*/

.menu-naviNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    align-items: center;
    align-content: flex-start;
}

.menu-naviNav ul:after {
    display: block;
    content: "";
    flex: 999 999 auto;
}

.menu-naviNav ul li {
    flex: 100 0 auto;
    margin: 5px;
}

.menu-naviNav a {
    display: block;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all .25s;
    transition: all .25s;
    border: 1px solid #CCAA66;
    text-align: center;
}

.menu-naviNav a:hover {
    color: #333;
    background-color: #F5F0E3;
}

/*-- news page --*/

.news_page .cate_box {
    margin-bottom: 100px;
    position: relative;
}


.news_page .cate_box:last-child {
    margin-bottom: 0;
}

.news_page .cate_box .title_box {
    position: relative;
    margin-bottom: 30px;
    padding: 10px;
}

.news_page .cate_box .title_box:before {
    top: 0px;
}

.news_page .cate_box .title_box:after {
    bottom: 0px;
}

.news_page .cate_box .title_box:before,
.news_page .cate_box .title_box:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CCAA66;
}

.news_page .cate_box .box_img1 img {
    margin-bottom: 60px;
    display: inline-block;
}

.news_page .cate_box .item_title {
    font-size: 21px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #333;
    position: relative;
    margin-bottom: 0;
    font-weight: bold;
}


.news_page .cate_box .date {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.06em;
    color: #4D4D4D;
    position: relative;
    margin-bottom: 10px;
    border-top: none;
    padding-bottom: 0;
}

.news_page .cate_box .item-txt {
    line-height: 2;
    letter-spacing: 0.05em;
    font-size: 16px;
    color: #333;
    margin-bottom: 50px;
}

.news_page .pagination {
    position: 0;
    margin: 0;
}

.news_page .pagination ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.news_page .pagination li {
    display: inline-block;
    color: #333;
}

.news_page .pagination a {
    padding: 10px 18px;
    font-size: 16px;
}

.news_page .p7 a {
    border: 1px solid #333;
    margin: auto 5px;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.news_page .p7 .is-active {
    background-color: #CCAA66;
    color: #fff;
}

.news_page .p7 a:hover {
    border: 1px solid #CCAA66;
    background: #a58a0e;
    color: #fff;
}

/*-- page-with-cate_1 --*/

.page-with-cate_1 .cate {
    position: relative;
    margin-bottom: 50px;
}

.page-with-cate_1 .cate:last-child {
    margin-bottom: 0;
}

.page-with-cate_1 .cate .cate-title_box {
    position: relative;
    margin-bottom: 50px;
}

.page-with-cate_1 .cate .cate_title {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #333;
    padding: 10px;
}

.page-with-cate_1 .cate .cate_title:before {
    top: 0px;
}

.page-with-cate_1 .cate .cate_title:after {
    bottom: 0px;
}

.page-with-cate_1 .cate .cate_title:before,
.page-with-cate_1 .cate .cate_title:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CCAA66;
}

.page-with-cate_1 .cate .cate_txt1 {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.03em;
    font-weight: normal;
    color: #4D4D4D;
}

.page-with-cate_1 .cate_box {
    margin-bottom: 50px;
    position: relative;
}

.page-with-cate_1 .cate_box:last-child {
    margin-bottom: 0;
}

.page-with-cate_1 .cate_box .title_box {
    position: relative;
    padding-top: 30px;
}

.page-with-cate_1 .cate_box .box_title1 {
    font-size: 21px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #CCAA66;
}

.page-with-cate_1 .cate_box .box_title2 {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #CCAA66;
}

.page-with-cate_1 .cate_box .box_txt1,
.page-with-cate_1 .cate_box a,
.page-with-cate_1 .cate_box .box_txt2 {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
}

.page-with-cate_1 .cate_box .box_txt2 {
    font-size: 16px;
    padding-top: 15px;
    color: #333;
}


.page-with-cate_1 .cate-title_box .cate_img1 img,
.page-with-cate_1 .cate_box .box_img1 img,
.page-with-cate_1 .cate_box .box_img2 img {
    margin: 30px 0;
    display: inline-block;
}

.page-with-cate_1 .cate_box .box_title2:empty {
    display: none;
}

/*-- page-with-cate_2 --*/

.page-with-cate_2 .cate {
    position: relative;
    margin-bottom: 50px;
}

.page-with-cate_2 .cate:last-child {
    margin-bottom: 0;
}

.page-with-cate_2 .cate .cate-title_box {
    position: relative;
    margin-bottom: 50px;
}

.page-with-cate_2 .cate .cate_title {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #333;
    padding: 10px;
}

.page-with-cate_2 .cate .cate_title:before {
    top: 0px;
}

.page-with-cate_2 .cate .cate_title:after {
    bottom: 0px;
}

.page-with-cate_2 .cate .cate_title:before,
.page-with-cate_2 .cate .cate_title:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CCAA66;
}

.page-with-cate_2 .cate .cate_txt1 {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.03em;
    font-weight: normal;
    color: #4D4D4D;
}

.page-with-cate_2 .cate_box {
    margin-bottom: 50px;
    position: relative;
}

.page-with-cate_2 .cate_box:last-child {
    margin-bottom: 0;
}

.page-with-cate_2 .cate_box .title_box {
    position: relative;
    padding-top: 30px;
}

.page-with-cate_2 .cate_box .box_title1 {
    font-size: 19px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    padding: 5px 15px;
    background-color: #CCAA66;
}

.page-with-cate_2 .cate_box .box_title1:empty {
    display: none;
}

.page-with-cate_2 .cate_box .box_title2 {
    font-size: 21px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #CCAA66;
    padding: 5px 0;
}

.page-with-cate_2 .cate_box .box_txt1,
.page-with-cate_2 .cate_box a,
.page-with-cate_2 .cate_box .box_txt2,
.page-with-cate_2 .cate_box .box_txt3 {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: normal;
    color: #333;
    padding-left: 15px;
    margin-bottom: 10px;
}

.page-with-cate_2 .cate_box .box_txt2,
.page-with-cate_2 .cate_box .box_txt3 {
    font-size: 18px;
    padding: 15px;
    margin-bottom: 0;
    background-color: #F5F0E3;
}

.page-with-cate_2 .cate_box .box_txt2:empty,
.page-with-cate_2 .cate_box .box_txt3:empty {
    display: none;
}

/*-- contact page --*/

.contact_page {
    position: relative;
}

.contact_page .form-control {
    position: relative;
    padding-left: 15px;
    border: 1px solid #4D4D4D;
}

.form-group {
    margin-bottom: 20px;
}

.form-group h5 {
    line-height: 200% !important;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
    border: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

textarea,
select,
textarea,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="search"],
input.form-control {
    border-radius: 0;
    height: 45px;
    width: 100%;
    font-size: 14px;
    color: #333;
    box-shadow: none;
    border: 1px solid #BDBDBD;
    cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
    border: 1px solid #BDBDBD;
    width: 18px;
    height: 18px;
    cursor: pointer;
    font-size: 24px;
}

textarea,
textarea.form-control {
    padding-top: 10px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #BDBDBD;
    height: auto;
    cursor: pointer;
}

textarea:focus,
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
.form-control:focus {
    box-shadow: 0px 0px 0px 1px #333;
    border-color: #333;
}

label {
    font-size: 18px;
    line-height: 1.6;
    margin-left: 5px;
    font-weight: normal;
}

option {
    color: #4D4D4D;
}

.form-control {
    border-radius: 0;
    height: 45px;
    color: #9e9e9e;
}

.input-group-addon {
    position: absolute;
    top: 7px;
    z-index: 1;
    left: 17px;
    background: #fff;
    color: #d9d9d9;
    border: 0;
    border-radius: 0;
}

form .contact-category {
    margin-bottom: 50px;
    position: relative;
}

form .contact-category:last-child {
    margin-bottom: 0;
}

.contact-category h2 {
    color: #333;
    font-size: 21px;
    letter-spacing: 0.06em;
    margin-left: 15px;
    font-weight: bold;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.6;
}

.contact-category h2 span {
    color: #ff3d00;
}

.form-box {
    padding-top: 20px;
}

.form-box h5 {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    margin-left: 0;
    color: #333;
}

.form-box h5 span {
    font-size: 16px;
    letter-spacing: 0;
    margin-left: 7px;
    color: #ff3d00;
    padding: 2px;
}

.form-box a{
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    color: #333;
}

.form-box a:hover{
    color: #CCAA66;
}

.form-group > div {
    display: inline-block;
    margin-left: 10px;
}

/*-- company_page --*/
.company_page {
    position: relative;
}

.company_page .colored_blue {
    margin-top: 0;
}

.company_page th {
    position: relative;
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 2.4;
    color: #333;
    font-weight: normal;
}

.company_page td {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 2.4;
    color: #333;
}

.company_page .table > tbody > tr > td,
.company_page .table > tbody > tr > th,
.company_page .table > tfoot > tr > td,
.company_page .table > tfoot > tr > th,
.company_page .table > thead > tr > td,
.company_page .table > thead > tr > th {
    border-top: none;
    line-height: 2.4;
    padding: 10px;
}

/*-- table --*/

.company_page .table > thead > tr > th,
.company_page .table > tbody > tr > th,
.company_page .table > tfoot > tr > th,
.company_page .table > thead > tr > td,
.company_page .table > tbody > tr > td,
.company_page .table > tfoot > tr > td {
    border-top: 1px solid rgba(204, 170, 102, 0.6);
    border-bottom: 1px solid rgba(204, 170, 102, 0.6);
    border-left: 1px solid rgba(204, 170, 102, 0.6);
    border-right: 1px solid rgba(204, 170, 102, 0.6);
}

.company_page table {
    width: 100%;
    border-collapse: collapse;
}

.company_page .table {
    margin-top: 0;
    margin-bottom: 0;
}

.company_page th {
    font-weight: inherit;
}

.company_page td,
.company_page th {
    padding: 15px;
    text-align: left;
}

.company_page td {
    font-weight: bold;
}

.company_page td span {
    display: inline-block;
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /*-- Force table to not be like tables anymore --*/
    .company_page table,
    .company_page thead,
    .company_page tbody,
    .company_page th,
    .company_page td,
    .company_page tr {
        display: block;
    }

    /*-- Hide table headers (but not display: none;, for accessibility) --*/
    .company_page thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .company_page tr {}

    .company_page td {
        /*-- "row" --*/
        border: none;
        position: relative;
        padding-left: 50%;
    }

    .company_page td:before {
        /*-- table header --*/
        position: absolute;
        /*-- Top/left values mimic padding --*/
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}

/*-- privacy-policy_page --*/
.privacy-policy_page {
    position: relative;
}

.privacy-policy_page .col-md-12 {
    padding-left: 0;
    padding-right: 0;
}

.privacy-policy_page .privacy-page-info {
    position: relative;
    padding-bottom: 30px;
}

.privacy-policy_page .privacy-page-info h3 {
    font-size: 18px;
    letter-spacing: 0.06em;
    color: #333;
    line-height: 1.8;
    font-weight: bold;
}

.privacy-policy_page .privacy-page-info h3 span {
    display: inline-block;
}

.privacy-policy_page .privacy-page-info p {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 2;
    color: #333;
}

.privacy-policy_page .privacy-page-info p span {
    display: inline-block;
}

/*-- sitemap_page --*/
.sitemap_page {
    position: relative;
}

.sm-link {
    font-size: 18px;
    padding: 15px;
    margin-bottom: 15px;
    color: #333;
}

.sm-link a {
    color: #333;
}

.sm-link a:hover {
    color: #CCAA66;
}

/*-- back to top --*/
.back-to-top {
    position: fixed;
    bottom: 145px;
    right: 20px;
    z-index: 10;
    width: 61px;
    height: 61px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease-In-Out;
    transition: opacity 0.2s ease-In-Out;
    opacity: 0;
    background: url(../img/btt_bg.png) no-repeat;
    background-size: 61px 61px;
    box-shadow: 0 12px 14px 0 rgba(0, 0, 0, 0.13);
    font-size: 37px;
}

.back-to-top i {
    font-size: 37px;
    color: #000;
    line-height: 1.6;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top.show:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    color: #fff;
}

.back-to-top.show:focus {
    color: #fff;
}

/*-- Media Query --*/
@media only screen and (max-width: 1024px) {
    .videoContainer {
        /*height: auto;*/
    }

    .navbar-default .navbar-nav > li > a {
        padding-left: 0.8em;
        padding-right: 0.8em;
    }
}

@media (min-width: 768px) {
    #navigation ul.navbar-nav {
        position: relative;
        left: 50%;
    }

    #navigation .nav > li {
        position: relative;
        left: -50%;
    }

    .navbar-default .navbar-nav > li > a:after {
        content: "";
        position: absolute;
        display: block;
        bottom: -5px;
        left: 0;
        right: 0;
        margin: auto;
        width: 70%;
        height: 2px;
        transform: scaleX(0);
        background-color: rgba(204, 170, 102, 1);
        transition: all .2s ease;
    }

    .navbar-default .navbar-nav > li > a:hover:after {
        transform: scaleX(1);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #intro-section .intro_txt h1 {
        font-size: 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 15px;
        padding: .5em .1em;
    }
}

@media (max-width: 767px) {
    .navbar-header {
        min-height: 85px;
    }

    #menu {
        overflow: scroll !important;
        overflow-x: hidden;
        overflow-y: scroll !important;
        max-height: 280px !important;
        -webkit-overflow-scrolling: touch;
    }

    #navigation .navbar {
        background: #fff;
    }

    #navigation .navbar-collapse {
        background: #fff;
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .navbar-default {
        text-align: left;
    }

    .navbar-default .navbar-nav > li > a {
        color: #333;
        text-align: left;
        padding-left: 0;
    }

    #navigation .navbar-brand {
        float: none;
        height: auto;
        padding: 0;
    }

    .navbar-brand img {
        position: absolute;
        top: 25px;
        width: 280px;
        left: 15px;
    }

    .navbar-default .navbar-toggle {
        top: 20px;
        margin-right: 0;
        right: 15px;
        padding: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 667px) {
    #preloader {
        background-image: url(../img/preloader.png);
        background-size: 150px 150px;
    }

    .navbar-default .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-default .navbar-nav > li > a.current {
        color: rgba(204, 170, 102, 1);
    }

    .videoContainer {
        position: relative;
        width: 100%;
        height: auto;
    }

    .videoContainer video {
        width: 100%;
        height: 100%;
        position: static;
        transform: translate(0);
        min-height: 100%;
        min-width: 100%;
        overflow: hidden;
        opacity: 0.8;
    }

    .pt100 {
        padding-top: 0;
    }

    #intro-section .intro_txt h1 {
        font-size: 20px;
        text-align: left;
        letter-spacing: 0.03em;
    }

    #intro-section .intro_txt p {
        font-size: 16px;
    }

    #owner_intro-section .owner_intro-item-right h2 {
        font-size: 22px;
    }

    #content-section {
        padding: 50px 0;
    }

    #content-section h2 {
        font-size: 22px;
    }

    #content-section img {
        margin-bottom: 50px;
    }

    #contact-section h3,
    #contact-section h3 a {
        font-size: 24px;
        text-align: left;
    }

    #contact-section h4 {
        font-size: 18px;
        text-align: left;
    }

    #contact-section .table-content p {
        font-size: 16px;
        text-align: left;
    }

    #contact-section tr {
        font-size: 14px;
    }

    #hero-title .hero-text h2 {
        font-size: 15px;
    }

    #hero-title .breadCrumb .breadCrumb-nav li > a {
        font-size: 15px;
    }

    #hero-title .breadCrumb {
        top: auto;
        bottom: 10px;
    }

    .news_page .cate_box .item_title,
    .page-with-cate_1 .cate_box .box_title1,
    .page-with-cate_2 .cate_box .box_title1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .page-with-cate_2 .cate_box .box_txt1,
    .page-with-cate_2 .cate_box a,
    .page-with-cate_2 .cate_box .box_txt2,
    .page-with-cate_2 .cate_box .box_txt3 {
        padding-left: 0;
    }

    .page-with-cate_2 .cate_box .box_txt2,
    .page-with-cate_2 .cate_box .box_txt3 {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 16px;
    }

    .form-box h5 {
        font-size: 18px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        background-size: 45px 45px;
        font-size: 32px;
    }

    .back-to-top i {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media screen and (min-width:0\0) {

    #contact-section td,
    #contact-section th {
        padding-top: 15px;
    }

    .button {
        padding-top: 18px;
    }

    .back-to-top {
        right: 40px;
    }

    .news_page .pagination a {
        padding-top: 15px;
    }

    .menu-naviNav a {
        padding-top: 20px;
    }

    .page-with-cate_1 .cate .cate_title,
    .page-with-cate_2 .cate .cate_title {
        padding-top: 12px;
    }

    .page-with-cate_2 .cate_box .box_title1,
    .page-with-cate_2 .cate_box .box_title2 {
        padding-top: 10px;
    }

    .page-with-cate_2 .cate_box .box_txt2,
    .page-with-cate_2 .cate_box .box_txt3 {
        padding-top: 20px;
    }

    .company_page .table > tbody > tr > td,
    .company_page .table > tbody > tr > th,
    .company_page .table > tfoot > tr > td,
    .company_page .table > tfoot > tr > th,
    .company_page .table > thead > tr > td,
    .company_page .table > thead > tr > th {
        padding-top: 15px;
    }

}
