@charset "UTF-8";

/* top btn */
/* -------------------------------------------- */
.top_btn01 a {
    display: block;
    width: 240px;
    background: #0F3753;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 10px 0;
    border: 2px solid #0F3753;
}

.top_btn01 a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 1.5em;
    transition: all 0s;
}

.top_btn01 a:hover {
    background: #ffffff;
    color: #0F3753;
    text-decoration: none;
}

/* top_subtitle03 */
/* --------------------------------------------- */
.top_subtitle03 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.top_subtitle03::before {
    content: "";
    width: 35px;
    height: 3px;
    background: #0089CA;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

/* top_use */
/* --------------------------------------------- */
.top_use_list {
    display: flex;
    flex-wrap: wrap;
}

.top_use_list li {
    width: 32%;
    margin-left: 2%;
    list-style-type: none;
}

.top_use_list li:nth-child(3n+1) {
    margin-left: 0;
}

.top_use_list li {
    margin-bottom: 20px;
}

.top_use_list li a {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    display: block;
    padding: 20px 15px 20px 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    text-align: center;
    color: #000000;
}

.top_use_list li a span {
    font-size: 15px;
}

.top_use_list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #CCCCCC;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    transition: all 0s;
}

.top_use_list li a:hover::before {
    border-color: #0089CA;
}

.top_use_list li a:hover {
    text-decoration: none;
    box-shadow: 0px 3px 6px 0px rgba(0, 134, 202, 0.50);
    color: #0089CA;
}

.top_use_list li:first-child a {
    background: url("../fonts/top_use_icon01.svg") no-repeat;
    background-position: 10px center;
}

.top_use_list li:nth-child(2) a {
    background: url("../fonts/top_use_icon02.svg") no-repeat;
    background-position: left center;
}

.top_use_list li:nth-child(3) a {
    background: url("../fonts/top_use_icon03.svg") no-repeat;
    background-position: left center;
}

.top_use_list li:nth-child(4) a {
    background: url("../fonts/top_use_icon04.svg") no-repeat;
    background-position: 10px center;
}

.top_use_list li:nth-child(5) a {
    background: url("../fonts/top_use_icon05.svg") no-repeat;
    background-position: 5px center;
}

.top_use_list li:nth-child(6) a {
    background: url("../fonts/top_use_icon06.svg") no-repeat;
    background-position: 5px center;
}

@media only screen and (max-width: 1024px) {

    .top_use_list li {
        width: 48%;
        margin-left: 4%;
    }

    .top_use_list li:nth-child(3n+1) {
        margin-left: 4%;
    }

    .top_use_list li:nth-child(odd) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 690px) {
    .top_use_list {
        flex-direction: column;
        align-items: center;
    }

    .top_use_list li {
        width: 100%;
        margin-left: 0;
        max-width: 350px;
    }

    .top_use_list li:nth-child(3n+1) {
        margin-left: 0;
    }

    .top_use_list li a {
        font-size: 18px;
    }

    .top_use_list li a span {
        font-size: 13px;
    }
}

/* top_size */
/* --------------------------------------------- */
.top_size_list {
    display: flex;
}

.top_size_list li {
    list-style-type: none;
    width: 23.8%;
    margin-left: 1.6%;
}

.top_size_list li:first-child {
    margin-left: 0;
}

.top_size_list li a {
    padding: 25px 0;
    background: #F0F0F0;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-right: 28px;
    color: #000000;
}

.top_size_list li a::before {
    content: "";
    width: 28px;
    height: 100%;
    background: #0F3753;
    position: absolute;
    right: 0;
    top: 0;
}

.top_size_list li a::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 12px;
    transition: all 0s;
}

.top_size_list li a:hover {
    text-decoration: none;
    opacity: 0.7;
}

@media only screen and (max-width: 979px) {
    .top_size_list li a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 690px) {
    .top_size_list {
        flex-wrap: wrap;
    }

    .top_size_list li {
        list-style-type: none;
        width: 48%;
        margin-left: 4%;
        margin-bottom: 20px;
    }

    .top_size_list li:nth-child(odd) {
        margin-left: 0;
    }

    .top_size_list li a {
        font-size: 16px;
    }
}

/* top_shape */
/* --------------------------------------------- */
.top_shape_col3 {
    display: flex;
}

.top_shape_col3 div {
    width: 32%;
    margin-left: 2%;
    transition: all 0.2s;
}

.top_shape_col3 div.bl-hover {
    opacity: 0.7;
}

.top_shape_col3 div:first-child {
    margin-left: 0;
}

.top_shape_col3 div a {
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    position: relative;
    display: block;
    color: #000000;
}

.top_shape_col3 div a::before {
    content: "";
    width: 40px;
    height: 40px;
    background: #0F3753;
    position: absolute;
    right: 0;
    top: 0;
}

.top_shape_col3 div a:hover {
    text-decoration: none;
}

.top_shape_col3 div a::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    transition: all 0s;
}

