@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

@font-face {
    font-family: 'Rochester';
    src: url('./assets/fonts/Rochester.eot');
    src: url('./assets/fonts/Rochester.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/Rochester.woff') format('woff'),
        url('./assets/fonts/Rochester.ttf') format('truetype'),
        url('./assets/fonts/Rochester.svg#Rochester') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* General */
body {
    font-family: 'Noto Sans Japanese', serif;
    color: #000;
    letter-spacing: 1.3px;
    line-height: 180%;
    font-size: 18px;
}

html,
body {
    overflow-x: hidden !important;
}

a {
    text-decoration: none !important;
    transition-duration: 0.3s;
    outline: none !important;
    color: #000;
}

a.op>img,
a>img.op {
    transition-duration: 0.5s;
}

a.op>img:hover,
a>img.op:hover {
    opacity: 0.9;
}

p {
    margin: 0;
}

p+p {
    margin-top: 0.5em;
}

p.btn {
    box-shadow: none !important;
    cursor: default !important;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a {
    display: block;
    width: 100%;
    height: 100%;
    font-weight: bold;
}

ul {
    margin: 0;
    padding: 0;
}

ul::after {
    content: "";
    clear: both;
    display: block;
}

input[type=text],
input[type=number],
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

textarea {
    resize: none;
}

input,
textarea {
    border: none;
    border: 1px #ccc solid;
    border-radius: 0;
    /* box-shadow: none !important; */
}

[class^=col-]>img {
    width: 100%;
}

.dib {
    display: inline-block;
}

.dib>img {
    width: 100%;
}

.rows {
    width: 100%;
    float: left;
}

.txt_style {
    line-height: 180%;
    font-size: 18px;
}

.row_btn {
    padding-top: 15px;
}

.title_sub_style {
    margin: 0 0 40px 0;
    text-align: center;
    position: relative;
}

.title_sub_style::after {
    position: absolute;
    left: 50%;
    content: "";
    display: block;
    width: 40px;
    transform: translateX(-50%);
    border-top: 2px solid #ab7d40;
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
}

img {
    max-width: 100%;
}

.br_show {
    display: none;
}

/* End general */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 5px 0;
    z-index: 10000;
}

.header_child {
    background-color: rgba(0, 65, 125, 1);
}

.logo {
    display: inline-block;
    margin: 6px 0px;
}

.logo a {
    position: relative;
    display: block;
    width: 370px;
    height: auto;
}

.logo a img {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: auto;
    height: auto;
}

.menu_pc {
    width: calc(100% - 370px - 20px);
    float: right;
    height: auto;
    margin-top: 7px;
}

.menu_pc li {
    position: relative;
    float: left;
    width: calc(100% / 6);
    height: 50px;
    margin: 0;
    font-size: 10px;
    list-style: none;
}

.menu_pc li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: #CCC;
    transform: translateY(-50%);
}

.menu_pc li:not(:last-child)::after {
    background-color: #FFF;
}

.menu_pc li a {
    display: block;
    line-height: 1.3;
    text-align: center;
    padding: 0 5px;
    color: #fff;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.menu_pc li a img {
    width: auto;
    height: 21px;
    margin: 0 0 8px 0;
}

.menu_pc li a span {
    display: inline-block;
    width: 100%;
    color: #333;
    font-size: 14px;
    color: #FFF;
}

.menu_pc li:last-child a {
    border: none;
}

/* End header */
/* Slider */
.slider_wrap {
    height: 100vh;
    position: relative;
    z-index: 1000 !important;
}

.slider_wrap .container {
    position: relative;
    height: 100%;
}

.slider_wrap a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    padding-top: 60px;
}

.slider_wrap a .slide_arrow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px !important;
    box-sizing: border-box;
}

.slider_wrap a .slide_arrow::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

