@charset "utf-8";
/* CSS Document */

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

	color　/　本体カラーから選ぶ-共通

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

.h-color {
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 1rem 0 3rem;
    position: relative;
    color: #222;
}

.h-color span {
    color: var(--color-text);
    padding-right: 1rem;
}

.h-color.black {
    --color-1: #161616;
    --color-2: #39377b;
    --color-text: #161616;
}
.h-color.white {
    --color-1: #cecedf;
    --color-2: #f2f0fa;
    --color-text: #8d8db5;
}
.h-color.blue {
    --color-1: #4560ba;
    --color-2: #c2daf8;
    --color-text: #4560ba;
}
.h-color.silver {
    --color-1: #cecece;
    --color-2: #e4e4e4;
    --color-text: #959595;
}
.h-color.navy {
    --color-1: #222559;
    --color-2: #aeb0d4;
    --color-text: #222559;
}

.h-color::after {
    content: "";
    width: 100%;
    height: 1rem;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(
        90deg,
        var(--color-1) 0%,
        var(--color-2) 50%,
        #FFFFFF 80%
    );
}


@media screen and (max-width: 810px) {
    .h-color {
        padding: 2rem 20px 3rem;
        width: calc(100% + 40px);
        margin: 0 -20px 3.5rem;
        box-sizing: border-box;
    }

}


@media screen and ( max-width: 480px ){
    .h-color {
        padding: 2rem 20px 3rem;
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

}



/*------------------------------------------------------------------------------
  other-link
------------------------------------------------------------------------------*/
.main-contents .other-link {
    margin-bottom: 5rem;
}

.main-contents .other-link > section:not(:last-child) {
    margin-bottom: 3rem;
}

.main-contents .other-link .h-other {
    font-size: 2rem;
    color: #35333f;
    padding-bottom: 5px;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #35333f;
    text-align: center;
    font-weight: bold;
    letter-spacing: .08em;
}

.main-contents .other-link .color-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-contents .other-link .color-list li {
    width: 10%;
    text-align: center;
    padding: 10px 0;
}

.main-contents .other-link .color-list li a:before {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.main-contents .other-link .color-list li span {
    font-size: 1.2rem;
}


@media screen and (max-width: 600px) {
    .main-contents .other-link .color-list li {
        width: 15%;
    }
}


@media screen and (max-width: 480px) {
    .main-contents .other-link .color-list li {
        width: 20%;
    }
}