@media only screen and (max-width: 979px) {
    .top_shape_col3 div a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 690px) {
    .top_shape_col3 {
        flex-direction: column;
        align-items: center;
    }

    .top_shape_col3 div {
        width: 100%;
        max-width: 360px;
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* top_keyword */
/* --------------------------------------------- */
.top_keyword_wrap {
    background: #F0F0F0;
    padding: 30px;
    display: flex;
    align-items: center;
}

.top_keyword_wrap.bg_white {
    background: #ffffff;
    justify-content: center;
    padding: 0;
}

.top_keyword_wrap .keyword_title {
    width: 190px;
    margin-right: 30px;
    border-right: 1px solid #D8D8D8;
}

.top_keyword_wrap.en_word .keyword_title {
	width:220px;
}

.top_keyword_wrap h3 {
    font-size: 20px;
    color: #000000;
}

.top_keyword_wrap .keyword_search {
    width: calc(100% - 220px);
    max-width: 760px;
    display: flex;
}

.top_keyword_wrap #keyword1 {
    width: calc(100% - 120px);
}

.top_keyword_wrap .form-control {
    outline: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    vertical-align: middle;
    font-size: 14px;
    /*color: inherit;*/
    height: 55px;
    padding: 0 20px;
    width: 100%;
    box-shadow: none;
    background: #ffffff;
    border: 1px solid #E2E2E2;
}



.top_keyword_wrap.search_page .form-control {
    border: 1px solid #0086CA;
}

.top_keyword_wrap #submitbutton1 {
    width: 120px;
}

.top_keyword_wrap .btn-primary.btn {
    width: 100%;
    max-width: 300px;
    height: 55px;
    color: #FFF !important;
    padding: 0 !important;
    text-align: center;
    -webkit-appearance: none;
    border-radius: 0;
    border: solid 1px #27284D;
    background-color: #27284D;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.top_keyword_wrap.search_page .btn-primary.btn {
    background-color: #0086CA;
    border: solid 1px #0086CA;
}

@media only screen and (max-width: 979px) {

    .top_keyword_wrap {
        flex-direction: column;
    }

    .top_keyword_wrap .keyword_title,
	.top_keyword_wrap.en_word .keyword_title {
        width: 100%;
        text-align: center;
        margin-right: 0;
        border-right: none;
        margin-bottom: 20px;
    }

    .top_keyword_wrap .keyword_search {
        width: 100%;
    }
}

@media only screen and (max-width: 690px) {
    .top_keyword_wrap {
        padding: 20px 4%;
    }

    .top_keyword_wrap .keyword_search {
        flex-direction: column;
        align-items: center;
    }

    .top_keyword_wrap #keyword1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .top_keyword_wrap .form-control {
        font-size: 12px;
    }
}

/* top_features */
/* --------------------------------------------- */
.top_features {
    background: url("../images/top_features_bg.jpg") no-repeat center top;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 120px;
}

.top_features_col3 {
    display: flex;
}

.top_features_col3>div {
    width: 33.33%;
    text-align: center;
}

.top_features_col3>div h3 {
    font-size: 20px;
    letter-spacing: 0;
}

.top_features_col3>div .top_btn01 a {
    margin-left: auto;
    margin-right: auto;
}

