@charset "UTF-8";

/* greeting ---------------------- */

#greeting .message {
    max-width: 960px;
    margin: 0 auto;
}

#greeting .message .txt01 {
    font-size: 110%;
}

#greeting .message .txt-sign {
    margin-top: 6%;
    display: flex;
    justify-content: flex-end;
}

#greeting .message .txt-sign .txt01 {
    font-size: 110%;
    text-align: center;
    margin-bottom: 10px;
}

#greeting .message .txt-sign .txt02 {
    text-align: center;
}

/* company-profile ---------------------- */

#company-profile .tbl-style01 {
    margin-top: 6%;
}

/* philosophy ---------------------- */

#philosophy .inner {
    max-width: 740px;
    margin: 0 auto;
}

/* slogan ---------------------- */

#slogan .inner {
    max-width: 740px;
    margin: 0 auto;
}

#slogan .txt-list {
    margin-bottom: 6%;
}

#slogan .txt-list:last-child {
    margin-bottom: 0;
}

#slogan .txt-list dt {
    color: #2e69c8;
    font-size: 150%;
}

#slogan .txt-list dd {
    font-size: 110%;
}

/* action-guidelines ---------------------- */

#action-guidelines .inner {
    max-width: 740px;
    margin: 0 auto;
}

/* history ---------------------- */

#history .slide-style01 {
    max-width: 778px;
    margin: 6% auto 0;
}

#history .list {
    max-width: 900px;
    margin: 0 auto;
}

#history .list .item {
    min-height: 113px;
    margin-bottom: 2%;
    display: flex;
    flex-wrap: wrap;
}

#history .list .item dt {
    color: #2e69c8;
    font-size: 140%;
    width: 110px;
    text-align: center;
    margin-right: 4%;
    padding-bottom: 2%;
    position: relative;
}

#history .list .item dt::after {
    content: "";
    background-color: #554345;
    width: 1px;
    height: calc(100% - 44px);
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#history .list .item dd {
    font-size: 110%;
    padding-bottom: 2%;
    flex: 1;
}

@media screen and (max-width: 1000px) {
    #history .list .item dt {
        font-size: 120%;
        width: 85px;
    }
    #history .list .item dt::after {
        height: calc(100% - 36px);
    }
}

@media screen and (max-width: 767px) {
    #history .list .item {
        min-height: 84px;
    }
    #history .list .item dt::after {
        height: calc(100% - 30px);
    }
    #history .list .item dd {
        font-size: 100%;
    }
}

@media screen and (max-width: 480px) {
    #history .list .item dt {
        font-size: 100%;
        width: 70px;
    }
    #history .list .item dt::after {
        height: calc(100% - 24px);
    }
}