.slider_wrap a::after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 18px;
    height: 18px;
    content: '';
    margin-left: -9px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.slider_wrap a .slide_arrow::after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 18px;
    height: 18px;
    content: '';
    margin-left: -9px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.slide_txt {
    font-size: 35px;
    font-weight: bold;
    line-height: 160%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* End slider */
/* Banner */
.banner_ct {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.overlay_banner {
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 0px;
}

.banner_ct h2 {
    color: #FFF;
    font-size: 22px;
    margin: 40px 0px 0px 0px;
}

.banner_ct h1, .banner_ct p {
    color: #FFF;
    font-size: 22px;
    margin: 40px 0px 0px 0px;
}

.banner_ct_en {
    display: inline-block;
    min-width: 200px;
    border-top: 1px solid #fff;
    color: #FFF;
    font-size: 10px;
    font-weight: normal;
    margin: 10px 0 0 0;
    padding: 12px 0 0 0;
    text-transform: uppercase;
}

/* End banner */
/* Breadcrumb */
.breadcrumb_ct {
    background-color: #FFF;
    margin: 0;
    font-size: 12px;
    padding: 5px 0;
}

.breadcrumb_ct .bc_ft {
    display: inline-block;
    background-image: url(assets/images/icon_home.png);
    background-position: left 45%;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    padding-left: 22px;
    color: #333;
}

/* End breadcrumb */
/* Content */
.content_wrap {
    background-color: #F6F6F6;
    padding: 50px 0;
}

.content_ct {
    background: #FFF;
    padding: 40px 30px;
}

.row_content {
    padding: 30px 0;
}

.row_content:first-child {
    padding-top: 0;
}

.row_content:last-child {
    padding-bottom: 0;
}

.container-fluid .no_ct,
.container-fluid .no_ct_pd {
    padding: 0;
}

.container-fluid .content_ct {
    background: none;
    padding: 0;
}

/* End content */
/* Message */
.message_wrap {
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 590px;
}

.message_wrap::before {
    position: absolute;
    top: -25%;
    left: 0;
    content: "";
    display: block;
    width: 250px;
    height: 150%;
    background-color: #FFF;
    transition-duration: 2s;
    transform: translate(-100%);
    transform-origin: right 50%;
    z-index: 500;
}

/* .message_wrap.aos-animate::before {
    transform: translate(-100%) rotate(35deg);
} */

.message_wrap::after {
    position: absolute;
    top: -25%;
    left: 48%;
    content: "";
    display: block;
    width: 100%;
    height: 200%;
    background-color: #FFF;
    transition-duration: 2s;
    transform-origin: left 50%;
    z-index: 500;
}

.message_wrap.aos-animate::after {
    transform: rotate(-19deg);
}

.message_wrap .message_ct {
    position: relative;
    float: right;
    width: 50%;
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 15px;
    z-index: 1000;
}

.message_wrap .message_ct::after {
    content: "";
    clear: both;
    display: block;
}

/* End message */
/* Service */
.row_service,
.row-gallery,
.gallery_p {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.service_wrap {
    background-color: #F6F6F6;
    padding: 58px 0 66px 0;
}

.service_item {
    margin-bottom: 30px;
}

.service_des {
    padding: 0 20px;
    margin-top: -35px;
    position: relative;
}

.service_dec_ct {
    background: #434D96;
    padding: 10px;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
}

.service_des_en {
    font-size: 13px;
    font-family: "Times New Roman", Times, serif;
}

/* End service */
/* Contact index */
.contact_ct {
    background-color: #F6F6F6;
    padding: 40px 0;
}

.contact_ct [class^=col-] {
    margin: 0;
    /* position: relative; */
}

.contact_ct [class^=col-]:nth-child(1) {
    border-right: 1px solid #000;
}

.contact_ct [class^=col-] a {
    display: block;
    color: #333;
    text-align: center;
    text-decoration: none !important;
    padding: 20px 0;
}

.contact_ct_title {
    font-size: 25px;
    display: inline-block;
    padding-bottom: 30px;
}

.contact_ct_number {
    font-size: 30px;
    font-weight: bold;
}

.contact_ct img {
    margin-bottom: 20px;
}

/* End contact index */
/* Button style */
.btn_style {
    padding: 10px 64px;
    border-radius: 0;
    background-size: 10px 18px !important;
    color: #fff !important;
    display: inline-block;
}

/* End button style */
/* Footer */
footer {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

footer [class^=col-] {
    border-left: 1px solid #FFF;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    float: none;
    width: 49.5%;
}

footer [class^=col-]:first-child {
    border: none;
}

.overlay_ft {
    padding: 42px 0 15px 0;
    background: rgba(0, 0, 0, 0.6);
}

.logo_ft,
.logo_ft a {
    display: inline-block;
    margin: 0;
}

.logo_ft a img {
    width: 100%;
    max-width: 300px;
}

footer [class^=col-]>h4,
footer [class^=col-]>h4>a {
    display: block;
    color: #FFF;
    font-size: 15px;
    text-align: left;
}

footer [class^=col-]>ul+h4 {
    margin: 35px 0 0 0;
}

footer [class^=col-]>ul>li {
    list-style: none;
}

footer [class^=col-]>ul>li>a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #FFF;
    font-size: 12px;
    text-align: left;
    text-decoration: none !important;
}

.copyright {
    color: #FFF;
    font-size: 14px;
    text-align: center;
    margin: 114px 0 0 0;
}

/* End footer */
/* Page top */
.back_to_top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 2px;
    cursor: pointer;
    z-index: 10000;
}

.back_to_top:hover{
    opacity: 0.7;
}

.back_to_top>img {
    width: 100%;
}

/* End page top */
/* Index news & banner ----------------- */
.ind_news_ct {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 67px 0 57px 0;
}

.ind_news_ct .container {
    position: relative;
}

.ind_news_ct .container::before {
    position: absolute;
    bottom: -25%;
    left: 0;
    content: "";
    display: block;
    width: 90%;
    height: 150%;
    background-color: rgba(255, 255, 255, 1);
    transition-duration: 4s;
    transform-origin: left bottom;
    z-index: 1;
}

.ind_news_ct .container[data-aos]::before {
    left: 15px;
}

.ind_news_ct .container.aos-animate::before {
    transform: rotate(-2.6deg);
    -webkit-transform: rotate(-2.6deg);
    -moz-transform: rotate(-2.6deg);
    -ms-transform: rotate(-2.6deg);
    -o-transform: rotate(-2.6deg);
}

.ind_news_ct .container::after {
    position: absolute;
    bottom: -25%;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 150%;
    background-color: rgba(255, 255, 255, 1);
    transition-duration: 4s;
    transform-origin: right bottom;
    z-index: 1;
}

.ind_news_ct .container[data-aos]::after {
    right: 15px;
}

.ind_news_ct .container.aos-animate::after {
    transform: rotate(2.6deg);
    -webkit-transform: rotate(2.6deg);
    -moz-transform: rotate(2.6deg);
    -ms-transform: rotate(2.6deg);
    -o-transform: rotate(2.6deg);
}

.ind_col_left,
.ind_col_right {
    z-index: 1500;
}

.ind_news {
    overflow-y: auto;
    height: 300px;
    min-height: 300px;
    margin: 5px 0 0 0;
    padding: 0 20px 0 0;
}

.ind_news_item {
    line-height: 1.7;
    font-size: 12px;
    border-bottom: 1px solid #CCC;
    margin: 36px 0 0 0;
    padding: 0 0 36px 0;
    width: 100%;
    float: left;
}

.ind_news_item:first-child {
    margin: 0;
}

.ind_news_item:last-child {
    border: none;
}

.ind_new_date {
    width: 100%;
    float: left;
    line-height: 22px;
    color: #555;
    font-size: 14px;
}

.ind_new_txt {
    width: 100%;
    float: left;
}

.ind_banner_item {
    margin-bottom: 20px;
}

.ind_banner_item:last-child {
    margin-bottom: 0;
}

.ind_banner_item a {
    display: block;
}

/* End index news & banner----------------- */
/* Banner general---------------------- */
.banner_general_item {
    margin-bottom: 30px;
}

/* End banner general------------------- */
.block_ct_item {
    margin-bottom: 20px;
}

.block_ct {
    background-color: #a6937c;
    color: #FFF;
    border-radius: 6px !important;
    margin: 0;
    padding: 10px;
    text-align: center;
    display: block;
}

/* Table-------------------------- */
.table-style1 table {
    width: 100%;
}

.table-style1 tr td {
    background-color: #F6F6F6;
    border: 1px solid #FFF;
    font-size: 13px;
    padding: 20px 20px;
}

.table-style1 tr td:first-child {
    width: 30%;
    max-width: 250px;
    background-color: #f7f4ee;
    border: 1px solid #FFF;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

/* End table------------------------ */
/* Layout----------------- */
.layout-column-img {
    text-align: center;
    margin-bottom: 20px;
}

/* End layout------------------- */
/* Google map--------------- */
.row-map iframe {
    width: 100%;
    float: left;
    height: 300px;
    border: 0 !important;
}

/* End google map------------------ */
/* Contact--------------------- */
.contact-form-st1 {
    width: 100%;
}

.contact-form-st1 tr td {
    background-color: #F6F6F6;
    border: 1px solid #FFF;
    font-size: 16px;
    padding: 20px 20px;
}

.contact-form-st1 tr td:first-child {
    width: 30%;
    max-width: 250px;
    background-color: #f7f4ee;
    border: 1px solid #FFF;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.contact-form-st1 tr td .form-group {
    margin-bottom: 0;
}

.contact-form-st1 tr td input[type=text],
.contact-form-st1 tr td textarea {
    width: 100%;
    float: left;
    border: none;
    border-radius: 0;
    border: 1px #E6E6E6 solid;
    padding: 10px;
    box-shadow: none;
}

.contact-form-st1 tr td input[type=text] {
    height: 37px;
}

.contact-form-st1 tr td textarea {
    height: 140px;
    resize: none;
}

.contact-form-st1 tr td select {
    width: 100%;
    box-shadow: none !important;
    border-radius: 0;
}

.contact-form-st1 tr.tr_btn td,
.contact-form-st1 tr.agree_check td {
    text-align: center;
    background: none;
}

.btn_submit {
    /* background-color: #111; */
    border-color: #111;
    color: #FFF;
    padding: 6px 30px;
    box-shadow: none;
    border: 0;
    width: 120px;
    margin-right: 20px;
}

.btn_reset {
    background-color: #ccc;
    border-color: #ccc;
    color: #000;
    padding: 6px 30px;
    box-shadow: none;
    border: 0;
    width: 120px;
}

.contact-note {
    float: right;
    display: inline-block;
    width: 44px;
    height: 20px;
    line-height: 17px;
    background-color: #434d96;
    color: #FFF;
    font-size: 10px;
    font-weight: normal;
    text-align: center;
    margin: 6px 0 0 10px;
}

/* End contact-------------- */
/* Service page child-------------- */
.service_item_p {
    margin-bottom: 20px;
}

.service_image_p {
    padding-bottom: 20px;
}

.service_title_p {
    width: 100%;
    float: left;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    line-height: 26px;
}

.service_des_p {
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}

.service_btn_p {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 15px;
}

.service_btn_p a {
    display: block;
    padding: 10px 10px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    background: #000;
}

.service_btn_p a:hover {
    -webkit-transition: 0.33s ease-in-out;
    -moz-transition: 0.33s ease-in-out;
    -o-transition: 0.33s ease-in-out;
    transition: 0.33s ease-in-out;
}

/* End service page child-------------- */
/* Gallery-------------- */
.gallery_item {
    margin-bottom: 30px;
}

/* End gallery-------------- */
/* Gallery 02-------------- */
.gallery_item_p {
    margin-bottom: 30px;
    text-align: center;
}

.gallery_text_p {
    padding-top: 10px;
    display: block;
}

/* End gallery 02-------------- */
/* FAQ-------------- */
.row_faq .panel-heading {
    padding: 0;
    border: 0;
}

.row_faq .panel-title>a,
.row_faq .panel-title>a:active {
    display: block;
    padding: 15px;
    color: #555;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

.row_faq .panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
}

.row_faq .panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.row_faq .panel-heading a p {
    padding-right: 30px;
}

.row_faq .panel-heading {
    display: table;
}

.row_faq .icon_question {
    font-size: 30px;
    display: table-cell;
    padding: 15px;
    width: 60px;
}

.row_faq .panel-title {
    display: table-cell;
    vertical-align: middle;
    line-height: 160%;
    text-align: left;
    width: 95%;
}

.row_faq .panel-title p {
    margin: 0 !important;
}

.row_faq .icon_answer {
    border-top: 1px solid #ddd;
    font-size: 30px;
    display: table-cell;
    padding: 15px;
    vertical-align: top;
    width: 60px;
}

.row_faq .txt_answer {
    width: 95%;
    display: table-cell;
}

/* End faq-------------- */
/* Instagram-------------- */
#instagram_p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    float: left;
}

#instagram_p li {
    list-style: none;
    float: left;
    padding: 1px 1px;
    width: 12.49%;
    border-collapse: collapse;
}

#instagram_p li a {
    display: block;
}