.top_features_col3>div figure {
    width: 190px;
    height: 190px;
    border-radius: 95px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

@media only screen and (max-width: 979px) {
    .top_features {
        padding-bottom: 60px;
    }

    .top_features_col3 {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .top_features_col3>div {
        width: 50%;
        margin-bottom: 30px;
    }

    .top_features_col3>div h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 690px) {
    .top_features {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .top_features_col3 {
        flex-direction: column;
        align-items: center;
    }

    .top_features_col3>div {
        width: 100%;
    }
}

/* top_case (slider) */
/* --------------------------------------------- */
.top_case_area .top_case_block {
    padding: 0 10px;
    transition: all 0.2s;
}

.top_case_area .top_case_block a:hover img {
    opacity: 1;
}

.top_case_area .top_case_block figure {
    margin-bottom: 15px;
}

.top_case_area .top_case_block h3 {
    font-size: 18px;
}

.top_case_area .top_case_block.bl-hover {
    opacity: 0.7;
}

/* top_company */
/* --------------------------------------------- */
.top_company_wrap {
    padding-top: 165px;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.top_company_wrap::before {
    content: "";
    height: 460px;
    width: 100%;
    background: #F0F0F0;
    position: absolute;
    left: 0;
    top: 70px;
}

.top_company_wrap::after {
    content: "";
    width: 1200px;
    height: 535px;
    background: url("../images/top_company_bg.jpg") no-repeat 0 0;
    position: absolute;
    left: calc(50% - 200px);
    top: 0;
}

.top_company_in {
    width: 625px;
    background: #ffffff;
    padding: 30px 50px;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 2;
}

.top_company_in .top_title_center_underbar_en {
    text-align: left;
}

.top_company_in .top_title_center_underbar {
    text-align: left;
}

.top_company_in ul {
    display: flex;
    flex-wrap: wrap;
}

.top_company_in ul li {
    list-style-type: none;
    margin-bottom: 20px;
    width: 48%;
    margin-left: 4%;
}

.top_company_in ul li:nth-child(odd) {
    margin-left: 0;
}

.top_company_in .top_btn01 a {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .top_company_wrap {
        padding-top: 120px;
    }

    .top_company_wrap::before {
        top: 0;
    }

    .top_company_wrap::after {
        content: "";
        width: 100%;
        height: 250px;
        background: url("../images/top_company_bg.jpg") no-repeat 0 0;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 0;
    }

    .top_company_in {
        width: 100%;
        padding: 20px 4%;
    }

    .top_company_in .top_btn01 a {
        font-size: 13px;
    }

    .top_company_in .top_btn01 a::before {
        right: 1em;
    }
}


/* top_column */
/* -------------------------------------------- */
.top_column .dlb_media_time {
    font-size: 14px;
    font-weight: 500;
}

.top_column .dlb_media_02_area .dlb_media_left {
    width: 47%;
}

.top_column .dlb_media_02_area .dlb_media_right {
    width: 53%;
}

.top_column .dlb_media_cate span {
    padding: 6px 8px;
}

.top_column .dlb_media_02_area .dlb_media_left .dlb_media_left_in {
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

@media only screen and (max-width: 690px) {
    .top_column .dlb_media_02_area .dlb_media_block {
        margin-bottom: 25px;
    }

    .top_column .dlb_media_cate span {
        font-size: 14px;
    }
}

/* top_rss */
/* -------------------------------------------- */
.top_rss .dlb_rss {
    margin-bottom: 30px;
}

.top_rss .dlb_rss dl {
    display: flex;
    align-items: center;

}
.top_rss .dlb_rss .rss_title a{position: relative;}

.top_rss .dlb_rss .rss_date {
    font-size: 14px;
    float: none;
}

.top_rss .dlb_rss .rss_title {
    float: none;
}

.top_rss .dlb_rss .rss_title a {
    position: relative;
    display: inline-block;
}

.top_rss .dlb_rss .rss_new {
    padding: 2px 8px;
    border-radius: 0;
    margin-top: -3px;
    min-width: 84px;
    text-align: center;
}

.top_rss .top_btn01 a {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 690px) {
    .top_rss .dlb_rss dl {
        flex-direction: column;
    }

    .top_rss .dlb_rss .rss_new {
        position: absolute;
        left: 120px;
        top: -26px;
    }
}

/* cv_area */
/* -------------------------------------------- */
.cv_area {
    background: url("../images/cv_area_bg.jpg") no-repeat center top;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 140px;
}

.cv_title,
.t-default h2.cv_title {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 70px;
}

.cv_col2 {
    display: flex;
}

.cv_col2>div {
    width: 50%;
    color: #ffffff;
    text-align: center;
}

.cv_col2>div h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cv_btn01 a {
    width: 400px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 25px 5px 25px 55px;
    background-image: url("../images/icon_cv_btn01.svg");
    background-repeat: no-repeat;
    background-color: #0086CA;
    background-position: left 25px top 10px;
    border: 2px solid #0086CA;
}

.cv_btn01 a:hover {
    text-decoration: none;
    background-color: #ffffff;
    background-image: url("../images/icon_cv_btn01_on.svg");
    background-repeat: no-repeat;
    color: #0086CA;
}

.cv_btn02 a {
    width: 400px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 25px 5px 25px 55px;
    background-image: url("../images/icon_cv_btn02.svg");
    background-repeat: no-repeat;
    background-color: #ED6136;
    background-position: left 25px top 25px;
    border: 2px solid #ED6136;
}

.cv_btn02 a:hover {
    text-decoration: none;
    background-color: #ffffff;
    background-image: url("../images/icon_cv_btn02_on.svg");
    background-repeat: no-repeat;
    color: #ED6136;
}

@media only screen and (max-width: 979px) {
    .cv_btn01 a {
        background-position: left 10px top 10px;
    }
}

@media only screen and (max-width: 690px) {
    .cv_area {
        padding-top: 40px;
        padding-bottom: 20px;
        background-size: cover;
    }

    .cv_title,
    .t-default h2.cv_title {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .cv_col2 {
        flex-direction: column;
    }

    .cv_col2>div {
        width: 100%;
        margin-bottom: 40px;
    }

    .cv_col2>div h3 {
        font-size: 16px;
    }

    .cv_btn01 a,
    .cv_btn02 a {
        font-size: 14px;
    }

    .cv_btn01 a {
        background-size: 40px auto;
        background-position: left 10px top 15px;
    }

    .cv_btn02 a {
        background-position: left 12px top 23px;
    }
}

/* subtitle */
/* ------------------------------------------- */

.subtitle02_01 {
    font-size: 28px;
    font-weight: bold;
    border-bottom: 2px solid #E6E6E6;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.subtitle02_01::before {
    content: "";
    width: 80px;
    height: 2px;
    background: #0F3753;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.subtitle02_01::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #0086CA;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.subtitle03_01 {
    font-size: 22px;
    padding-left: 20px;
    position: relative;
}

.subtitle03_01::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #0F3753;
    position: absolute;
    left: 0;
    top: 13px;
}

@media only screen and (max-width: 979px) {
    .subtitle02_01 {
        font-size: 24px;
    }

    .subtitle03_01 {
        font-size: 20px;
    }

    .subtitle03_01::before {
        top: 10px;
    }
}

@media only screen and (max-width: 690px) {

    .subtitle02_01 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .subtitle03_01 {
        font-size: 18px;
    }

    .subtitle03_01::before {
        top: 8px;
    }
}


/* point.html */
/* ------------------------------------------------- */
.point_col2_01 {
    display: flex;
}

.point_col2_01>div {
    width: 48%;
}

.point_col2_01 figure {
    width: 50%;
    margin-left: 2%;
}

@media only screen and (max-width: 1024px) {
    .point_col2_01>div .dlb_subtitle2_02 {
        font-size: 21px;
        letter-spacing: 0;
    }
}

@media only screen and (max-width: 690px) {
    .point_col2_01 {
        flex-direction: column;
    }

    .point_col2_01>div {
        width: 100%;
    }

    .point_col2_01 figure {
        width: 100%;
        margin-left: 0;
    }
}

/* technology.html */
/* ------------------------------------------ */
.tech_box01 .title_left {
    float: left;
    width: 56%;
    margin-bottom: 15px;
}

.tech_box01 .title_right {
    float: right;
    width: 56%;
    margin-bottom: 15px;
}

.tech_box01 .title_left h3,
.tech_box01 .title_right h3 {
    font-size: 22px;
    color: #0F3753;
}

.tech_box01 .txt_left {
    width: 56%;
    float: left;
}

.tech_box01 .txt_right {
    width: 56%;
    float: right;
}

.tech_box01 .img_right {
    float: right;
    width: 41%;
}

.tech_box01 .img_left {
    float: left;
    width: 41%;
}

@media only screen and (max-width: 690px) {

    .tech_box01 .title_left,
    .tech_box01 .title_right {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }

    .tech_box01 .title_left h3,
    .tech_box01 .title_right h3 {
        font-size: 18px;
        letter-spacing: 0;
    }

    .tech_box01 .img_right,
    .tech_box01 .img_left {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }

    .tech_box01 .txt_left,
    .tech_box01 .txt_right {
        width: 100%;
        float: none;
    }
}

/* quaity.html */
/* ------------------------------------------------------------- */
.inner .left img {
    margin-left: 0;
}

.quality_img2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 100%;
}

.quality_img2>figure {
    padding: 0 1px;
}

.quality_img2>figure {
    width: 50%;
}

.quality_img2>figure:first-child {
    width: 39%;
}

.inner .quality_img2>figure img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 690px) {
    .quality_img2 {
        flex-direction: column;
    }

    .quality_img2>figure {
        width: 100%;
    }

    .quality_img2>figure:first-child {
        margin-bottom: 10px;
        width: 100%;
    }
}

.policy_list {
    padding-left: 0.5em;
}

.policy_list li {
    list-style-type: none;
    padding-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 5px;
}


/* case.html */
/* ------------------------------------------------------------- */
.case_block01 .img_left {
    width: 35.7%;
    float: left;
}

.case_block01 .title_right,
.case_block01 .txt_right {
    float: right;
    width: 60.7%;
}

.case_block01 .img_right {
    width: 35.7%;
    float: right;
}

.case_block01 .title_left,
.case_block01 .txt_left {
    float: left;
    width: 60.7%;
}


.case_block02 {
    border: 5px solid #F0F0F0;
    padding: 30px;
    font-size: 16px;
    margin-bottom: 30px;
}

.case_block02 h3 {
    color: #0A517B;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.case_block03 {
    display: flex;
    border: 2px solid #40B0E8;
}

.case_block03 .title {
    width: 120px;
    align-items: center;
    text-align: center;
    background: #40B0E8;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.case_block03 ul {
    padding: 20px 20px 10px;
    width: calc(100% - 120px);
}

.case_block03 ul li {
    position: relative;
    list-style-type: none;
    padding-left: 1em;
    margin-bottom: 10px;
}

.case_block03 ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #40B0E8;
    position: absolute;
    left: 0;
    top: 8px;
}

.case_block04 {
    display: flex;
    border: 2px solid #0086CA;
}

.case_block04 .title {
    width: 120px;
    align-items: center;
    text-align: center;
    background: #0086CA;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.case_block04 ul {
    padding: 20px 20px 10px;
    width: calc(100% - 120px);
}

.case_block04 ul li {
    position: relative;
    list-style-type: none;
    padding-left: 1em;
    margin-bottom: 10px;
}

.case_block04 ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #0086CA;
    position: absolute;
    left: 0;
    top: 8px;
}

.case_block05 {
    display: flex;
    border: 2px solid #0A517B;
}

.case_block05 .title {
    width: 120px;
    align-items: center;
    text-align: center;
    background: #0A517B;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.case_block05 ul {
    padding: 20px 20px 10px;
    width: calc(100% - 120px);
}

.case_block05 ul li {
    position: relative;
    list-style-type: none;
    padding-left: 1em;
    margin-bottom: 10px;
}

.case_block05 ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #0A517B;
    position: absolute;
    left: 0;
    top: 8px;
}

