@charset "UTF-8";
@import url(common.css);

/**
 * common
 */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: 1.4rem;
    line-height: 1.4;
    background: #fff;
    min-width: 1420px;
}

/*body.tabOn {
    min-width: 1420px;
}*/

a {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .only-pc {
        display: none !important;
    }
    
    body{
        min-width: auto;
    }
}

.only-sp {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    .only-sp {
        display: block !important;
    }
}

.flex,
.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

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

#wrap {
    font-family: 'Noto Sans JP', sans-serif;
}

/**
 * l-
 */
.l-container {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (min-width: 1100px) {
    .l-container {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 767px) {
    .l-container {
        width: 100%;
        padding: 0;
    }
}

.l-header {
    background: #fff;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 35px;
    max-width: 1366px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
}

.zi .l-header {
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .l-header {
        display: block;
        padding: 15px 15px 0;
        width: 100%;
        min-height: 55px;
        background-color: #fff;
        z-index: 9;
    }
}

.l-footer {
    padding-top: 80px;
    background-color: #fff;
    position: relative;
    z-index: 4;
}

@media only screen and (max-width: 767px) {
    .l-footer {
        padding-top: 50px;
    }
}

/**
 * c-
 */
@media only screen and (max-width: 767px) {
    .c-logo {
        position: relative;
        z-index: 1;
    }
}

.c-logo a {
    display: block;
}

@media only screen and (max-width: 767px) {
    .c-logo a {
        display: inline-block;
    }
}

.c-logo img {
    display: block;
}

@media only screen and (max-width: 767px) {
    .c-logo img {
        width: 180px;
    }
}

.c-logo--footer {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .c-logo--footer {
        width: 100%;
    }
}

.c-logo--footer a {
    display: block;
}

@media only screen and (max-width: 767px) {
    .c-logo--footer img {
        display: block;
        margin: 0 auto;
    }
}

.ie-11 .c-nav {
    width: 75%;
}

@media only screen and (max-width: 767px) {
    .c-nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding-top: 100px;
        z-index: -1;
        opacity: 0;
        background-color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .c-nav:before {
        content: "";
        width: 180px;
        height: 37px;
        background: url("../img/logo_pc.svg") no-repeat;
        background-size: 100% auto;
        z-index: 0;
        position: absolute;
        top: 15px;
        left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .c-nav.is-open {
        opacity: 1;
        z-index: 8;
    }
}

.c-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.zi .c-nav ul {
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .c-nav > ul {
        height: auto;
        display: block;
        padding-bottom: 40px;
        overflow-x: hidden;
        overflow-y: scroll;
        position: fixed;
        top: 100px;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-nav li {
    margin-right: 2em;
    text-align: left;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-nav li {
        width: 100%;
        margin: 0;
        margin-bottom: 50px;
        margin-bottom: 30px;
    }
}

.c-nav li:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 767px) {
    .c-nav li:last-child {
        margin: 0;
        margin-bottom: 0;
    }
}

.c-nav a {
    font-size: 1.4rem;
    display: block;
    display: inline-block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-nav a {
        text-align: center;
        font-size: 1.6rem;
    }
}

.c-nav a:hover {
    color: #DF112B;
    opacity: 1;
    border-bottom: 1px solid #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-nav a:hover {
        border-bottom: 1px solid rgba(255, 255, 255, 0);
        color: inherit;
    }
}

.c-nav a:hover span {
    background-color: #DF112B;
    transform: scale(1.4);
}

.c-nav a.on {
    color: #DF112B;
}

.c-nav a.on span {
    background-color: #DF112B;
    transform: scale(1.4);
}

.c-nav a span {
    width: 4px;
    height: 4px;
    display: block;
    margin: 0 auto 15px;
    background-color: #000;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-nav a span {
        width: 0;
        height: 0;
        display: none;
    }
}

.c-nav--footer {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
}

@media only screen and (max-width: 767px) {
    .c-nav--footer {
        display: block;
        width: 100%;
        margin: 40px auto 0;
    }
}

@media only screen and (max-width: 767px) {
    .c-nav--footer ul {
        width: 100%;
        max-width: 230px;
        margin: 0 auto;
    }
}

.c-nav--footer ul li {
    padding: 10px 0;
    font-size: 1.8rem;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer ul li {
        font-size: 1.4rem;
    }
}

.c-nav--footer ul li.blank {
    font-size: 1.4rem;
    padding: 9px 0;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer ul li.blank {
        font-size: 1.2rem;
    }
}

.c-nav--footer ul li.blank a {
    font-weight: 400;
    position: relative;
    padding-right: 27px;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer ul li.blank a {
        padding-right: 20px;
    }
}

.c-nav--footer ul li.blank a:after {
    content: url("../img/icon_blank.svg");
    position: absolute;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer ul li.blank a:after {
        content: "";
        width: 13px;
        height: 13px;
        background: url("../img/icon_blank.svg") no-repeat;
        background-size: contain;
    }
}

.c-nav--footer a {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    color: #000;
}

.c-nav--footer a:hover {
    color: #DF112B;
    border-bottom: 1px solid #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer a:hover {
        border-bottom: 1px solid rgba(255, 255, 255, 0);
    }
}

.c-nav--footer.width100 {
    width: 100%;
    margin-top: 45px;
    text-align: right;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer.width100 {
        margin-top: 25px;
        max-width: 100%;
        text-align: center;
    }
}

.c-nav--footer.width100 a {
    font-size: 1.2rem;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
}

.ie-edge .c-nav--footer.width100 a,
.ie-11 .c-nav--footer.width100 a {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
}

.c-nav--footer.width100 li {
    display: inline-block;
    width: auto;
    padding-right: 40px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-nav--footer.width100 li {
        padding-right: 20px;
    }
}

.c-nav--footer.width100 li:last-child {
    padding-right: 0;
}

.c-nav--footer.width100 li:last-child:after {
    width: 0;
    height: 0;
}

.c-nav--footer.width100 li:after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #000;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
    .c-nav--footer.width100 li:after {
        height: 18px;
        right: 10px;
    }
}

.c-visual {
    height: calc(100vh - 110px);
    min-height: 453px;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

@media only screen and (max-width: 767px) {
    .c-visual {
        height: calc(var(--vh, 1vh) * 100 - 55px);
        min-height: calc(var(--vh, 1vh) * 100 - 55px);
    }

    .ls .c-visual {
        height: auto;
        padding-bottom: 80px;
    }
}

.c-visual__img {
    width: 60%;
    max-width: 453px;
    -webkit-filter: blur(37px);
    -ms-filter: blur(37px);
    -o-filter: blur(37px);
    filter: blur(37px);
    position: fixed;
    top: calc(50% + 55px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    max-height: 60vh;
}

.ie-11 .c-visual__img {
    opacity: 0.1;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.c-visual .txt br.only {
    display: none;
}

@media only screen and (max-width: 767px) {
    .c-visual__img {
        top: calc((var(--vh, 1vh) * 100)/2 + 55px);
    }
    .c-visual .txt br.only {
        display: block;
    }
}

.c-visual .txt {
    text-align: center;
    position: absolute;
    z-index: 1;
    top: 50%;
    top: 44%;
    /*top: 40%;*/
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 70%;
    min-width: 90%;
}

@media only screen and (max-width: 767px) {
.c-visual .txt {
    top: 50%;
}
}
@media only screen and (max-width: 375px) {
.c-visual .txt {
    top: 50%;
}
}

@media only screen and (max-width: 767px) {
    .c-visual .txt {
        width: 98%;
        margin: 0 auto;
    }

    .ls .c-visual .txt {
        width: 98%;
        margin: 50px auto 0;
        position: relative;
        top: inherit;
        left: inherit;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit;
    }
}

.c-visual .txt>p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.8;
    line-height: 2.4;
}

@media only screen and (max-width: 767px) {
    .c-visual .txt>p {
        font-size: 1.4rem;
        font-size: 1.1rem;
        line-height: 2;
    }
}

.c-visual .txt>span {
    display: block;
    font-size: 2.8rem;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .c-visual .txt>span {
        font-size: 2rem;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .c-visual>p {
        position: relative;
        top: inherit;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit;
    }
}

.c-visual .img {
    right: 10px;
}

@media only screen and (max-width: 767px) {
    .c-visual .img {
        right: inherit;
        padding-left: 10%;
        margin-top: 18px;
    }
}

.c-visual .img img {
    height: 18px;
}

@media only screen and (max-width: 767px) {
    .c-visual .img img {
        height: 14px;
    }
}

.c-intro {
    padding-top: 170px;
}

.c-intro .l-container {
    padding: 0 30px;
}

@media only screen and (max-width: 767px) {
    .c-intro .l-container {
        flex-direction: column;
    }
}

.c-intro img {
    align-self: flex-start;
    margin-top: 12px;
    margin-right: 20px;
    width: 40%;
}

@media only screen and (min-width: 1100px) {
    .c-intro img {
        width: auto;
    }
}

@media only screen and (max-width: 767px) {
    .c-intro img {
        width: auto;
        max-width: 90%;
    }
}

.c-intro .txt {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.8;
}

@media only screen and (max-width: 767px) {
    .c-intro .txt {
        font-size: 1.2rem;
        margin-top: 30px;
        line-height: 2;
    }
}

.fadeBox {
    padding: 0 0 64px;
}

@media only screen and (max-width: 767px) {
    .fadeBox {
        padding: 0;
    }
}

.c-group {
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .c-group .l-container {
        overflow: hidden;
    }
}

.c-group__img {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-group__img {
        width: 60%;
        max-width: 453px;
        max-height: 60vh;
        display: block;
        margin: 0 auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: inherit;
    }
}

.c-group__img img {
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.1);
    -moz-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.1);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.1);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
    .c-group__img img {
        width: 100%;
        position: relative;
        left: inherit;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit;
    }
}