#instagram_p li a:hover {
    opacity: 0.5;
}

#instagram_p li a img {
    width: 100% !important;
    max-width: inherit;
}

/* End instagram-------------- */
/* Blog-------------- */
.row_blog {
    width: 100%;
    float: left;
}

.row_blog iframe {
    width: 100%;
    float: left;
    height: 350px;
    border: 0;
}

/*
/* End blog-------------- */
/* Font style-------------- */
.sawarabi {
    font-family: "Sawarabi Mincho" !important;
}

/* End font style-------------- */
/* Style function and raku-------------- */
#hs_create_file_html {
    position: fixed;
    left: 0;
    top: 200px;
    z-index: 9999999;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    width: 220px;
    text-align: left;
    border: 1px #ccc solid;
    background: #fff;
    padding: 10px;
}

.title-func-st1 {
    text-align: center;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 20px;
}

.btn-func-st1 {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    text-align: left;
}

#formAdmin {
    display: none;
}

/* ._edEdit .data-wrap {
    height: auto !important;
    width: inherit !important;
    left: 0;
}

._edEdit .data-wrap img {
    max-width: 100% !important;
    position: relative;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
} */

/* End style function and raku-------------- */

/* Add style */

header,
.btn_submit {
    background: #434D96;
}

.btn_style {
    background: #434D96 url(assets/images/arrow_01.png) right 18px center no-repeat;
}