.btn01 a {
    display: block;
    width: 180px;
    background: #0F3753;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 8px 0;
    border: 2px solid #0F3753;
}

.btn01 a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 1.5em;
    transition: all 0s;
}

.btn01 a:hover {
    background: #ffffff;
    color: #0F3753;
    text-decoration: none;
}


@media only screen and (max-width: 690px) {

    .case_block01 .img_left,
    .case_block01 .img_right {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }

    .case_block01 .title_right,
    .case_block01 .txt_right,
    .case_block01 .title_left,
    .case_block01 .txt_left {
        float: none;
        width: 100%;
    }

    .case_block01 .btn01 a {
        margin-left: auto;
        margin-right: auto;
    }

    .case_block02 {
        padding: 25px 4%;
        font-size: 15px;
    }

    .case_block03,
    .case_block04,
    .case_block05 {
        flex-direction: column;
    }

    .case_block03 .title,
    .case_block04 .title,
    .case_block05 .title {
        width: 100%;
        padding: 12px 0;
    }

    .case_block03 ul,
    .case_block04 ul,
    .case_block05 ul {
        padding: 20px 4% 10px;
        width: 100%;
    }
}


/* results */
/* ---------------------------------------------------- */

.results_catch {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.results_main_wrap {
    position: relative;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
}

.results_main_wrap::before {
    content: "";
    width: 100%;
    height: 66%;
    background: #F5F5F5;
    position: absolute;
    left: 0;
    bottom: 0;
}

.results_main_wrap figure {
    position: relative;
}

.results_main_wrap figure img {
    max-width: 100%;
    height: auto;
}

.results_box01 .title_left {
    width: 65%;
    float: left;
    margin-bottom: 25px;
}

.results_box01 .title_left h3 {
    font-size: 24px;
    font-weight: bold;
}

.results_box01 .img_right {
    width: 31%;
    float: right;
    margin-left: 4%;
    margin-bottom: 10px;
}

.results_box01 .txt_left {
    width: 65%;
    float: left;
}

.sp_only {
    display: none;
}

@media only screen and (max-width: 979px) {
    .results_catch {
        font-size: 22px;
        letter-spacing: 0;
    }
}

@media only screen and (max-width: 690px) {

    .results_catch {
        font-size: 5vw;
    }

    .results_main_wrap {
        margin-top: 30px;
    }

    .results_box01 .title_left {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }

    .results_box01 .title_left h3 {
        font-size: 19px;
    }

    .results_box01 .img_right {
        width: 40%;
        margin-left: 3%;
    }

    .sp_only {
        display: block;
    }
}

/* company */
/* --------------------------------------------------------- */
.company_box {
    display: flex;
    flex-wrap: wrap;
}

.company_box>div {
    width: 48%;
    margin-left: 4%;
    border: 1px solid #DDDDDD;
    padding-bottom: 90px;
    margin-bottom: 40px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.company_box>div:nth-child(odd) {
    margin-left: 0;
}

.company_box>div .txt {
    padding: 25px 20px 0;
}

.company_title {
    font-size: 18px;
    border-left: 3px solid #308BCC;
    padding-left: 10px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.company_box>div .arr {
    position: absolute;
    right: 20px;
    bottom: 25px;
}

.company_box>div .arr a {
    color: #056CA2;
    font-size: 16px;
    position: relative;
}

.company_box>div .arr a::before {
    content: '';
    width: 4px;
    height: 4px;
    border: 0px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #31333E;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    left: -12px;
    transition: all 0s;
}

@media only screen and (max-width: 690px) {
    .company_box {
        flex-direction: column;
    }

    .company_box>div {
        width: 100%;
        margin-left: 0;
    }
}

/* represent */
/* ------------------------------------------------------- */
.greeting_right {
    float: right;
    width: 200px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.greeting_right figure {
    margin-bottom: 10px;
}

.greeting_right .name {
    font-weight: bold;
}

.represent_title03 {
    font-size: 22px;
    margin-bottom: 20px;
}

.igarashi_way dl {
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 10px;
}

.igarashi_way dl dt {
    color: #0F3753;
    font-size: 18px;
    margin-bottom: 7px;
}

.igarashi_way dl dd {
    padding: 0 0.5em 10px;
}

.ig_universe dl {
    margin-bottom: 20px;
}

.ig_universe dt {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #40B0E8;
    position: relative;
    height: 44px;
    line-height: 44px;
    padding-left: 22px;
    margin-bottom: 10px;
}

.ig_universe dt::before {
    content: "";
    width: 44px;
    height: 44px;
    border: 2px solid #EBF7FD;
    border-radius: 23px;
    position: absolute;
    left: 0;
}

.ig_universe dt::after {
    content: "";
    height: 2px;
    width: calc(100% - 22px);
    background: #EBF7FD;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
}

.ig_universe .line02 dt {
    color: #3492C3;
}

.ig_universe02 .line02 dt::before {
    border-color: #EBF4F9;
}

.ig_universe02 .line02 dt::after {
    background: #EBF4F9;
}

.ig_universe .line03 dt {
    color: #28749E;
}

.ig_universe .line03 dt::before {
    border-color: #EAF1F6;
}

.ig_universe .line03 dt::after {
    background: #EAF1F6;
}

.ig_universe .line04 dt {
    color: #1B5578;
}

.ig_universe .line04 dt::before {

    border-color: #E7EBEE;
}

.ig_universe .line04 dt::after {

    background: #E7EBEE;
}

.ig_universe .line05 dt {
    color: #0F3753;
}

.ig_universe .line05 dt::before {
    border-color: #E8EEF2;
}

.ig_universe .line05 dt::after {
    background: #E8EEF2;
}

.ig_universe dt .in {
    position: relative;
    z-index: 2;
}

.ig_universe dd {
    padding-left: 30px;
    font-size: 15px;
}

@media only screen and (max-width: 690px) {
    .greeting_right {
        width: 42%;
        margin-left: 3%;
    }

    .greeting_right figure {
        margin-bottom: 10px;
    }

    .greeting_right .name {
        font-weight: bold;
        font-size: 12px;
    }

    .represent_title03 {
        font-size: 20px;
    }
}

/* overview */
/* ---------------------------------------------------------- */
.tab_original01 {
    table-layout: auto;
}

.tab_original01 th {
    border: none;
    border-bottom: 1px solid #DDDDDD;
    color: #0F3753;
    font-weight: bold;
    padding-left: 0;
    vertical-align: top;
    width: 140px;
}

.tab_original01 td {
    border: none;
    border-bottom: 1px solid #DDDDDD;
    width: calc(100% - 140px);
}

.overview_in {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.googlemap iframe {
    width: 100%;
    height: 260px;
}

.googlemap a {
    color: #0086CA;
}

.access {
    background: #F5F5F5;
    padding: 20px;
}

.access ul li {
    font-size: 12px;
}

.access_station {
    font-size: 16px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 690px) {

    .tab_original01 th,
    .tab_original01 td {
        display: block;
        width: 100%;
    }

    .tab_original01 th {
        background: #eeeeee;
        padding: 12px;
    }
}

/* history */
/* ------------------------------------------------------- */


.history_in {
    padding: 15px 12px 15px 28px;
    position: relative;
    background: #ffffff;
}

.history_in::before {
    content: "";
    width: 3px;
    height: 100%;
    background: #F0F0F0;
    position: absolute;
    left: 14px;
    top: 0;
}

.history_in:first-child::before {
    content: "";
    width: 3px;
    height: calc(100% - 25px);
    background: #F0F0F0;
    position: absolute;
    left: 14px;
    top: 25px;
}

.history_in.bg {
    background: #F7F7F7;
}

.history_in .year {
    font-size: 16px;
    font-weight: bold;
    color: #056CA2;
    position: relative;
}

.history_in.bg .year {
    color: #308BCC;
}

.history_in .year::before {
    content: "";
    width: 10px;
    height: 10px;
    background: url("../images/year_bg01.svg") no-repeat 0 0;
    background-size: 10px 10px;
    position: absolute;
    left: -18px;
    top: 8px;
}

.history_in.bg .year::before {
    content: "";
    width: 10px;
    height: 10px;
    background: url("../fonts/year_bg02.svg") no-repeat 0 0;
    background-size: 10px 10px;
    position: absolute;
    left: -18px;
    top: 8px;
}

.history_in table {
    border: none;
    table-layout: inherit;
}

.history_in table td {
    border: none;
    font-size: 12px;
    color: #404040;
    vertical-align: top;
    padding: 5px 0;
    line-height: 1.5;
}

.history_in table td:first-child {
    width: 65px;
}

@media only screen and (max-width: 690px) {

    .history_wrap {
        padding-left: 0;
        background: none;
    }
}

/* csr */
/* --------------------------------------- */
.csr_box01 .img_right {
    width: 34.5%;
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.basic_policy li {
    list-style-type: none;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.date_area {
    display: table;
    margin-left: auto;
    margin-right: 0;
}

.csr_box02 {
    background: #F5F5F5;
    padding: 30px;
}

.csr_box02 .title_right {
    float: right;
    width: 62.5%;
}

.csr_box02 .title_right h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.csr_box02 .img_left {
    width: 34.5%;
    float: left;
    margin-right: 3%;
    margin-bottom: 10px;
}

.csr_box03 {
    padding: 0 30px;
}

.csr_box03 .title_left {
    float: left;
    width: 62.5%;
}

.csr_box03 .title_left h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.csr_box03 .img_right {
    width: 34.5%;
    float: right;
    margin-left: 3%;
    margin-bottom: 10px;
}

table.tab_original02 {
    table-layout: fixed;
}

table.tab_original02 td {
    border: 1px solid #707070;
    text-align: center;
    font-size: 15px;
    padding: 6px 0;
}

@media only screen and (max-width: 979px) {

    .csr_box02 .title_right h3,
    .csr_box03 .title_left h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 690px) {
    .csr_box02 {
        padding: 20px 4%;
    }

    .csr_box03 {
        padding: 0 4%;
    }

    .csr_box02 .title_right,
    .csr_box03 .title_left {
        float: none;
        width: 100%;
    }

    .csr_box02 .title_right h3,
    .csr_box03 .title_left h3 {
        font-size: 20px;
    }

    .csr_box02 .img_left,
    .csr_box03 .img_right {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }

    table.tab_original02 td {
        font-size: 13px;
    }
}


/* network */
/* ------------------------------------------------ */
.network_box .img_left {
    width: 28.5%;
    float: left;
    margin-right: 3%;
}

.network_box .title_right {
    width: 68.5%;
    float: right;
    margin-bottom: 10px;
}

.network_box .title_right h3 {
    color: #3B4043;
    font-size: 20px;
    line-height: 1.3;
}

.network_box .info_right {
    width: 68.5%;
    float: right;
}

.network_box .info_right table {
    table-layout: auto;
}

.network_box .info_right table td {
    border: none;
    font-size: 13px;
    padding: 0;
    color: #3B4043;
    vertical-align: top;
}

.network_box .info_right table td:first-child {
    width: 80px;
}

.link_map a {
    width: 180px;
    display: block;
    background: #0F3753;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 0;
    position: relative;
}

.link_map a::before {
    content: "";
    width: 12px;
    height: 12px;
    background: url("../fonts/outlink_icon.svg") no-repeat 0;
    background-size: cover;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
}

.link_map a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.network_box .link_map a {
    margin-left: auto;
    margin-right: 0;
}

@media only screen and (max-width: 690px) {
    .network_box {
        max-width: 100%;
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .network_box .title_right {
        width: 100%;
        float: none;
    }

    .network_box .title_right h3 {
        font-size: 18px;
    }

    .network_box .img_left,
    .network_box .info_right {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .network_box .link_map a {
        margin-left: auto;
        margin-right: auto;
    }
}

/* recruitment */
/* ------------------------------------------------- */
.rec_subtitle03 {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #CCCCCC;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.entry_catch {
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
}

.entry_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entry_link .banner {
    margin-left: 20px;
}

table.tab_original03 {
    table-layout: auto;
}

table.tab_original03 td {
    border: none;
    padding: 0;
    color: #000000;
}

table.tab_original03 tr td:first-child {
    width: 90px;
    vertical-align: top;
}

table.tab_original03 tr td:last-child {
    width: calc(100% - 90px);
    padding-left: 20px;
    position: relative;
}

table.tab_original03 tr td:last-child::before {
    content: "：";
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 690px) {
    .entry_catch {
        font-size: 20px;
    }

    .rec_subtitle03 {
        font-size: 18px;
    }

    .entry_link {
        flex-direction: column;
    }

    .entry_link .banner {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }
}


/* talk */
/* -------------------------------------------------- */
.talk_tab_bg {
    background: #F0F0F0;
    padding: 20px;
}

table.tab_original04 {
    table-layout: auto;
}

table.tab_original04 th {
    color: #ffffff;
    background: #0F3753;
    border-color: #ffffff;
    text-align: center;
    width: 140px;
    padding: 15px 0;
    font-weight: bold;
}

table.tab_original04 td {
    background: #ffffff;
    border-color: #eeeeee;
    widht: calc(100% - 140px);
    padding: 15px;
}

.faq_box dt {
    background: #0F3753;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 20px;
}

.faq_box dd {
    background: #F0F0F0;
    padding: 12px 20px;
}

@media only screen and (max-width: 690px) {
    .talk_tab_bg {
        padding: 10px;
    }

    table.tab_original04 th {
        width: 100px;
        font-size: 13px;
    }

    table.tab_original04 td {
        widht: calc(100% - 100px);
        font-size: 13px;
    }
}



/* contact */
/* ------------------------------------------ */
.contact_tel {
    border: 1px solid #CCCCCC;
    padding: 30px 0;
    text-align: center;
    color: #000000;
}

.contact_tel .title,.contact_tel h3 {
    font-size: 24px;
}


.contact_tel .num,.contact_tel h2 {
    font-size: 48px;
}

.contanct_motor,
.contanct_other {
    display: flex;
}

.contanct_motor figure,
.contanct_other figure {
    margin-bottom: 15px;
}

.contanct_motor .title {
    width: 37.5%;
    background: #0086CA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contanct_other .title {
    width: 37.5%;
    background: #ED6136;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contanct_motor .title h3,
.contanct_other .title h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}

.contanct_motor .txt,
.contanct_other .txt {
    width: 62.5%;
    background: #F7F7F7;
    padding: 30px;
}

@media only screen and (min-width: 1025px) {
    .num a {
        pointer-events: none;
    }
}
/* .contact_tel h2,.contact_tel h3{font-weight: normal;} */
@media only screen and (max-width: 690px) {
    .contact_tel .title,.contact_tel h3 {
        font-size: 5.5vw;
    }

    .contact_tel .num,.contact_tel h2 {
        font-size: 10vw;
    }

    .contact_tel .date,.contact_tel p {
        font-size: 13px;
    }

    .contanct_motor,
    .contanct_other {
        flex-direction: column;
    }

    .contanct_motor .title,
    .contanct_other .title {
        width: 100%;
        padding: 20px 0;
    }

    .contanct_motor .title h3,
    .contanct_other .title h3 {
        font-size: 20px;
    }

    .contanct_motor .txt,
    .contanct_other .txt {
        width: 100%;
        padding: 20px 5%;
    }
}

/* GDPR */
/* ---------------------------------------------- */
.list_decimal li>.list_disc {
    margin-top: 10px;
}

.list_decimal li>.list_disc li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* thanks */
/* ------------------------------------------------ */
.thanks_link {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
.thanks_link.justify_c {
	justify-content: center;
}

.thanks_link>div {
    width: 32%;
    margin-left: 2%;
    padding-top: 100px;
    background: #F8F8F8 url("../fonts/thanks_link_bg01.svg") no-repeat;
    background-position: center 20%;
}

.thanks_link>div:nth-child(2) {
    background: #F8F8F8 url("../fonts/thanks_link_bg02.svg") no-repeat;
    background-position: center 20%;
}

.thanks_link>div:nth-child(3) {
    background: #F8F8F8 url("../fonts/thanks_link_bg03.svg") no-repeat;
    background-position: center 20%;
}

.thanks_link>div:first-child {
    margin-left: 0;
}

.thanks_link>div h2 {
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 26px;
}

.thanks_link>div a {
    display: block;
    background: #0F3753;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 7px 15px;
    position: relative;
    font-size: 14px;
}

.thanks_link>div a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    transition: all 0s;
}

.thanks_link>div a:hover {
    opacity: 0.7;
    text-decoration: none;
}

@media only screen and (max-width: 979px) {
    .thanks_link>div h2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 690px) {
    .thanks_link {
        flex-direction: column;
        align-items: center;
        width: 94%;
    }

    .thanks_link>div {
        width: 100%;
        max-width: 350px;
        margin-left: 0;
        margin-bottom: 15px;
    }
}


/* search */
/* ---------------------------------------------- */

.search_use {
    display: flex;
    flex-wrap: wrap;
}

.search_use>div {
    width: 32%;
    margin-left: 2%;
    margin-bottom: 60px;
}

.search_use>div:nth-child(3n+1) {
    margin-left: 0;
}

.search_use>div figure {
    margin-bottom: 15px;
}

.search_use>div h3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.search_use>div .btn01 a {
    margin-left: auto;
    margin-right: auto;
    width: 270px;
    font-size: 14px;
    font-weight: bold;
}

.search_use>div .btn01 a::before {
    right: 1em;
}

.search_size {
    display: flex;
    flex-wrap: wrap;
}

.search_size>div {
    width: 23.8%;
    margin-left: 1.6%;
}

.search_size>div:first-child {
    margin-left: 0;
}

.search_size>div a {
    border: 1px solid #DDDDDD;
    background: #F5F5F5;
    font-size: 22px;
    padding: 20px 0;
    text-align: center;
    display: block;
    position: relative;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
}

.search_size>div a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.search_size>div a::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #000000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 6px);
    right: 12px;
    transition: all 0s;
}

.search_shape {
    display: flex;
}

.search_shape>div {
    width: 32%;
    margin-left: 2%;
    border: 1px solid #0086CA;
    padding: 25px;
    transition: all 0.3s;
}

.search_shape>div:first-child {
    margin-left: 0;
}

.search_shape>div.bl-hover {
    opacity: 0.7;
}

.search_shape>div h3 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.search_shape>div a:hover img {
    opacity: 1;
}


@media only screen and (max-width: 979px) {

    .search_use>div {
        width: 48.5%;
        margin-left: 3%;
        margin-bottom: 60px;
    }

    .search_use>div:nth-child(3n+1) {
        margin-left: 3%;
    }

    .search_use>div:nth-child(odd) {
        margin-left: 0;
    }

    .search_size>div a {
        font-size: 20px;
    }

    .search_shape>div h3 {
        font-size: 22px;
        letter-spacing: 0;
    }
}

@media only screen and (max-width: 690px) {
    .search_use>div {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .search_use>div:nth-child(3n+1) {
        margin-left: 0;
    }

    .search_use>div:nth-child(odd) {
        margin-left: 0;
    }

    .search_size>div {
        width: 48.5%;
        margin-left: 3%;
        margin-bottom: 20px;
    }

    .search_size>div:nth-child(odd) {
        margin-left: 0;
    }

    .search_shape {
        flex-direction: column;
        align-items: center;
    }

    .search_shape>div {
        width: 100%;
        max-width: 350px;
        margin-left: 0;
        border: 1px solid #0086CA;
        margin-bottom: 30px;
    }

    .search_shape>div h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    #locator_template_c2 {
        margin-top: 50px;
    }
}


/* mega menu 
_____________________________________*/
.mm_inner {
    position: absolute;
    width: 200px;
    left: calc(50% - 100px);
    top: 50px;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s;
    visibility: hidden;
    display: block;
    border: 1px solid #eeeeee;
}

/*.gnavi_area > ul > li.megamenu:hover > ul,*/
.megamenu:hover .mm_inner {
    opacity: 1;
    z-index: 100;
    top: 68px;
    visibility: visible;
}

.mm_inner .mm_in_title {
    width: 25%;
    color: #ffffff;
    background: #0086CA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
}

.mm_inner .mm_in_title .en {
    font-size: 10px;
    font-weight: normal;
}

.mm_inner .mm_nav {
    width: 100%;
}

.megamenu {
    position: relative;
}

.megamenu ul {
    display: block !important;
    width: 100%;
    padding: 0;
}

.megamenu li {
    display: inherit;
    width: 100%;
    border-left: none;
    overflow: hidden;
}

.megamenu li+li {
    border-top: 1px solid #eeeeee;
}

.megamenu li:last-child {
    border-right: none;
}

.megamenu li a {
    display: block !important;
    color: #555;
    padding: 8px !important;
    background-color: white;
}

.megamenu li a:hover {
    color: #0086CA;
    background-color: #F3F3F0;
    text-decoration: underline;
}

header.template_c2 .gnavi_area ul .megamenu .mm_inner li a::after {
    display: none;
}


.mm_btn {
    position: absolute;
    display: none;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.mm_btn.active {
    transform: rotate(-45deg);
}

.mm_btn::before {
    position: absolute;
    display: block;
    content: '';
    width: 20px;
    height: 2px;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: #333;
}

.mm_btn::after {
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 20px;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background-color: #333;
}

@media only screen and (max-width:1024px) {
    .mm_inner {
        position: static;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        border: 0;
        transition: all 0s;
    }

    .megamenu li a {
        display: block !important;
        color: #555;
        padding: 8px 30px !important;
        background-color: white;
    }

    .megamenu li+li {
        border-top: 0;
    }

    .mm_btn {
        display: block;
    }
}

.top_column .dlb_media_cate span {
	font-size:11px;
}