.c-group__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 7.2vw;
    padding: 105px 0 0 30px;
    letter-spacing: 12px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1100px) {
    .c-group__title {
        font-size: 8rem;
        letter-spacing: 16px;
        padding: 105px 0 0 68px;
    }
}

@media only screen and (max-width: 767px) {
    .c-group__title {
        width: 97vw;
        font-size: 2.8rem;
        font-size: clamp(20px, 9vw, 55px);
        letter-spacing: 4px;
        padding: 0;
        position: absolute;
        right: calc((96% - 97vw)/2);
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.c-group__txt {
    padding-left: 30px;
    position: relative;
    z-index: 1;
    margin-top: 45px;
    line-height: 2.4;
    letter-spacing: 1px;
}

@media only screen and (min-width: 1100px) {
    .c-group__txt {
        padding-left: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .c-group__txt {
        width: 96%;
        max-width: 376px;
        display: block;
        margin: 40px auto 0;
        padding: 0 26px;
        font-size: 1.2rem;
        letter-spacing: 0.8px;
        line-height: 2;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-group__box {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: center;
}
.intro .c-group__box{
    max-width: 708px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 1100px) {
    .c-group__box {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .c-group__box {
        margin-top: 50px;
        padding: 0 10px;
    }
}

.c-box {
    width: 29%;
    max-width: 290px;
    margin-right: 4%;
    position: relative;
    margin-bottom: 60px;
}
.intro .c-box{
    width: 50%;
}

@media only screen and (min-width: 1100px) {
    .c-box,
    .intro .c-box {
        width: 290px;
        max-width: 100%;
        margin-right: 9%;
    }
}

@media only screen and (max-width: 767px) {
    .c-box,
    .intro .c-box {
        width: 74%;
        margin: 0 2% 50px;
    }
}

.c-box:nth-child(3n) {
    margin-right: 0;
}
.intro .c-box:nth-child(3n) {
    margin-right: 4%;
}
@media only screen and (min-width: 1100px) {
    .intro .c-box:nth-child(3n) {
        margin-right: 9%;
    }
}


@media only screen and (max-width: 767px) {
    .c-box:nth-child(3n),
    .intro .c-box:nth-child(3n) {
        margin: 0 2% 50px;
    }
}

.c-box a {
    display: block;
    height: auto;
    min-height: 450px;
}

@media only screen and (max-width: 767px) {
    .c-box a {
        min-height: 200px;
    }
}

.c-box a img {
    width: 240px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.c-box a:hover .btn:after {
    width: 40px;
}

@media only screen and (max-width: 767px) {
    .c-box a:hover .btn:after {
        width: 24px;
    }
}

.c-box img {
    width: 100%;
}

.c-box .title {
    margin-top: 30px;
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-box .title {
        font-size: 1.4rem;
        margin-top: 18px;
    }
}

.c-box .txt {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.8;
    overflow: hidden;
    padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .c-box .txt {
        font-size: 1.2rem;
        margin-top: 12px;
    }
}

.intro_txt{
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.8;
}
@media only screen and (max-width: 767px) {
    .intro_txt{
        font-size: 1.2rem;
        margin-top: 12px;
        padding: 0 10px;
    }
}

.c-box .btn {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 15px;
    padding: 0 40px 0 0;
    margin-right: 0;
    font-family: 'Open Sans', sans-serif;
}

.c-box .btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 45px;
    width: 24px;
    height: 1px;
    background-color: #000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-box .btn:after {
        width: 18px;
    }
}

.c-box.red .btn {
    color: #DF112B;
}

.c-box.red .btn:after {
    background-color: #DF112B;
}

.c-box.red a:hover img {
    -webkit-box-shadow: 0px 20px 40px 0px rgba(223, 17, 43, 0.2);
    -moz-box-shadow: 0px 20px 40px 0px rgba(223, 17, 43, 0.2);
    box-shadow: 0px 20px 40px 0px rgba(223, 17, 43, 0.2);
}

@media only screen and (max-width: 767px) {
    .c-box.red a:hover img {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.c-box.green .btn {
    color: #25A040;
}

.c-box.green .btn:after {
    background-color: #25A040;
}

.c-box.green a:hover img {
    -webkit-box-shadow: 0px 20px 40px 0px rgba(37, 160, 64, 0.16);
    -moz-box-shadow: 0px 20px 40px 0px rgba(37, 160, 64, 0.16);
    box-shadow: 0px 20px 40px 0px rgba(37, 160, 64, 0.16);
}

@media only screen and (max-width: 767px) {
    .c-box.green a:hover img {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.c-box.blue .btn {
    color: #168CD6;
}

.c-box.blue .btn:after {
    background-color: #168CD6;
}

.c-box.blue a:hover img {
    -webkit-box-shadow: 0px 30px 40px 0px rgba(3, 78, 162, 0.16);
    -moz-box-shadow: 0px 30px 40px 0px rgba(3, 78, 162, 0.16);
    box-shadow: 0px 30px 40px 0px rgba(3, 78, 162, 0.16);
}

@media only screen and (max-width: 767px) {
    .c-box.blue a:hover img {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.c-news {
    width: 100%;
    position: relative;
    background-color: #F4F4F4;
    text-align: right;
    z-index: 3;
    margin-top: 70px;
}

@media only screen and (max-width: 767px) {
    .c-news {
        margin-top: 40px;
    }
}

.c-news .l-container {
    padding: 60px 10px 20px;
}

@media only screen and (max-width: 767px) {
    .c-news .l-container {
        padding: 50px 10px 20px;
    }
}

.c-news1 {
    margin-top: 30px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.c-news1 .ttl1 {
    color: #000;
    line-height: 1.4;
}

.c-news__title {
    color: #333333;
    font-size: 4.1rem;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    position: absolute;
    left: 10px;
    top: -30px;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .c-news__title {
        font-size: 2.8rem;
        top: -20px;
    }
}

.c-news__list {
    width: 874px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.c-news__list ul {
    width: 100%;
}

.c-news__list ul a,
.c-news__list dl {
    width: 100%;
    display: block;
    line-height: 1.6;
    padding: 25px 30px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-self: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

    .c-news__list ul a,
    .c-news__list dl {
        display: block !important;
        padding: 15px 28px 15px 10px;
    }
}

.c-news__list ul a:hover .date,
.c-news__list ul a:hover .title,
.c-news__list ul a:hover .ttl1,
.c-news__list ul a:hover dd,
.c-news__list ul a:hover dt,
.c-news__list dl:hover .date,
.c-news__list dl:hover .title,
.c-news__list dl:hover dd,
.c-news__list dl:hover dt {
    color: #DF112B !important;
    border-bottom: 1px solid #DF112B;
}

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

    .c-news__list ul a:hover .date,
    .c-news__list ul a:hover .title,
    .c-news__list ul a:hover .ttl1,
    .c-news__list ul a:hover dd,
    .c-news__list ul a:hover dt,
    .c-news__list dl:hover .date,
    .c-news__list dl:hover .title,
    .c-news__list dl:hover dd,
    .c-news__list dl:hover dt {
        border-bottom: 1px solid rgba(255, 255, 255, 0);
        color: inherit;
    }
}

.c-news__list ul a:hover dd a,
.c-news__list dl:hover dd a {
    color: #DF112B;
}

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

    .c-news__list ul a:hover dd a,
    .c-news__list dl:hover dd a {
        color: #000;
    }
}

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

    .c-news__list ul a:hover .date,
    .c-news__list dl:hover .date {
        color: #777777;
    }
}

.c-news__list li,
.c-news__list dl {
    cursor: pointer;
    width: 100%;
    background-color: #fff;
    margin-bottom: 20px !important;
    min-height: 70px;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    -moz-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    position: relative;
}

.c-news__list li {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(83, 83, 83, 0.15);
    -moz-box-shadow: 0px 10px 30px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 10px 30px 0px rgba(83, 83, 83, 0.15);
}

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

    .c-news__list li,
    .c-news__list dl {
        min-height: 50px;
    }
}

.c-news__list li:after,
.c-news__list dl:after {
    content: url("../img/icon_blank.svg");
    position: absolute;
    right: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

    .c-news__list li:after,
    .c-news__list dl:after {
        right: 10px;
    }
}

.c-news__list .date,
.c-news__list dt {
    width: auto !important;
    color: #777777 !important;
    font-size: 1.3rem !important;
    margin-left: 5px !important;
    padding: 0 !important;
    border-bottom: 1px solid red;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

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

    .c-news__list .date,
    .c-news__list dt {
        font-size: 1rem;
        margin: 0;
        display: block;
    }
}

.c-news__list .title,
.c-news__list .ttl1,
.c-news__list dd {
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 24px;
    padding-left: 20px;
    font-size: 14px !important;
    position: relative;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

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

    .c-news__list .title,
    .c-news__list .ttl1,
    .c-news__list dd {
        font-size: 1.2rem;
        padding-right: 15px;
        padding-left: 0;
        display: inline;
        white-space: normal;
    }
}

.c-news__list .title:after,
.c-news__list .ttl1:after,
.c-news__list dd:after {
    content: "";
    background: url("../img/icon_pdf.svg") no-repeat;
    background-size: auto;
    height: 21px;
    width: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

    .c-news__list .title:after,
    .c-news__list .ttl1:after,
    .c-news__list dd:after {
        background-size: contain;
        height: 14px;
        width: 15px;
        bottom: 3px;
        top: inherit;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit;
    }
}

.c-news .c-btn--more {
    padding: 15px 40px 15px 0;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .c-news .c-btn--more {
        padding: 12px 25px 12px 0;
        margin-right: 10px;
    }
}

.c-news .cat-text,
.c-news .pdfIcon {
    display: none !important;
}

.page_library dt:before {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

.c-news__list .page_library dd {
    padding: 0 24px 0 22px !important;
}

@media only screen and (max-width: 767px) {
    .c-news__list .page_library dd {
        padding: 0 25px 0 0 !important;
        display: inline !important;
    }
}

.page_library dd a {
    text-decoration: none !important;
}

.page_library .underline {
    text-decoration: underline !important;
}

.c-news__list #dataList .news_blc>dl:nth-of-type(2)~* {
    display: none !important;
}

@-webkit-keyframes scrollAnimate {
    0% {
        top: 0%;
        bottom: 0%;
        height: 100%;
    }

    25% {
        top: 100%;
        bottom: 0%;
        height: 0%;
    }

    25.1% {
        top: 0%;
        bottom: 100%;
        height: 0%;
    }

    50% {
        top: 0%;
        bottom: 100%;
        height: 100%;
    }

    100% {
        top: 0%;
        bottom: 100%;
        height: 100%;
    }
}

@keyframes scrollAnimate {
    0% {
        top: 0%;
        bottom: 0%;
        height: 100%;
    }

    25% {
        top: 100%;
        bottom: 0%;
        height: 0%;
    }

    25.1% {
        top: 0%;
        bottom: 100%;
        height: 0%;
    }

    50% {
        top: 0%;
        bottom: 100%;
        height: 0%;
    }

    100% {
        top: 0%;
        bottom: 100%;
        height: 100%;
    }
}

.c-btn--scroll {
    position: absolute;
    left: 50%;
    bottom: -40px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0);
    padding: 0 10px;
}

@media only screen and (max-width: 767px) {
    .c-btn--scroll {
        bottom: 15px;
        height: 50px;
    }
}

.c-btn--scroll:after {
    content: "";
    width: 1px;
    height: 70px;
    background: #000;
    display: inline-block;
    position: absolute;
    left: 10px;
    z-index: 2;
    -webkit-animation: scrollAnimate 1.5s ease-in-out infinite normal;
    animation: scrollAnimate 1.5s ease-in-out infinite normal;
}

@media only screen and (max-width: 767px) {
    .c-btn--scroll:after {
        height: 40px;
    }
}

.c-btn--more {
    font-family: 'Open Sans', sans-serif;
    margin-right: 30px;
    position: relative;
    padding: 21px 40px 21px 0;
    line-height: 1.6;
    display: block;
}

@media only screen and (max-width: 767px) {
    .c-btn--more {
        font-size: 1rem;
        padding: 12px 25px 12px 0;
        line-height: 1.4;
    }
}

.c-btn--more:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 45px;
    width: 24px;
    height: 1px;
    background-color: #000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    .c-btn--more:after {
        width: 18px;
        left: 34px;
    }
}

.c-btn--more:hover:after {
    width: 34px;
}

@media only screen and (max-width: 767px) {
    .c-btn--more:hover:after {
        width: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .c-btn--toggle {
        width: 40px;
        height: 40px;
        position: fixed;
        right: 10px;
        top: 10px;
        background: url("../img/btn_open.svg") no-repeat;
        background-size: contain;
        z-index: 9;
    }
}

@media only screen and (max-width: 767px) {
    .c-btn--toggle:before {
        content: "";
        position: fixed;
        width: 40px;
        height: 40px;
        position: fixed;
        right: 10px;
        top: 10px;
        opacity: 0;
        background: url("../img/btn_cls.svg") no-repeat;
        background-size: contain;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
}

@media only screen and (max-width: 767px) {
    .c-btn--toggle.is-open:before {
        opacity: 1;
    }
}

.c-txt1 {
    padding-top: 100px;
    text-align: center;
    font-size: 2rem;
    color: #333333;
    line-height: 2.4;
}

.c-txt2 {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .c-txt2 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

.c-txt2 a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 40px 5px 0;
}

@media only screen and (max-width: 767px) {
    .c-txt2 a {
        margin-top: 10px;
    }
}

.c-txt2 a:hover:after {
    width: 32px;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .c-txt2 a:hover:after {
        width: 24px;
        right: 8px;
    }
}

.c-txt2 a:after {
    content: "";
    width: 24px;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.c-txt2 a img {
    margin-right: 10px;
}

.c-txt3 {
    font-size: 2.8rem;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .c-txt3 {
        font-size: 2rem;
    }
}

.c-txt__box {
    padding-top: 30px;
}

@media only screen and (max-width: 767px) {
    .c-txt__box {
        padding-top: 15px;
    }
}

.c-txt__box .ttl {
    font-size: 1.8rem;
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .ttl {
        font-size: 1.6rem;
        margin-top: 20px;
    }
}

.c-txt__box .txt {
    margin-top: 15px;
    padding-left: 15px;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .txt {
        margin-top: 10px;
        padding-left: 12px;
        font-size: 1.3rem;
    }
}

.c-txt__box .txt2 {
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .txt2 {
        margin-top: 35px;
    }
}

.c-txt__box .txt3 {
    margin-top: 20px;
    padding: 20px 30px;
    background-color: #F7ECE7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .txt3 {
        margin-top: 10px;
        padding: 10px 15px;
    }
}

.c-txt__box .txt3 p {
    font-weight: 600;
    line-height: 2;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .txt3 p {
        font-size: 1.3rem;
        line-height: 1.8;
    }
}

.c-txt__box .txt4 {
    line-height: 1.8;
    margin-top: 35px;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .txt4 {
        margin-top: 20px;
        font-size: 1.3rem;
    }
}

.c-txt__box .sign {
    margin-top: 60px;
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .c-txt__box .sign {
        margin-top: 30px;
    }
}

.c-txt__box>img {
    margin-top: 15px;
    max-width: 100%;
}

.c-img1 {
    width: 100%;
    max-width: 100%;
    margin-top: 65px;
}

@media only screen and (max-width: 767px) {
    .c-img1 {
        margin-top: 35px;
    }
}

.c-about {
    padding: 90px 0 120px;
    background-color: #fff;
}

@media only screen and (max-width: 767px) {
    .c-about {
        padding: 50px 0 60px;
    }
}

.c-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 4.1rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .c-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
}

.c-about--box {
    width: 500px;
    max-width: 49%;
    border: 1px solid #A0A0A0;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    -moz-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
}

@media only screen and (max-width: 767px) {
    .c-about--box {
        width: 84%;
        max-width: 500px;
        display: block;
        margin: 0 auto 25px;
    }
}

.c-about--box a {
    padding: 33px 33px 30px;
    display: block;
    height: auto;
    min-height: 200px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 1100px) {
    .c-about--box a {
        min-height: 286px;
    }
}

@media only screen and (max-width: 767px) {
    .c-about--box a {
        padding: 20px;
        min-height: 120px;
        flex-direction: column;
    }
}

.c-about--box a:hover .c-btn--more:after {
    width: 34px;
}

@media only screen and (max-width: 767px) {
    .c-about--box a:hover .c-btn--more:after {
        width: 18px;
    }
}

.ie-11 .c-about--box a {
    display: table;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .ie-11 .c-about--box a {
        display: block;
    }
}

.c-about--box img {
    position: absolute;
}

@media only screen and (max-width: 767px) {
    .c-about--box img {
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .ie-11 .c-about--box img {
        display: block;
        margin: 0 auto;
    }
}

.c-about--box .title {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-about--box .title {
        margin-top: 25px;
    }
}

.ie-11 .c-about--box .title {
    display: table-cell;
    vertical-align: middle;
}

@media only screen and (max-width: 767px) {
    .ie-11 .c-about--box .title {
        display: block;
    }
}

.c-about--box .title p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
}

@media only screen and (max-width: 767px) {
    .c-about--box .title p {
        font-size: 2rem;
    }
}

.c-about--box .title span {
    font-size: 1.2rem;
    margin-top: 6px;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .c-about--box .title span {
        font-size: 1rem;
        margin-top: 4px;
    }
}

.c-about--box .c-btn--more {
    padding: 0 40px 0 0;
    margin-right: 0;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

@media only screen and (max-width: 767px) {
    .c-about--box .c-btn--more {
        position: relative;
        margin-top: 20px;
        bottom: inherit;
        right: inherit;
        align-self: flex-end;
        padding: 0 25px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .ie-11 .c-about--box .c-btn--more {
        float: right;
    }
}

.c-about--box.overview img {
    top: 33px;
    left: 33px;
    max-width: calc(100% - 66px);
}

@media only screen and (max-width: 767px) {
    .c-about--box.overview img {
        top: inherit;
        left: inherit;
        max-width: 100%;
    }
}

.c-about--box.info {
    border: 0;
    position: relative;
}
.c-about--box.info {
  background: #F4F4F4;
}

.c-about--box.info img {
  display: none;
}

.c-about--box.info img {
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
    .c-about--box.info img {
        position: absolute;
    }
}

.c-about--box.info .title {
    /*color: #fff;*/
}

.c-about--box.info .c-btn--more {
    /*color: #fff;*/
}

.c-about--box.info .c-btn--more:after {
    /*background-color: #fff;*/
}

.c-breadcrumb {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

@media only screen and (max-width: 767px) {
    .c-breadcrumb {
        display: none;
        border: 0;
    }
}

.c-breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: center;
    min-height: 40px;
}

.c-breadcrumb a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #A0A0A0;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.c-breadcrumb a:hover {
    color: #DF112B;
    border-bottom: 1px solid #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-breadcrumb a:hover {
        border-bottom: 1px solid rgba(255, 255, 255, 0);
    }
}

.c-breadcrumb .is-active:after {
    content: "";
}

.c-breadcrumb .is-active a {
    color: #000;
}

.c-breadcrumb li {
    padding-right: 35px;
    position: relative;
}

.ie-11 .c-breadcrumb li {
    padding: 10px 35px 10px 0;
}

.c-breadcrumb li:after {
    content: "〉";
    position: absolute;
    right: 6px;
    top: 50%;
    color: #A0A0A0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.l-main {
    /*    position: relative;
    z-index: 7;*/
}

.c-page {
    padding-top: 80px;
}

@media only screen and (max-width: 767px) {
    .c-page {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .c-page--title {
        padding: 0 10px;
    }
}

.c-page--title p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
}

@media only screen and (max-width: 767px) {
    .c-page--title p {
        font-size: 2.4rem;
    }
}

.c-page--title span {
    font-size: 1.4rem;
    display: inline-block;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .c-page--title span {
        font-size: 1rem;
        margin-top: 6px;
    }
}

.c-page--content {
    width: 720px;
    max-width: 100%;
    margin: 85px auto 0;
}

@media only screen and (max-width: 767px) {
    .c-page--content {
        width: 100%;
        margin: 45px auto 0;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-tab {
    margin-top: 85px;
    border-bottom: 1px solid #A0A0A0;
}

@media only screen and (max-width: 767px) {
    .c-tab {
        margin-top: 60px;
    }
}

.c-tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    flex-wrap: wrap;
}

.c-tab li {
    width: auto;
    min-width: 120px;
    margin-right: 50px;
    border-bottom: 2px solid #000;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-tab li {
        min-width: 60px;
        margin-right: 15px;
        border-bottom: 1px solid #000;
    }
}

.c-tab li:last-child {
    margin-right: 0;
}

.c-tab li.is-active {
    border-bottom: 6px solid #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-tab li.is-active {
        border-bottom: 3px solid #DF112B;
    }
}

.c-tab li.is-active span {
    color: #DF112B;
    font-weight: 600;
}

.c-tab li:hover {
    border-bottom: 6px solid #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-tab li:hover {
        border-bottom: 3px solid #DF112B;
    }
}

.c-tab li:hover span {
    color: #DF112B;
}

.c-tab span {
    display: block;
    padding: 14px;
    font-size: 18px;
    text-align: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-tab span {
        font-size: 1.2rem;
        padding: 7px;
    }
}

.c-content {
    width: 720px;
    max-width: 100%;
    margin: 60px auto 120px;
}

@media only screen and (max-width: 767px) {
    .c-content {
        width: 100%;
        margin: 30px auto 60px;
    }
}

.c-content .tabContent {
    display: none;
}

.c-content .tabContent.is-active {
    display: block;
}

.c-content .title {
    font-size: 2.4rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-content .title {
        font-size: 2.1rem;
    }
}

.c-table1,
.c-table2 {
    margin-top: 55px;
}

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

    .c-table1,
    .c-table2 {
        margin-top: 25px;
        padding: 0 10px;
    }
}

.c-table1>ul>li,
.c-table2>ul>li {
    border-top: 1px solid #A0A0A0;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    position: relative;
}

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

    .c-table1>ul>li,
    .c-table2>ul>li {
        padding: 15px 0px;
        display: inline-block;
        width: 100%;
    }
}

.c-table1>ul>li:last-child,
.c-table2>ul>li:last-child {
    border-bottom: 1px solid #A0A0A0;
}

.c-table1 p,
.c-table2 p {
    line-height: 1.6;
}

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

    .c-table1 p,
    .c-table2 p {
        font-size: 1.3rem;
        display: inline-block;
    }
}

.c-table1 .ttl,
.c-table2 .ttl {
    width: 185px;
    font-weight: 600;
}

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

    .c-table1 .ttl,
    .c-table2 .ttl {
        width: 92px;
    }
}

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

    .c-table1 .txt,
    .c-table2 .txt {
        width: calc(100% - 92px);
        float: right;
    }
}