/*.message_wrap {
    background-image: url(assets/images/top_img01.jpg);
}
*/
.message_wrap {
    background-image: url(assets/images/top_img01.jpg);
    background-position-x: calc(-25vw + 50%);
}

.ind_news_ct {
    background-image: url(assets/images/message_banner.png);
}

footer {
    background-image: url(./assets/images/banner_ft.png);
}

.banner_company {
    background-image: url(assets/images/company_banner.png);
}

.banner_contact {
    background-image: url(assets/images/contact_banner2.png);
}

.banner_message {
    background-image: url(assets/images/message_banner.png);
}

.banner_work {
    background-image: url(assets/images/work_banner.png);
}

a {
    text-decoration: none !important;
    transition-duration: 0.3s;
    outline: none !important;
    color: #000;
}

#top_cont_add {
    padding: 40px 0 30px 0;
}

.fml_rochester {
    font-family: 'Rochester';
    letter-spacing: 5px;
}

ul.menu_pc li:hover,
ul.menu_pc li.current_page_item {
    border-bottom: 1px solid #fff;
}

.row_footer ul li.current_page_item span,
.row_footer ul li:hover span {
    border-bottom: 1px solid #fff;
}

ul.ul_build {
    list-style: none;
    padding: 0;
}

ul.ul_build li {
    padding-left: 1.3em;
    font-size: 16px;
}

ul.ul_build li:before {
    content: "\f1ad";
    /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    /* same as padding-left set on li */
    width: 1.3em;
    /* same as padding-left set on li */
    color: #00b7ce;
}
.company_table tr td:first-child{
    width: 10%;
    vertical-align: top;
    font-size: 16px;
    color: #00b7ce;
}
.company_table tr td{
    vertical-align: bottom;
    font-size: 16px;
    line-height: 180%;
}
#ind_content02 img{
    width: 100%;
}

/* End add style */

@media screen and (max-width:1366px) {

    /* Message */
    .message_wrap {
        min-height: inherit;
    }

    .message_wrap::after {
        left: 50%;
    }
}

@media screen and (max-width:1200px) {

    /* Message */
/*    .message_wrap.aos-animate::after {
        transform: rotate(16deg);
    }*/
	.overlay_banner {
        background: rgba(0, 0, 0, 0.6);
        padding: 100px 0px;
    }
    .logo {
        width:30%;
    }
    .logo a {
        width:100%;
        /*bottom:-5px;*/
    }
    .menu_pc {
        width: calc(70% - 20px);
    }

    header .container {
        width: 100%;
    }

}


    .br-tab {
        display: block;
    }

@media screen and (max-width:992px) {

    .mic-topsideimg img {
        height: auto;
        margin: 20px 0 0;
    }

    .br-tab {
        display: none;
    }

    /* Header */
    .menu_pc {
        width: 100%;
    }

    .logo {
        width: 100%;
    }

    .logo a {
        width: 50%;
        margin: 0 auto;
    }

    /* Content */
    .content_ct {
        padding: 20px 0;
    }

    /* Margin---------------- */
    .mgt-30 {
        margin-top: 15px;
    }

    .mgt-40 {
        margin-top: 20px;
    }

    .mgt-50 {
        margin-top: 25px;
    }

    .mgt-60 {
        margin-top: 30px;
    }

    .mgt-70 {
        margin-top: 35px;
    }

    .mgt-80 {
        margin-top: 40px;
    }

    .mgt-90 {
        margin-top: 45px;
    }

    .mgt-100 {
        margin-top: 50px;
    }

    /* End margin-------------------- */
    /* Padding---------------- */
    .pdt-30 {
        padding-top: 15px;
    }

    .pdt-40 {
        padding-top: 20px;
    }

    .pdt-50 {
        padding-top: 25px;
    }

    .pdt-60 {
        padding-top: 30px;
    }

    .pdt-70 {
        padding-top: 35px;
    }

    .pdt-80 {
        padding-top: 40px;
    }

    .pdt-90 {
        padding-top: 45px;
    }

    .pdt-100 {
        padding-top: 50px;
    }

    /* End padding-------------------- */
    .br_show {
        display: inline-block;
    }

    /* Service page child-------------- */
    .service_item_p {
        width: 50%;
        float: left;
    }

    /* End service page child-------------- */
    /* Gallery 02-------------- */
    .gallery_item_p {
        margin-bottom: 30px;
        width: 50%;
    }

    /* End gallery 02-------------- */
    /* Contact----------------- */
    .contact-form-st1 tr td:first-child {
        width: 40%;
    }

    /* End contact------------- */
}


