@charset "UTF-8";

a {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}


/* font */
.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.noto-sans-jp-400 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.noto-sans-jp-700 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}




/* タイトル位置 */
.contents__title-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;

}


/* タイトル */
.black__title {
    font-size: 48px;
    color: #191919;
    margin-right: 8px;
}

.black__sub-title {
    font-size: 24px;
    color: #4B6CB7;
    margin-left: 8px;
}


/* タイトル間斜線 */
.diagonal-line {
    width: 1px;
    height: 24px;
    transform: rotate(45deg);
    background-color: #4B6CB7;
    margin: 0 8px;
}

.diagonal-line-white {
    width: 1px;
    height: 24px;
    transform: rotate(45deg);
    background-color: #ffffff;
    margin: 0 8px;
}

/* ボタン */
.btn {
    font-size: 16px;
    color: #ffffff;
    background-color: #4B6CB7;
    box-shadow: 0px 2px 4px #18284875;
    width: 256px;
    padding: 22px 0 21px 40px;
    text-align: left;
    display: block;
    margin: 0 auto;
}


/* ボタンの中の矢印 */
.arrow {
    display: inline-block;
    margin-left: 16px;
}

.arrow::after {
    content: '';
    width: 16px;
    height: 4px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
    display: inline-block;
    margin-left: 8px;
}