* {
    line-height: 1.8;
    min-height: 0;
    min-width: 0;
}

img {
    max-width: 100%;
}

:root {
    --main_color: #FD0414;
    --main_color_rgb: 253, 4, 20;
}

.pc {
    display: block !important;
}

.pc_inline {
    display: inline !important;
}

.sp, .sp_inline {
    display: none !important;
}

body {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    font-family: "Noto Sans JP", sans-serif;
}

article {
    flex: 1;
}

@media (max-width: 767px) {
    .pc, .pc_inline {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp_inline {
        display: inline !important;
    }
}

/* コンテンツ幅 ***************************/
.header_footer-container, .MV-container, .content-container {
    margin-left: auto;
    margin-right: auto;
}

.MV-container {
    max-width: 1700px;
    padding-left: 10px;
    padding-right: 10px;
}

.content-container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.header_footer-container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .content-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .content-container2 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* スペース ***************************/
.con_p_space {
    padding-top: 15px;
    padding-bottom: 15px;
}

.con_p_space_btm {
    padding-bottom: 15px;
}

.con_top_space {
    margin-top: 90px;
}

.con_bannerarea_space {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .con_p_space {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .con_top_space {
        margin-top: 60px;
    }
}

/* color ***************************/
/** font color **/
.main_fc {
    color: var(--main_color);
}

.gray_fc {
    color: #707070;
}

/** background color **/
.main_bg {
    background-color: var(--main_color);
}

.main2_bg {
    background-color: rgba(var(--main_color_rgb), .2);
}

.black_bg {
    background-color: #1C1C1E;
}

.bg_gray {
    background-color: #E8E8E8;
}

/* font ***************************/
/** font size**/
.fontBIG {
    font-size: 40px;
}

.fontXL {
    font-size: 36px;
}

.fontL {
    font-size: 30px;
}

.fontM {
    font-size: 20px;
}

.fontMS {
    font-size: 18px;
}

.fontMSS {
    font-size: 16px;
}

.fontMSSS {
    font-size: 14px;
}

.fontS {
    font-size: 12px;
}

.fontSS {
    font-size: 14px;
}

/** font family**/
.font_type1 {
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 767px) {
    .fontBIG {
        font-size: 30px;
    }

    .fontXL {
        font-size: 26px;
    }

    .fontL {
        font-size: 18px;
    }

    .fontM {
        font-size: 16px;
    }
    .fontMS {
        font-size: 16px;
    }

}

/* グロナビ ***************************/
.header_wrap {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #fff;
    top: 0;
}

.nav_wrap .logo_area {
    margin-bottom: 0;
    font-size: 0;
    line-height: 0;
}

.nav_wrap .nav_above_wrap {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 90px;
}

.nav_wrap .sns_area>ul>li {
    margin-left: 10px;
}

.nav_wrap .menu>ul {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.nav_wrap .menu>ul>li {
    margin-left: 10px;
    margin-right: 10px;
}

.nav_wrap .menu>ul>li>a {
    display: block;
    padding: 10px 0;
    position: relative;
}

.nav_wrap .menu>ul>li>a::before {
    background: var(--main_color);
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 7px;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.nav_wrap .menu>ul>li>a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

.nav_wrap .menu ul .business {
    position: relative;
}

.nav_wrap .menu ul .business>a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.nav_wrap .menu ul .business .business_inner {
    position: absolute;
    top: 47px;
    background-color: #1C1C1E;
    color: #fff;
    display: block;
    width: 230px;
    font-weight: normal;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    opacity: 0;
    transition: .3s;
}

.nav_wrap .menu ul .business:hover .business_inner {
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
}

.nav_wrap .menu ul .business .business_inner li a {
    display: block;
    border-bottom: 1px solid #9A9A9A;
    padding: 15px;
    position: relative;
}

.nav_wrap .menu ul .business .business_inner li a::after {
    content: "";
    background-color: #fff;
    -webkit-mask: url(../img/icon_arr.svg);
    mask: url(../img/icon_arr.svg);
    background-size: contain;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 20px;
    height: 6px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: .3s;
}

.nav_wrap .menu ul .business .business_inner li a:hover:after {
    right: 25px;
}

.nav_wrap .menu ul .business .business_inner li:last-child a {
    border-bottom: none;
}

@media (max-width:900px) and (min-width: 767px) {
    .nav_wrap .menu>ul>li>a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .nav_wrap .nav_above_wrap {
        padding: 15px;
        height: 60px;
    }

    .nav_wrap .logo_area {
        width: 108px;
        font-size: 0;
        margin: 0;
    }

    .nav_wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        background-color: #1C1C1E;
        padding: 40px 15px;
        overflow: scroll;
        opacity: 0;
        transition: .5s;
        visibility: hidden;
    }

    .nav_wrap .menu a {
        pointer-events: none;
    }

    .nav_wrap .menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav_wrap .menu.active a {
        pointer-events: all;
    }

    .nav_wrap .menu ul {
        display: block;
    }

    .nav_wrap .menu>ul>li {
        border-bottom: 1px solid #fff;
        padding: 15px 0;
    }

    .nav_wrap .menu>ul>li>a {
        padding: 0;
        position: relative;
    }

    .nav_wrap .menu>ul>li:not(.business)>a::after {
        content: "";
        background-color: #fff;
        -webkit-mask: url(../img/icon_arr.svg);
        mask: url(../img/icon_arr.svg);
        background-size: contain;
        -webkit-mask-size: contain;
        mask-size: contain;
        width: 20px;
        height: 6px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transition: .3s;
    }

    .nav_wrap .menu>ul a {
        font-weight: normal;
        color: #fff;
    }

    .nav_wrap .menu>ul>li>a::before {
        display: none;
    }

    .nav_wrap .menu ul .business>a {
        font-size: 14px;
    }

    .nav_wrap .menu ul .business .business_inner {
        position: relative;
        pointer-events: auto;
        cursor: pointer;
        opacity: 1;
        width: auto;
        top: inherit;
        margin-top: 10px;
    }

    .nav_wrap .menu ul .business .business_inner li a {
        padding: 8px 8px 8px 20px;
        border-bottom: inherit;
    }

    .nav_wrap .menu ul .business .business_inner li a::after, .nav_wrap .menu ul .business .business_inner li a:hover:after {
        right: 0;
    }

    .nav_wrap .openbtn {
        position: fixed;
        width: 50px;
        height: 50px;
        z-index: 999;
        right: 0;
        top: 5px;
    }

    .nav_wrap .openbtn>div {
        position: relative;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    .nav_wrap .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        height: 1px;
        background: #000;
        width: 23px;
    }

    .nav_wrap .openbtn span:nth-of-type(1) {
        top: 16px;
    }

    .nav_wrap .openbtn span:nth-of-type(2) {
        top: 24px;
    }

    .nav_wrap .openbtn span:nth-of-type(3) {
        top: 32px;
    }

    /* open */
    .nav_wrap .openbtn.active span {
        background: #fff;
    }

    .nav_wrap .openbtn.active span:nth-of-type(1) {
        top: 19px;
        left: 13px;
        transform: translateY(6px) rotate(-45deg);
    }

    .nav_wrap .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .nav_wrap .openbtn.active span:nth-of-type(3) {
        top: 31px;
        left: 13px;
        transform: translateY(-6px) rotate(45deg);
    }

    .nav_wrap .menu>ul a[target="_blank"]:after {
        margin: 0 7px;
        vertical-align: middle;
        background-color: #fff;
    }
}

/* btn ***************************/
a.txt_link {
    color: #007bff;
    text-decoration: underline;
}

.opacity_link a {
    transition: .5s;
}

.opacity_link a:hover {
    opacity: .6;
}

.btn_ptn1 a {
    display: table;
    background-color: #fff;
    color: var(--main_color);
    border: 1px solid var(--main_color);
    border-radius: 100px;
    padding: 15px 80px 15px 30px;
    position: relative;
}

.btn_ptn1 a::after {
    content: "";
    background-image: url(../img/icon_arr.svg);
    background-size: contain;
    width: 20px;
    height: 6px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/* banner_area ***************************/
#banner_area {
    background: url("../img/footer_bg.jpg") no-repeat;
    background-position: center;
    background-size: cover;
}

/* footer_area ***************************/
.footer_area {
    padding: 40px 10px;
}

/* 下層 ページ ***************************/
.underlayer .MV-container {
    background-color: var(--main_color);
    max-width: inherit;
    padding: 15px 0;
    margin-bottom: 15px;
}

.underlayer .MV-container h1,
.underlayer .MV-container p {
    line-height: 1;
}

.underlayer .MV-container h1 {
    margin-bottom: 0;
}

.underlayer .MV-container p {
    margin-bottom: 5px;
}

.underlayer .bread_area {
    display: flex;
    flex-wrap: wrap;
}

.underlayer .bread_area li {
    color: #9A9A9A;
}

.underlayer .bread_area li a {
    color: #1C1C1E;
}

.underlayer .bread_area li::after {
    content: "＞";
    margin-left: 10px;
    margin-right: 10px;
}

.underlayer .bread_area li:last-child::after {
    content: none;
}

.underlayer h2, .underlayer h3 {
    line-height: 1.8;
}

.underlayer .table_block th {
    font-weight: bold;
    width: 25%;
}

.underlayer .table_block td {
    width: 75%;
}

.underlayer #news_detail a {
    color: var(--main_color);
    text-decoration: underline;
}

.underlayer .bg_con {
    background-color: rgba(var(--main_color_rgb), .2);
    border-radius: 20px;
    padding: 20px;
}


.underlayer ul.indent li {
    font-size: 14px;
    text-indent: -14px;
    padding-left: 14px;
}



@media (max-width: 767px) {

    .underlayer .table_block th, .underlayer .table_block td {
        display: block;
        width: 100%;
    }

    .underlayer .table_block th, .underlayer .table_block td {
        display: block;
        width: 100%;
    }

    .underlayer .table_block td {
        border-top: inherit;
        padding: 0 0 .75rem 0;
    }

    .underlayer .table_block th {
        padding: .75rem 0 .75rem 0;
    }
}

.lock_icon {
    margin-left: 10px;
    filter: brightness(0);
}

.text-center {
    text-align: center;
}

.text-border-bottom {
    border-bottom: 1px solid #cccccc;
}

.text-letter-spacing02 {
    letter-spacing:0.2em;
}

.text-letter-spacing05 {
    letter-spacing:0.5em;
}

.text-letter-spacing10 {
    letter-spacing:1.0em;
}

.langage {
    text-decoration:underline;
}