@media screen and (min-width:768px) {

    /* Header */
    .menu_pc {
        display: block;
    }

    .menu_sp {
        display: none;
    }
}
@media screen and (max-width:768px) {
    .message_wrap.aos-animate::after {
        transform: rotate(1deg);
    }
}
@media screen and (max-width:767px) {

    .mic-topsideimg img {
        height: unset;
        margin: unset;
    }

    .banner_ct {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .f-24 {
        font-size: 20px;
    }
    body {
        font-size: 16px;
    }

    .h3,
    h3 {
        font-size: 18px;
    }

    .txt_style {
        font-size: 16px;
    }

    ul.menu_pc li:hover,
    ul.menu_pc li.current_page_item {
        border-bottom: 1px solid #ccc;
    }

    ul.menu_pc li:hover,
    ul.menu_pc li.current_page_item {
        /*background: rgba(0, 183, 206, 0.7);*/
        color: #fff;
        background-color: #434d96;
    }

    .menu_pc li:not(:last-child)::after {
        width: 0px;
    }

    ul.menu_pc li:hover span,
    ul.menu_pc li.current_page_item span {
        color: #fff;
    }

    .copyright {
        margin: 60px 0 0 0;
    }

    .menu_pc {
        margin-top: 10px;
    }

    /* Header */
    .menu_pc {
        display: none;
    }

    .menu_sp {
        display: block;
    }

    header {
        position: fixed;
        z-index: 9999;
        height: 50px;
        padding: 0;
        background-color: #434d96;
    }

    header .container {
        padding: 0;
    }

    .logo {
        float: none;
        width: auto;
        height: 25px;
        margin: 9px 0 0 8px;
        line-height: 0;
    }

    .logo a {
        width: 190px;
		bottom:0px;
    }

    .logo a img {
        width: auto;
        height: auto;
    }

    .menu_sp {
        float: right;
        list-style: none;
        height: 40px;
    }

    .menu_sp li {
        float: left;
        text-align: center;
        width: 56px;
        height: 50px;
        border-right: 1px solid #FFF;
    }

    .menu_sp li:last-child {
        border-right: none;
    }

    .menu_sp li a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        background-color: #2e3569;
    }

    .menu_sp li:last-child a {
        background-color: #2e3569;
    }

    .menu_sp li a img {
        position: absolute;
        top: 20%;
        left: 50%;
        width: auto;
        height: 25px;
        transform: translateX(-50%);
    }

    .menu_sp li a .menu_txt {
        position: absolute;
        bottom: -2px;
        left: 0;
        display: block;
        width: 100%;
        color: #FFF;
        font-size: 9px;
    }

    .menu_pc {
        background: #fff;
        width: 100%;
        float: left;
        height: auto;
    }

    .menu_pc li {
        width: 100%;
        height: auto;
        border-bottom: 1px #ccc solid;
        padding: 0;
    }

    .menu_pc li:last-child {
        border-bottom: 0;
    }

    .menu_pc li a {
        color: #000 !important;
        padding: 15px;
    }

    .menu_pc li a img {
        display: none;
    }

    .menu_pc li a span {
        color: inherit;
        font-size: 14px;
    }

    /* Slider */
    .slider_wrap {
        margin-top: 40px;
    }

    .slide_txt {
        font-size: 20px;
    }

    .slider_wrap {
        height: 300px;
    }

    .slider_wrap img {
        top: 35%;
        left: 40%;
        width: 70%;
    }

    /* Banner */
	.overlay_banner {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 0px ;
}
    .banner_ct {
        margin-top: 0px;
        margin-bottom: -20px;
    }

    /* Content */
    .contents {
        padding-right: 0;
        padding-left: 0;
    }

    /* Title */
    .row-title {
        width: 100%;
        float: left;
    }

    /* Message */
    .message_wrap {
        background-size: cover;
    }

    .message_wrap::after {
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .message_wrap::before,
    .message_wrap::after {
        display: none;
    }

    .message_wrap .container {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .message_wrap .message_ct {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }
	ul.ul_build li {
    font-size: 12px;
	}
	.company_table tr td{
    font-size: 12px;
	}
    /* Service */
    .service_dec_ct {
        font-size: 12px;
    }

    .service_des_en {
        font-size: 12px;
    }
	.f-16 {
        font-size: 12px;
    }
		.f-18 {
        font-size: 13px;
    }
		.f-30 {
        font-size: 15px;
    }
	.mgt-100 {
		margin-top:20px;
	}
    /* Index news & banner ----------------- */
    .ind_col_right {
        margin-top: 30px;
    }

    /* Contact index */
    .content_wrap {
        padding: 30px 0 0 0;
    }

    .contact_ct {
        padding: 20px 0;
    }

    .contact_ct [class^=col-] a p {
        font-size: 12px;
        font-weight: bold;
    }

    /* Footer */
    .row_footer {
        padding: 0 15px;
    }

    footer [class^=col-]:first-child {
        padding: 30px 0;
    }

    footer [class^=col-] {
        padding: 10px 30px;
    }
	.contact_ct [class^=col-]:nth-child(1){
		border-right: none;
	}

    /* FAQ-------------- */
    .row_faq {
        width: 100%;
        float: left;
    }

    /* End faq-------------- */
    /* Instagram-------------- */
    #instagram_p li {
        width: 25%;
    }

    /* End instagram-------------- */
    /* Blog-------------- */
    .blog_p {
        width: 100%;
        float: left;
    }

    /* End blog-------------- */
    /* Faq----------- */
    .row_faq .panel-title {
        font-size: 14px;
    }

    /* End faq----------- */
    /* Contact------------ */
    .contact-form-st1 tr td {
        padding: 10px;
    }

    /* End contact----------- */
}

@media screen and (max-width:640px) {

    /* Service */
    .service_item {
        width: 100%;
    }

    .service_item:last-child {
        margin-bottom: 0;
    }

    /* Banner general---------------------- */
    .banner_general_item {
        width: 100%;
        float: left;
        margin-bottom: 20px;
    }

    .banner_general_item:last-child {
        margin-bottom: 0;
    }

    /* End banner general------------------- */
    /* Gallery-------------- */
    .row-gallery {
        padding: 0 10px;
    }

    .gallery_item {
        margin-bottom: 10px;
        padding: 0 5px;
    }

    /* End gallery-------------- */
    /* Blog-------------- */
    .row_blog {
        max-height: 405px;
    }

    /* End blog-------------- */
    /* Contact------------ */
    .contact-form-st1 tr td {
        width: 100% !important;
        float: left;
    }

    .contact-form-st1 tr td:first-child {
        max-width: inherit;
    }

    .btn_submit,
    .btn_reset {
        width: 100px;
		padding: 6px 20px;
    }

    /* End contact----------- */
}

@media screen and (max-width:520px) {
    /* Service page child-------------- */
    .service_item_p {
        width: 100%;
        float: left;
    }

    .service_item_p:last-child {
        margin-bottom: 0;
    }

    /* End service page child-------------- */
    /* Gallery 02-------------- */
    .gallery_item_p {
        width: 100%;
    }

    /* End gallery 02-------------- */
    /* Footer */
    footer [class^=col-] {
        width: 100% !important;
    }

    /* End footer */
}

@media screen and (max-width:480px) {


    /* Slider */
    .slider_wrap {
        height: 300px;
    }

    .slider_wrap img {
        top: 30%;
        left: 20%;
        width: 70%;
    }

    .slide_txt {
        font-size: 16px;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -75%);
    }

    /* COntact index */
    .contact_ct_title {
        font-size: 15px;
        font-weight: bold;
    }

    .contact_ct [class^=col-] a img {
        height: 60px;
    }

    /* Footer */
    .overlay_ft {
        padding: 30px 0;
    }

    footer [class^=col-] {
        margin: 0;
        padding: 10px 15px;
    }

    /* Table-------------------------- */
    .table-style1 tr td {
        padding: 10px;
    }

    /* End table------------------------ */
    /* Google map--------------- */
    .row-map iframe {
        height: 220px;
    }

    /* End google map------------------ */
    /* Instagram-------------- */
    #instagram_p li {
        width: 50%;
    }

    /* End instagram-------------- */
    /* Blog-------------- */
    .row_blog {
        max-height: 445px;
    }

    /* End blog-------------- */
    .ind_news_ct {
        background: #fff !important;
    }

    .ind_news_ct .container::after,
    .ind_news_ct .container::before {
        content: none;
    }
}
img.img-news{
	object-fit: cover;
}