.c-table2 ul>li {
    flex-direction: column;
    padding: 0;
    border-bottom: 0;
}

.c-table2 ul>li:first-child .cnt {
    /*display: block;*/
}

.c-table2 .btnBrf {
    width: 100%;
    padding: 20px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .c-table2 .btnBrf {
        padding: 10px 0;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .ie-11 .c-table2 .btnBrf {
        display: block;
    }
}

.c-table2 .btnBrf.is-open .brief:before {
    opacity: 0;
}

.c-table2 .pos {
    width: 50%;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .c-table2 .pos {
        width: 70%;
    }
}

.c-table2 .name {
    width: 35%;
}

@media only screen and (max-width: 767px) {
    .c-table2 .name {
        width: 70%;
        margin-top: 8px;
    }
}

.c-table2 .brief {
    position: absolute;
    right: 1.5%;
    padding-right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-table2 .brief:after {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-table2 .brief:before {
    content: "";
    height: 12px;
    width: 2px;
    background-color: #000;
    position: absolute;
    right: 5px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.c-table2 .cnt {
    display: none;
}

.c-table2 .cnt ul {
    padding: 25px 0;
}

@media only screen and (max-width: 767px) {
    .c-table2 .cnt ul {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .c-table2 .cnt li {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: flex-start;
        flex-direction: row;
    }
}

.c-table2 .cnt p {
    display: inline-block;
    padding: 3px 0;
    vertical-align: top;
}

.c-table2 .date {
    margin-right: 8px;
}

@media only screen and (max-width: 767px) {
    .c-table2 .date {
        width: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .c-table2 .act {
        width: calc(100% - 90px);
    }
}

.c-table3 {
    margin-top: 55px;
}

@media only screen and (max-width: 767px) {
    .c-table3 {
        margin-top: 25px;
        padding: 0 10px;
    }
}

.c-table3 .txt {
    line-height: 1.8;
}

.c-table3 ul {
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .c-table3 ul {
        margin-top: 30px;
    }
}

.c-table3 ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #A0A0A0;
}

@media only screen and (max-width: 767px) {
    .c-table3 ul li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
}

.c-table3 ul li:first-child {
    border-top: 1px solid #A0A0A0;
}

.c-table3 ul p {
    line-height: 1.8;
    width: 80%;
}

@media only screen and (max-width: 767px) {
    .c-table3 ul p {
        width: 100%;
        line-height: 1.6;
    }
}

.c-table3 .date {
    width: 20%;
}

@media only screen and (max-width: 767px) {
    .c-table3 .date {
        width: 100%;
        margin-bottom: 6px;
    }
}

.c-banner {
    width: 100%;
    height: auto;
    background-color: #DF112B;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    -moz-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
}

@media only screen and (max-width: 767px) {
    .c-banner {
        margin: 0 auto;
        width: calc(100% - 20px);
    }
}

.c-banner a {
    position: relative;
    padding: 30px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-banner a {
        padding: 15px 27px;
    }
}

.c-banner a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(3, 3, 3, 0.3);
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-banner a:after {
        display: none;
    }
}

.c-banner a:hover:after {
    opacity: 1;
}

.c-banner a:hover .c-btn--more:after {
    width: 34px;
}

@media only screen and (max-width: 767px) {
    .c-banner a:hover .c-btn--more:after {
        width: 18px;
    }
}

.c-banner .title {
    color: #fff;
}

.c-banner .title p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
}

@media only screen and (max-width: 767px) {
    .c-banner .title p {
        font-size: 2rem;
    }
}

.c-banner .title span {
    font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
    .c-banner .title span {
        font-size: 1rem;
    }
}

.c-banner .c-btn--more {
    color: #fff;
    margin-right: 0;
}

.c-banner .c-btn--more:after {
    background-color: #fff;
    right: unset;
    left: 45px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-banner .c-btn--more:after {
        left: unset;
        right: 0;
    }
}

.c-totop {
    padding-top: 120px;
    text-align: center;
    background-color: #fff;
}

@media only screen and (max-width: 767px) {
    .c-totop {
        padding-top: 80px;
    }
}

.c-totop a {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    padding-top: 55px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-totop a {
        font-size: 1.2rem;
        padding-top: 30px;
    }
}

.c-totop a:after {
    content: "";
    height: 30px;
    width: 1px;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 15px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
    .c-totop a:after {
        height: 20px;
        top: 0;
    }
}

.c-totop a:hover:after {
    height: 45px;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .c-totop a:hover:after {
        height: 20px;
    }
}

.c-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .c-footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.c-copy {
    margin-top: 30px;
    padding: 40px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 767px) {
    .c-copy {
        margin-top: 15px;
        padding: 20px 0;
    }
}

.c-copy p {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-copy p {
        font-size: 1rem;
    }
}

.c-contact {
    padding-top: 70px;
}

@media only screen and (max-width: 767px) {
    .c-contact {
        padding-top: 50px;
    }
}

.c-contact .txt {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
    .c-contact .txt {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
}

.c-contact--box {
    width: 48%;
    margin-bottom: 60px;
}

@media only screen and (min-width: 1100px) {
    .c-contact--box {
        width: 504px;
    }
}

@media only screen and (max-width: 767px) {
    .c-contact--box {
        width: calc(100% - 20px);
        max-width: 504px;
        margin: 0 auto 35px;
    }
}

.c-contact--box .title {
    margin-bottom: 20px;
    min-height: 28px;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .c-contact--box .title {
        min-height: 22px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .c-contact--box .title:empty {
        display: none;
    }
}

.c-contact--box .title p {
    font-size: 2rem;
    padding-left: 20px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-contact--box .title p {
        font-size: 1.6rem;
        padding-left: 16px;
    }
}

.c-contact--box .title p:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
    .c-contact--box .title p:before {
        width: 6px;
        height: 6px;
    }
}

.c-contact--box.red a {
    background-color: #C9151E;
}

.c-contact--box.red .c-btn--more:after {
    background-image: url("../img/blank_red.svg");
}

.c-contact--box.green a {
    background-color: #1C7F35;
}

.c-contact--box.green .c-btn--more:after {
    background-image: url("../img/blank_green.svg");
}

.c-contact--box.gray a {
    background-color: #8D8D8D;
}

.c-contact--box.gray .c-btn--more:after {
    background-image: url("../img/blank_gray.svg");
}

.c-contact--box.yellow a {
    background-color: #D18F21;
}

.c-contact--box.yellow .c-btn--more:after {
    background-image: url("../img/blank_yellow.svg");
}

.c-contact--box a {
    height: auto;
    min-height: 110px;
    color: #fff;
    padding: 30px 30px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    -moz-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-contact--box a {
        min-height: 70px;
        padding: 15px;
    }
}

.c-contact--box p {
    font-size: 1.8rem;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .c-contact--box p {
        font-size: 1.4rem;
    }
}

.c-contact--box .c-btn--more {
    margin-right: 0;
    padding: 0 28px 0 0;
    align-self: flex-end;
    position: absolute;
    right: 30px;
    bottom: 24px;
}

@media only screen and (max-width: 767px) {
    .c-contact--box .c-btn--more {
        padding: 0 20px 0 0;
    }
}

.c-contact--box .c-btn--more:after {
    content: "";
    height: 20px;
    width: 17px;
    background-color: transparent;
    background-repeat: no-repeat;
    left: inherit;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .c-contact--box .c-btn--more:after {
        width: 11px;
        height: 14px;
        background-size: contain;
    }
}

.message-page .c-txt3 {
    letter-spacing: 2px;
}

.c-txt--sTit {
    font-size: 16px;
    margin: 1em auto 2em;
}

.c-txt3 .small {
    font-size: 0.5em;
    display: block;
}

.txt4.mt0 {
    margin-top: 0;
}

.c-visual__btn {
    position: relative;
    max-width: 300px;
    padding: 20px 100px;
    display: inline-block;
    background-color: #fff;
    margin: 30px auto 0;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
    box-shadow: 0px 30px 40px 0px rgba(83, 83, 83, 0.15);
}

.c-visual__btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 50px);
    width: 24px;
    height: 1px;
    background-color: #000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (min-width: 768px) {
    .c-visual__btn:hover:after {
        width: 34px;
    }
}

.c-loader {
    width: 100%;
    height: 100%;
    background-color: #fff;
    filter: blur(20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .c-loader {
        padding: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-loader_wrap {
    background-color: #fff;
    z-index: 9;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.c-loader p {
    text-align: center;
    line-height: 1.6;
}

.c-loader .date,
.c-loader .ttl,
.c-loader .txt {
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.c-loader .date {
    font-size: 2.2rem;
    margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
    .c-loader .date {
        font-size: 1.6rem;
    }
}

.c-loader .ttl {
    font-size: 4.4rem;
    font-weight: 300;
    margin-bottom: 75px;
}

@media only screen and (max-width: 767px) {
    .c-loader .ttl {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }
}

.c-loader .txt,
.c-loader .c-txt5 .txt1,
.c-txt5 .c-loader .txt1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.4;
}

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

    .c-loader .txt,
    .c-loader .c-txt5 .txt1,
    .c-txt5 .c-loader .txt1 {
        font-size: 1.4rem;
        line-height: 2;
    }
}

@keyframes changeBlur {
    0% {
        filter: blur(20px);
    }

    5% {
        filter: blur(20px);
    }

    50% {
        filter: blur(0);
    }

    80% {
        filter: blur(20px);
    }

    100% {
        filter: blur(20px);
    }
}

.c-bsf {
    padding-top: 80px;
}

@media only screen and (max-width: 767px) {
    .c-bsf {
        padding-top: 45px;
    }
}

.c-bsf .txt,
.c-bsf .c-txt5 .txt1,
.c-txt5 .c-bsf .txt1 {
    text-align: center;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 2;
}

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

    .c-bsf .txt,
    .c-bsf .c-txt5 .txt1,
    .c-txt5 .c-bsf .txt1 {
        margin-top: 25px;
        font-size: 1.4rem;
        line-height: 1.8;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-bsf .txt span,
.c-bsf .c-txt5 .txt1 span,
.c-txt5 .c-bsf .txt1 span {
    display: block;
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: 6px;
}

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

    .c-bsf .txt span,
    .c-bsf .c-txt5 .txt1 span,
    .c-txt5 .c-bsf .txt1 span {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
}

.c-bsf .content {
    width: 924px;
    max-width: 100%;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .c-bsf .content {
        margin: 20px auto 0;
        padding: 0 10px;
        flex-wrap: wrap;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-bsf .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-self: self-start;
    width: 300px;
    max-width: 32%;
}

@media only screen and (max-width: 767px) {
    .c-bsf .col {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-top: 20px;
    }
}

.c-bsf .col2 {
    width: 612px;
    max-width: 66%;
}

@media only screen and (max-width: 767px) {
    .c-bsf .col2 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.c-bsf .col2 .box_wrap {
    max-width: 49%;
}

@media only screen and (max-width: 767px) {
    .c-bsf .col2 .box_wrap {
        max-width: 100%;
    }
}

.c-bsf .title {
    width: 100%;
    background-color: #fff;
    min-height: 54px;
    border: 2px solid #767171;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    color: #767171;
    padding: 5px 0;
    letter-spacing: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-bsf .title {
        min-height: 40px;
        border: 1px solid #767171;
        font-size: 2rem;
        letter-spacing: 4px;
    }
}

.c-bsf .box {
    width: 100%;
    min-height: 316px;
    margin-top: 12px;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box {
        min-height: 200px;
        margin-top: 10px;
    }
}

.c-bsf .box_wrap {
    width: 300px;
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box_wrap {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.c-bsf .box.red {
    background-color: #DA1231;
}

.c-bsf .box.red~.text {
    color: #DA1231;
}

.c-bsf .box.green {
    background-color: #1A7938;
}

.c-bsf .box.green~.text {
    color: #1A7938;
}

.c-bsf .box.gray {
    background-color: #767171;
}

.c-bsf .box.gray~.text {
    color: #767171;
}

.c-bsf .box .ttl {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.6;
    padding: 16px 0;
    border-bottom: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .ttl {
        font-size: 1.6rem;
        padding: 10px 0;
        line-height: 1.4;
        border-bottom: 1px solid #fff;
    }
}

.c-bsf .box .cnt {
    text-align: center;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt {
        padding: 10px;
    }
}

.c-bsf .box .cnt p {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt p {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}

.c-bsf .box .cnt p span {
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt p span {
        margin-top: 8px;
    }
}

.c-bsf .box .cnt ul {
    padding: 40px 10px;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt ul {
        padding: 20px 15px;
    }
}

.c-bsf .box .cnt ul.bg {
    background-color: #fff;
    color: #767171;
    padding: 8px 5px;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt ul.bg {
        padding: 5px 3px;
        margin-top: 7px;
    }
}

.c-bsf .box .cnt ul.bg li {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt ul.bg li {
        margin-bottom: 10px;
    }
}

.c-bsf .box .cnt ul.bg li:last-child {
    margin-bottom: 0;
}

.c-bsf .box .cnt li {
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .c-bsf .box .cnt li {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}

.c-bsf .box .cnt li:last-child {
    margin-bottom: 0;
}

.c-bsf .text {
    margin-top: 15px;
    padding: 5px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .c-bsf .text {
        margin: 5px 0 10px;
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

.c-txt4,
.c-txt6 {
    margin-top: 80px;
}

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

    .c-txt4,
    .c-txt6 {
        width: 100%;
        margin-top: 40px;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-txt4 p,
.c-txt6 p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
}

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

    .c-txt4 p,
    .c-txt6 p {
        font-size: 1.4rem;
        line-height: 1.8;
    }
}

.c-txt5 {
    margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .c-txt5 {
        margin-bottom: 40px;
    }
}

.c-txt5 .ttl {
    font-size: 2.4rem;
    color: #7E7E7E;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .c-txt5 .ttl {
        font-size: 2rem;
    }
}

.c-txt5 .ttl:before,
.c-txt5 .ttl:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #707070;
}

.c-txt5 .ttl:before {
    margin-right: 25px;
}

@media only screen and (max-width: 767px) {
    .c-txt5 .ttl:before {
        margin-right: 18px;
    }
}

.c-txt5 .ttl:after {
    margin-left: 25px;
}

@media only screen and (max-width: 767px) {
    .c-txt5 .ttl:after {
        margin-left: 18px;
    }
}

.c-txt5 .txt,
.c-txt5 .txt1 {
    margin: 30px auto 0;
    font-size: 2rem;
    line-height: 2;
    width: 730px;
    max-width: 100%;
    padding: 0 5px;
}

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

    .c-txt5 .txt,
    .c-txt5 .txt1 {
        margin: 18px auto 0;
        font-size: 1.4rem;
        line-height: 1.8;
    }
}

.c-txt5 .txt1 {
    width: 100%;
    width: 730px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.c-txt5 .txt1 p {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}

.c-txt5 .txt1 p:last-child {
    margin-bottom: 0;
}

.c-txt5 .txt1 span {
    position: absolute;
    left: 0;
}

.c-txt5 .txt2 {
    font-size: 1.4rem;
    color: #000;
    width: 730px;
    max-width: 100%;
    padding: 0 5px;
    margin: 50px auto 0;
    line-height: 2;
}
@media only screen and (max-width: 767px) {
        .c-txt5 .txt2 {
        margin: 18px auto 0;
        font-size: 1.4rem;
        line-height: 1.8;
    }
}

.c-txt6 {
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .c-txt6 {
        padding: 0;
    }
}

.c-tab1 {
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .c-tab1 {
        margin-top: 30px;
    }
}

.c-tab1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.c-tab1 li {
    padding: 0 30px;
}

@media only screen and (max-width: 767px) {
    .c-tab1 li {
        padding: 0 15px;
    }
}

.c-tab1 a {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 5px 0 30px;
    position: relative;
    display: block;
    color: #000;
}

@media only screen and (max-width: 767px) {
    .c-tab1 a {
        font-size: 1.4rem;
        font-size: 1.1rem;
        padding: 3px 0 25px;
        text-align: center;
    }
}

.c-tab1 a:hover {
    color: #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-tab1 a:hover {
        color: #000;
    }
}

.c-tab1 a:hover:after {
    background: url("../img/arr_bottom--red.svg") no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .c-tab1 a:hover:after {
        background: url("../img/arr_bottom.svg") no-repeat;
        background-size: contain;
    }
}

.c-tab1 a:after {
    content: "";
    width: 22px;
    height: 12px;
    background: url("../img/arr_bottom.svg") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
    .c-tab1 a:after {
        width: 18px;
        height: 10px;
    }
}

.c-tab1__content {
    margin: 40px 0 150px;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .c-tab1__content {
        margin: 20px 0 80px;
        padding-top: 10px;
    }
}

.c-tab1__content:last-child {
    margin-bottom: 0;
}

.c-tab1__content .title {
    width: 100%;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .c-tab1__content .title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

.c-content1 {
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .c-content1 {
        width: 100%;
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-box1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-box1 {
        padding: 0;
    }
}

.c-box1 .img {
    width: 336px;
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .c-box1 .img {
        width: auto;
        margin: 0 auto;
    }
}

.c-box1 .img img {
    max-width: 100%;
}

.c-box1 .txt1 {
    color: #7E7E7E;
    margin: 25px 0 12px;
}

@media only screen and (max-width: 767px) {
    .c-box1 .txt1 {
        margin: 0 0 5px;
    }
}

.c-box1 .txt2 {
    color: #7E7E7E;
    margin: 60px 0 20px;
}

@media only screen and (max-width: 767px) {
    .c-box1 .txt2 {
        margin: 30px 0 10px;
    }
}

.c-box1 .text {
    width: 580px;
    font-size: 1.6rem;
    line-height: 2.6;
}

@media only screen and (max-width: 767px) {
    .c-box1 .text {
        width: 100%;
        margin-top: 30px;
        line-height: 2;
        font-size: 1.4rem;
    }
}

.c-list {
    margin-top: 95px;
}

@media only screen and (max-width: 767px) {
    .c-list {
        margin-top: 50px;
    }
}

.c-list ul {
    padding: 0 90px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-list ul {
        padding: 0;
    }
}

.c-list li {
    width: 100%;
    margin-bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .c-list li {
        margin-bottom: 30px;
    }
}

.c-list .number {
    width: 105px;
    font-size: 5.5rem;
    font-weight: 300;
    color: #DF112B;
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .c-list .number {
        width: 50px;
        font-size: 3rem;
    }
}

.c-list .text {
    padding-left: 48px;
    border-left: 1px solid #707070;
    width: calc(100% - 105px);
    margin-top: 7px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .c-list .text {
        padding-left: 20px;
        width: calc(100% - 50px);
        margin-top: 3px;
    }
}

.c-list .text .ttl {
    font-weight: 600;
    font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
    .c-list .text .ttl {
        font-size: 1.6rem;
    }
}

.c-list .text .txt,
.c-list .text .c-txt5 .txt1,
.c-txt5 .c-list .text .txt1 {
    font-size: 1.4rem;
    margin-top: 10px;
    line-height: 1.8;
}

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

    .c-list .text .txt,
    .c-list .text .c-txt5 .txt1,
    .c-txt5 .c-list .text .txt1 {
        font-size: 1.3rem;
        margin-top: 6px;
        line-height: 1.6;
    }
}

.c-btn--link {
    margin-top: 140px;
}

@media only screen and (max-width: 767px) {
    .c-btn--link {
        margin-top: 70px;
        padding: 0 10px;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-btn--link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    width: 420px;
    max-width: 100%;
    margin: 0 auto;
    padding: 17px 20px;
    border: 4px solid #DF112B;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-btn--link a {
        padding: 10px;
        border: 2px solid #DF112B;
    }
}

.c-btn--link a:hover {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.c-btn--link span {
    padding: 0 70px 0 60px;
    font-size: 2rem;
    font-weight: 500;
    color: #DF112B;
}

@media only screen and (max-width: 767px) {
    .c-btn--link span {
        padding: 0 25px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .c-btn--link img:first-child {
        width: 50px;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .c-btn--detail {
        padding: 0 10px;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.c-btn--detail a {
    width: 320px;
    max-width: 100%;
    display: block;
    text-align: center;
    background-color: #E2E2E2;
    padding: 24px 0px;
    margin: 80px auto 0;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.c-btn--detail a:hover {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.c-btn--detail span {
    font-size: 1.6rem;
}

.c-btn--detail img {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-chart {
    width: 100%;
    height: 600px;
    margin-top: 60px;
    background-color: #F5F5F5;
}

@media only screen and (max-width: 767px) {
    .c-chart {
        width: 96%;
        height: 300px;
        margin: 30px auto 0;
    }
}


.c-tab1__content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.c-txtarea p {
    line-height: 1.8;
    margin: 1em auto;
}

.bold {
    font-weight: bold;
}

.col2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.col2>.col {
    text-align: center;
}

.col.w46 {
    width: 46%;
}

.col img {
    max-width: 100%;
}

#brd .col2>.col img {
    height: 330px;
    width: auto;
}

#brd .col>p {
    text-align: left;
    margin: 1.5em auto;
    min-height: 3em;
    line-height: 1.6;
}

.corp_text {
    line-height: 3em;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .col2 {
        display: block;
    }

    .col2>.col {
        width: auto;
        margin-bottom: 40px;
    }

    #brd .col2>.col img {
        height: auto;
        max-width: 300px;
    }

    #brd .col>p {
        min-height: 0;
        margin: 0.7em auto;
        text-align: center;
    }
}

.titBg {
    margin: 2em 0 1em;
    font-size: 24px;
    text-align: center;
    background: #F4F4F4;
    padding: 0.5em 1em;
}

.txtTit {
    font-size: 22px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-txt5 .txtTit {
        font-size: 18px;
    }

    .titBg {
        font-size: 22px;
        padding: 0.5em 5px;
    }
}

/* temporary hide /ir/digest.html ------------------------------------------ */
a[href*="ir/digest.html"] {
    display: none !important;
}

.page_side .lastest_report .digest_index_link[href*="digest.html"] {
    display: none;
}

.investor_pager a[href*="digest.html"] {
    opacity: 0;
    pointer-events: none;
}

/* temporary hide /ir/company/esg.html ------------------------------------------ */
a[href*="ir/company/esg.html"] {
    display: none !important;
}

/* ------------------------------------------ */


.noDetail .btnBrf {
    pointer-events: none;
}

.c-prg {
    width: 100%;
    margin-top: 75px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-prg {
        margin-top: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        flex-direction: column;
    }
}

.c-prg ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-end;
}
.c-prg.newFig ul.crl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 70px;
    margin: 0 2% 0 12%;
}
.c-prg.newFig ul.crl > li:nth-child(2) {
    padding-top: 80px;
}

.c-prg ul.crl img{
width: 95%;
    }

@media only screen and (max-width: 767px) {
    .c-prg ul {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        order: 2;
    }
    .c-prg.newFig ul.crl {
        margin: 0;
        padding-top: 20px;
    }

    .c-prg ul:last-child {
        order: 1;
    }

    .c-prg ul.crl{
        margin-top: 40px;
    }

    .c-prg ul.crl li{
        width: 80%;
        max-width: 330px;
        margin: 0 auto 40px;
    }
    .c-prg ul.crl img{
        width: 100%;
    }
    .c-prg.newFig ul.crl li:nth-child(2) {
        max-width: 60px;
        padding-top: 0;
    }
}

.c-prg ul p {
    min-height: 68px;
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 30px;
    font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
    .c-prg ul p {
        min-height: 50px;
        margin-top: 30px;
        font-size: 1.6rem;
        padding-left: 20px;
    }
}

.c-prg ul p:before {
    content: "";
    height: 100%;
    width: 14px;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .c-prg ul p:before {
        width: 10px;
    }
}

.c-prg ul p.gray:before {
    background-color: #767171;
}



.c-prg ul > li:nth-child(1) p,
.c-prg.newFig ul > li:nth-child(1) p {
    margin-left: 0;
}
.c-prg ul > li:nth-child(2) p,
.c-prg.newFig ul > li:nth-child(2) p {
    margin-left: 40px;
}
.c-prg ul > li:nth-child(3) p,
.c-prg.newFig ul > li:nth-child(3) p {
    margin-left: 55px;
}

.c-prg ul p.green {
    /*margin-left: 36px;*/
}
@media only screen and (max-width: 767px) {
.c-prg ul p {
    margin-left: 0 !important
    }}

.c-prg ul p.green:before {
    background-color: #1A7938;
}

.c-prg ul p.red {
    /*margin-left: 63px;*/
}
@media only screen and (max-width: 767px) {
.c-prg ul p.red {
    margin-left: 0 !important
    }}

.c-prg ul p.red:before {
    background-color: #DA1231;
}

.c-prg .note {
    position: absolute;
    top: 8px;
    left: 0;
}




@media only screen and (max-width: 767px) {
    .c-prg.newFig ul > li p {
        margin-left: 0 !important;
    }
    .c-prg .note {
        position: relative;
        top: inherit;
        left: inherit;
        order: 0;
    }
}

.c-prg .note p {
    font-size: 1.4rem;
    color: #000;
    line-height: 1.8;
}

.c-tbl {
    margin-top: 50px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
.c-tbl {
    margin-top: 30px;
    }}

.c-tbl table {
    width: 100%;
}

.c-tbl th,
.c-tbl td {
    border-top: 1px solid #A0A0A0;
    font-size: 1.4rem;
    color: #000;
    padding: 22px 5px;
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
.c-tbl th,
.c-tbl td {
    font-size: 1.3rem;
    font-size: 1.1rem;
    padding: 10px 5px;
    width: 20%;
    vertical-align: middle;
}
}
@media only screen and (max-width: 320px) {
.c-tbl tbody th:first-child {
    width: 21%;
    font-size: 1rem;
}
}
@media only screen and (max-width: 767px) {
.c-prg .note p {
    font-size: 1.1rem;
}
.c-prg ul:last-child p {
    font-size: 1.1rem;
    min-height: 2.7em;
    margin-top: 15px;
}
}

.c-tbl thead th {
    border: 0;
    text-align: right;
}

.c-tbl tbody th {
    font-weight: 600;
    text-align: left;
}

.c-tbl tbody td {
    text-align: right;
}

.c-tbl tbody tr:last-child td,
.c-tbl tbody tr:last-child th {
    border-bottom: 1px solid #A0A0A0;
}

.c-tbl .red {
    color: #DA1231;
}


.c-visual__img {
    /*opacity: 0;*/
}


.c-nav a i.icon_plus {
    display: block;
    font-style: normal;
    text-align: center;
    font-size: 14px;
    line-height: 0;
    margin: 2px auto 17px;
}
.c-nav .navChild.open {
    display: block;
}
.c-nav .navChild {
    display: none;
    position: absolute;
    white-space: nowrap;
    margin: auto;
    min-width: 10em;
    z-index: 99;
    background: #F4F4F4;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    /*top: calc(100% + 10px);*/
    top: 100%;
    left: -20px;
    padding: 10px;
}
.c-nav .navChild > li:first-child {
    padding-top: 10px;
}
.c-nav .navChild > li {
    display: block;
    margin: 0em auto;
}
.c-nav .navChild > li a {
    display: inline-block;
    font-weight: 300;
    font-size: 1.5rem;
    padding: 0.7em 1em;
}
@media only screen and (max-width: 767px) {
.c-nav li {
    text-align: center;
}
.c-nav a i.icon_plus {
    margin: auto;
    display: inline-block;
    margin-left: -5px;
    margin-right: 5px;
}
.c-nav .navChild {
    position: static;
    background: none;
    box-shadow: none;
}
.c-nav .navChild > li:first-child {
    padding-top: 25px;
}
.c-nav .navChild > li a {
    display: inline-block;
}
}

/* first animation 停止 */
.c-loader_wrap {
    display: none;
}
.fadeBox {
    display: none;
}
.mainvis {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*flex-wrap: wrap;*/
    /*min-height: 550px;*/
    text-align: center;
    position: relative;
    padding: 50px 10px 220px;
    padding: 50px 10px 120px;
    padding: 50px 10px 60px;
}
.mainvis > a {
    display: inline-block;
}
.mainvis_img {
    height: auto !important;
    width: auto !important;
    max-width: 720px;
    /*margin-top: -100px;*/
}
.mainvis_img_sp {
    height: auto !important;
    width: 284px !important;
    max-width: 96%;
    margin: 46px auto;
}
.mainvis .c-btn--scroll {
    bottom: 100px;
    bottom: 0;
    display: none !important;
}
@media screen and (max-width: 767px) {
.mainvis {
    min-height: 0px;
    padding: 0 0 60px;
    padding: 0 0 0;
}
.mainvis .c-btn--scroll {
    bottom: 15px;
}
}

section.page_library img[src*="data:image/gif"] {
    max-width: 100%;
    height: auto;
    display: block;
}
.banner_area > a {
    display: block;
    line-height: 0;
    margin: 40px auto;
}
.banner_area > a img {
    max-width: 100%;
    box-shadow: 0px 3px 20px 5px rgb(0 0 0 / 10%);
}

/* added 20201025 ------------------------------------------ */
.c-contact--box.full {
    width: 100%;
}
.c-contact--box a {
    flex-direction: initial;
    align-items: center;
    padding: 2em 2em;
}
.c-contact--box.white .c-btn--more:after {
    background-image: url(../img/blank_white.svg);
}
.c-contact--box.hasLogo a {
    color: #000;
    justify-content: flex-start;
    padding: 2.4em 2em;
}
.c-contact--box.hasLogo a img {
    width: 125px;
    margin-right: 2em;
}
.c-contact--box.hasLogo .eng {
    color: #333333;
    font-size: 24px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}
@media screen and (max-width: 767px) {
.c-contact--box.full {
    width: calc(100% - 20px);
}
}


.c-contact--box a:hover {
    opacity: 0.8;
}

.bannerArea {
    text-align: center;
    margin: 20px auto 80px;
    padding: 0 20px;
}
.bannerArea a {
    display: inline-block;
}
.bannerArea img {
    max-width: 100%;
    width: 749px;
    transition: all 0.7s ease;
    box-shadow: 0px 3px 20px 5px rgb(0 0 0 / 10%);
}
.bannerArea a:hover {
    opacity: 0.7;
}
.bannerArea a:hover img {
    box-shadow: none;
}
@media screen and (max-width: 767px) {
.bannerArea {
    text-align: center;
    margin: 0px auto 80px;
}
.bannerArea_nextstandard{
    margin-top: 20px;
}
}


/* 20210625 */
.c-nav--footer ul li a[href*="snt-leasing.co.jp"] {
    display: none;
}
.kome_span_block {
    display: block;
    text-indent: -1em;
    padding-left: 1em !important;
}








/***上書き***/

.original_wrapper {
    width: 1000px;
    margin: 0 auto;
}

.index_title {
    padding: 60px 0;
    border-bottom: 1px solid #A5A5A5;
}

.index_title p {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: bold;
}

.index_title h1 {
    font-size: 15px;
    font-weight: bold;
}

.index_page_list {
    padding: 70px 0;
}

.index_page_list > .index_box:not(:last-of-type) {
    margin-bottom: 100px;
}

.index_page_list h2 {
    margin-bottom: 40px;
    border-left: 6px solid #DF112B;
    padding-left: 13px;
    color: #DF112B;
    font-size: 25px;
}

.index_page_list h3 {
    margin-bottom: 30px;
    padding-bottom: 7px;
    border-bottom: 1px solid #000000;
    font-size: 18px;
}

.index_page_list h3:not(:first-of-type) {
    margin-top: 40px;
}

.index_page_list p {
    position: relative;
    text-decoration: underline;
    font-size: 16px;
    color: #5A5757;
    padding-left: 30px;
}

.index_page_list .boxin p {
    margin-bottom: 16px;
}

.index_page_list p::before {
    content: '▶ ';
    position: absolute;
    top: 0;
    left: 0;
}

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


    .original_wrapper {
        width: calc(100% - 20px);
    }



    



}



/****single***/
.single_content >  * {
    margin-bottom: 35px;
}
.single_content h2 {
    border: 1px solid #000000;
    font-size: 22px;
    font-weight: normal;
    padding: 10px;
    text-align: center;
}

.single_content h3 {

}

.single_content p {
    font-size: 16px;
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
}

.single_content > p {
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
}


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

    .single_content h2 {
        font-size: 18px;
        padding: 5px;
        text-align: left;
    }

}