.txt_style_top {
    font-size: 18px;
    text-align: left;
    line-height: 180%;
}

.txt_style_top.intro {
    font-size: 22px;
    text-align: left;
    line-height: 1.5;
}

.top-btn {
    display: inline-block;
    margin: 30px 10px 0;
}

.top-btn:hover {
     opacity: 0.7;
}

.top-btn a {
    color: #fff;
    background-color: #434d96;
    padding: 20px;
}

.ind_news_item:first-child {
    margin: 0;
}

.ind_news_item {
    line-height: 1.7;
    font-size: 16px;
    margin: 36px 0 0 0;
    padding: 0 0 36px 0;
    width: 100%;
    float: left;
}

.ind_news_date {
    width: 100%;
    float: left;
    line-height: 22px;
    color: #555;
    font-size: 16px;
    border-bottom: 1px dotted #CCC;
    padding: 15px 0;
}

.blog-btn {
    z-index: 2;
    position: relative;
}

.blog-btn:hover {
     opacity: 0.7;
}

.blog-btn a {
    width: 50%;
    text-align: center;
    display: block;
    background-color: #434d96;
    color: #FFF;
    margin: 20px auto 0;
    padding: 20px;
}

.title-style76::before {
    left: 2%;
    border-top: 2px solid #434d96;
}

.tbl-greeting tr td {
    border: 1px solid #434d96;
    padding: 10px;
}

.tbl-greeting tr td:first-child {
    color: #fff;
    background-color: #434d96;
    border-bottom: 1px solid;
}

.tbl-greeting {
    width: 100%;
}

.sh-management {
    font-weight: bold;
}

.title-style6 {
    color: #000;
    border-left: solid 5px #434d96;
    font-family: 'Noto Sans Japanese', serif!important;
}

.tbl-management tr td {
    border: 1px solid #434d96;
    padding: 15px;
    width: calc(100% / 4);
}

.tbl-management {
    width: 100%;
}

.tbl-management tr td:first-child {
    width: 20%;
}

.management-btn {
    width: 100%;
    text-align: center;
    margin: 30px 0 70px 0;
    float: left;
}

.management-btn:hover {
     opacity: 0.7;
}

.management-btn a {
    background-color: #434d96;
    color: #fff;
    padding: 20px;
}

.desc-flow-title {
    background-color: #afb4d6;
    color: #000;
    padding: 5px;
    text-align: center;
    border-radius: 40px;
    min-height: 58px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.desc-flow {
    margin: 0 0 60px;
    position: relative;
}

.desc-flow::after {
    /*content: "\f063";*/
    content: "\f175";
    font-family: FontAwesome;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #434d96;
}

.desc-flows .desc-flow.last::after {
    content: unset;
}

.desc-flows .desc-flow.last {
    margin: 0 0 30px;
}

.mic-ckbox-cont input[type=checkbox].form-control {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0px 15px 0px 0;
    vertical-align: middle;
}

.mic-ckbox-cont {
    width: 100%;
    margin: 0 0 0 auto;
}

.mic-ckbox-cont.inline {
    width: 100%;
    margin: unset;
}
.mic-ckbox-cont.inline .mic-ckbox {
    display: inline-block;
    margin: 0 20px 0 0;
}

.pnblog {
    width: 100%;
    max-width: 1230px;
    margin: auto;
    padding: 0 15px 100px;
    box-sizing: border-box;
}

.row-blog {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}

.content-blog {
    width: calc(70% - 50px);
}

.head02-blog {
    margin: 0 0 20px;
    font-size: 3.8rem;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
}

.post {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}

.item-blog {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.item-blog-single {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pnsidebar {
    width: 30%;
}

.pnmainsidebar .wp-block-group {
    margin: 0 0 20px;
}

.pntitlesidebar {
    font-size: 28px;
    display: flex;
    font-weight: bold;
    line-height: 1.8em;
}

.pnmainsidebar ul li {
    list-style: none;
    border-bottom: solid 1px #efefef;
    padding: 15px 0;
    background-color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.pnmainsidebar ul a {
    text-decoration: none;
    color: inherit;
}

.pnblog img {
    max-width: 100%;
    height: auto;
}

.item-cover {
    width: 26%;
    margin-right: 1%;
    padding: 15px 0;
    width: calc(25% - 30px - 1%);
}

.item-cover img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

table#wp-calendar caption {
    text-align: left;
}

.item-info {
    width: 73%;
    position: relative;
    padding: 5px 15px 15px;
    width: calc(75% - 30px);
    line-height: 1.8em;
}

.item-title {
    margin: 10px 0;
    display: block;
    font-size: 20px;
    color: #000000!important;
    font-weight: bold;
}

.item-date {
    font-size: 12px;
}

.item-info p {
    font-size: 16px;
    line-height: 2;
}

.item-info-single {
    position: relative;
    width: 100%;
    line-height: 1.8em;
}

span.js-sptbl-hdr {
    display: none;
}

.tbl-management tr:first-child td {
    background-color: #ccdaf2;
    color: #000;
    text-align: center;
    font-weight: bold;
    border: 1px solid;
}

.tbl-management tr td:first-child {
    background-color: #434d96;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    border: 1px solid;
}

.mic-chart {
    width: 100%;
    overflow-x: auto;
}

.mic-chart-container {
    min-width: 1024px;
}

.mic-chrow-inner {
    display: flex;
    justify-content: space-around;
    flex: 100%;
    align-items: stretch;
}

.mic-chart-item {position: relative;flex: 100%;}

.mic-chart-item::before {
    content: "";
    background-color: #888;
    width: 5px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mic-chitem-content {
    margin: 40px auto;
    background-color: #EFEFEF;
    z-index: 3;
    position: relative;
    padding: 10px 15px;
    border-radius: 10px;
    line-height: 1;
    width: fit-content;
    max-width: 100%;
    line-break: anywhere;
}

.mic-chart-container .mic-chart-row:first-child::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    background-color: #FFF;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

.mic-chart-container .mic-chart-row:last-child::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    background-color: #FFF;
    height: 50%;
    top: unset;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.mic-chart-container .mic-chart-row:first-child::before {
    display: none;
} 

.mic-chart-container {
    background-color: #FFF;
}

.mic-chart-row::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: #888;
    margin: 0 auto;
    position: absolute;
}

.mic-chart-row {
    position: relative;
}

.mic-chrow-inner .mic-chart-item:first-child::after,
.mic-chrow-inner .mic-chart-item:last-child::after{
    content: "";
    display: block;
    width: 50%;
    height: 20px;
    position: absolute;
    top: -5px;
    background-color: #FFF;
}

.mic-chrow-inner .mic-chart-item:first-child::after {
    left: 0;
}

.mic-chrow-inner .mic-chart-item:last-child::after {
    right: 0;
}

.mic-chart-row.sub-row {
    display: flex;
    justify-content: space-around;
}

.db-title {
    background-color: #434d96;
    color: #fff;
}

.dg {
    background-color: #86bec5;
}

.db {
    background-color: #8dabd9;
}

.dp {
    background-color: #df8fb6;
}

.lg {
    background-color: #a8d3d9;
}

.lb {
    background-color: #aec8ef;
}

.lp {
    background-color: #eab7d0;
}

span.menu_txt {
    text-transform: uppercase;
}

.tt {
    text-transform: uppercase;
}

.title-style75 {
    line-height: 1.5;
}

.mic-chitem-content {
    width: 150px;
    height:50px;
    padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-row .mic-chart-item .mic-chitem-content {
    width: 100px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0;
}

.mic-chart-row:first-child .mic-chart-item .mic-chitem-content {
    width: 250px;
}

.bb {
    border-bottom: 1px solid #434d96!important;
}

.mic-tick {
    background-color: #fff;
    border: 1px solid #434d96;
    border-radius: 0;
    width: 22px;
    height: 22px;
    padding: 4px;
    margin: 0 15px 0 0;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.fa-check:before {
  content: "\f00c";
  font-size: 28px;
  position: absolute;
  top: -4px;
  left: -2px;
  color: #434d96;
}

.tbl-management tr:first-child td:first-child {
    border-top: #434d96 1px solid;
}

.tbl-management tr:last-child td:first-child {
    border-bottom: #434d96 1px solid;
}

.bullet-txt {
    line-height: 2.2;
    font-size: 22px;
    color: #434d96;
    font-weight: 700;
}

.adr-style {
    font-size: 26px;
    margin-left: 8px;
}

.title-style6 {
    margin-top: 10px;
}

.pc-only {
    display: block;
    margin: 0 auto;
}

.sp-only {
    display: none;
}

.mgb-20-sp {
    margin-bottom: unset;
}

.mgb-5-sp {
    margin-bottom: unset;
}

.fcw a {
    color: #fff;
}

.backstretch img {
    top: 0 !important;
}

.title-style76.top::before {
    margin: 68px 0 0 0;
}

.title-style76.news::before {
    left: 4%;
}

.title-style76.greet::before {
    margin: 68px 0 0 0;
}

.title-style76.greet::before {
    left: 4%;
    border-top: 2px solid #434d96;
}

.hv-o:hover {
    opacity: 0.7;
}

.lh-news {
    line-height: 1.3;
}

.form-control {
    font-size: 16px;
}

.title-style6 {
    font-size: 22px;
}

.f-pc-22-sp-18 {
    font-size: 22px;
}

.f-pc-20-sp-16 {
    font-size: 20px;
}

.f-pc-18-sp-16 {
    font-size: 18px;
}

@media screen and (max-width:992px) {
    h2.title-style76.top.f-24,
	h2.title-style76.greet.f-24,
	h2.title-style76.mic-support.f-24,
	h2.title-style76.forte.f-24,
	h2.title-style76.service.f-24,
	h2.title-style76.news.f-24
	{
        margin: 0 0 40px 0px;
    }
	.title-style76.news::before {
    	left: 0;
	}
    .message_wrap::after {
        left: unset; 
    }

    .message_wrap::after {
        position: unset; 
        top: unset;
        left: unset;
    }

	.message_wrap .message_ct{
		padding-left: 0;
	}

    .message_wrap {
        background-position-x: center;
    }

    #ind_content01 .container {
        width: 750px;
        background-color: rgba(255,255,255,.7);
        margin: 0;
        width: 100%;
    }

    .message_wrap .message_ct {
        width: 100%;
    }

    .backstretch img {
        top: 110px !important;
    }

    .banner_ct {
        margin-top: 80px;
    }

    .title-style76 {
        margin: 0px 0 40px 15px;
        width: calc(100% - 14px);
    }

     .title-style76::before {
        left: 0;
        top: unset;
        bottom: -27px;
        width: 20%;
        transform: unset;
    }
	
	.title-style76.greet::before {
    left: 0%;
	}

    .desc-flows {
        clear: both;
    }

    .fcw a {
        color: #fff;
    }
}

@media screen and (max-width:767px) {

    footer [class^=col-]>ul>li>a {
        font-size: 14px;
    }

    .title-style6 {
        font-size: 18px;
    }

    .f-pc-18-sp-16 {
        font-size: 16px;
    }

    .f-pc-22-sp-18 {
        font-size: 18px;
    }

    .f-pc-20-sp-16 {
        font-size: 16px;
    }

    .backstretch img {
        top: 0 !important;
    }

    .message_wrap {
        background-image: url(assets/images/top_img01.jpg);
        background-position-x: -11vw;
        object-fit: cover;
    }    
    .tbl-management tr td:first-child {
        width: 13%;
    }

    .tbl-management tr td {
        padding: 10px;
    }

    .mgb-5-sp {
        margin-bottom: 5px;
    }

    .mgb-20-sp {
        margin-bottom: 20px;
    }

    .banner_ct {
        margin-top: unset;
    }

    .fcw a {
        color: #fff;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
        margin: 0 auto;
    }

    .desc-flows {
        clear: both;
    }
    
    .mgb-sp {
        margin-bottom: 60px;
    }

    .tbl-greeting tr td, .tbl-greeting tr td:first-child {
        display: block;
        border: 1px solid #434d96;
    }

    .tbl-greeting tr {
        margin: 0 0 15px;
        display: block;
    }

    .mic-ckbox-cont {
        width: 100%;
    }

    .row-blog {
        display: unset; 
    }

    .content-blog {
        width: 100%;
    }

    .item-cover {
        width: 100%;
    }

    .item-info {
        line-height: 2;
        width: 100%;
        padding: unset;
    }

    .pnsidebar {
        width: 100%;
        margin: 40px 0 0 0;
    }

    .item-info-single {
        width: 100%;
    }
/*    .tbl-management tr {
        display: block;
        width: 100%;
        margin: 0 0 20px;
    }
    .tbl-management tr td {
        display: block;
        width: 100%;
    }
    .tbl-management tr td:first-child {
        display: block;
        width: 100%;
    }*/

    tr.sptbl-hdr {
        display: none;
    }

    span.js-sptbl-hdr {
        display: block;
        background-color: #EFEFEF;
        border-left: #434d96 solid 2px;
        padding: 5px;
        margin: 0 0 10px;
    }

    .tbl-management {
        width: 1000px;
    }
    .tbl-management tr td:first-child {
      position: sticky;
      left: 0;
      color: #fff;
      border: 1px solid;
    }

    .ov-tbl {
        width: calc(100% - 20px);
        overflow-x: auto;
        padding: 0;
        margin: 0 10px;
    }

    .tbl-management tr td:first-child::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        width: calc(100% + 1px);
        height: calc(100% + 1px);
        border: 1px solid #fff;
    }

    .breadcrumb_ct .bc_ft {
        padding-left: unset;
    }
	.bullet-txt{
		font-size: 18px;
	}

}
@media screen and (max-width:590px) {
.message_wrap {
    background-position-x: -50vw;
}
}
@media screen and (max-width:480px) {
	.message_wrap {
    background-position-x: -90vw;
}
}

.timeline {
    list-style: none;
	margin-top:10px;
}
.timeline > li {
   margin-bottom: 15px;
}
.timeline-date {
	font-weight: 700;
}

@media ( min-width : 767px ) {
 .timeline > li {
	 overflow: hidden;
	 margin: 0;
	 position: relative;
	 clear: both
}
.timeline-date {
  width: 110px;
  float: left;
}
.timeline-content {
  width: 75%;
  float: left;
  border-left: 3px #d1c9da solid;
  padding-left: 30px;
}
.timeline-content:before {
	content: '';
	width: 12px;
	height: 12px;
	background: #434D96;
	position: absolute;
	left: 105px;
	top: 11px;
	border-radius: 100%;
}
}
.map.col-md-12{
	position: relative;
	z-index: -1;
}
.ta-r{
	text-align: right;
}
.greeting{
	text-align: center;
	margin-top: 10px;
}
.greeting img{
	width: 100%;
    max-width: 335px;
    height: auto;
}
.problem{
	text-align: center;
	margin-top: 10px;
}
.problem img{
	width: 100%;
    max-width: 335px;
    height: auto;
}
.first-time-visitors{
	text-align: center;
	margin-top: 10px;
}
.first-time-visitors img{
	width: 100%;
    max-width: 335px;
    height: auto;
}

/* Custom */
.wpcf7-list-item {
    display: block!important;
}