.hero {
    background-image: url(/img/bg-hero.jpg);
    background-color: var(--primary-bland-color);
    background-position: 0 60%;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    height: 800px;
}


.hero--box {
    width: 100%;
    max-width: var(--inner-medium);
}

.hero--titleBox {
    text-align: center;
    padding: 24px;
    display: grid;
    row-gap: 8px;
}

.hero--title {
    color: var(--white);
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 1.5;
    filter: drop-shadow(1px 1px 3px var(--black));
    text-align: left;
}

.hero--fukidashi {
    color: var(--black);
    width: fit-content;
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    background-color: var(--white);
    padding: 8px 24px;
    margin-bottom: 32px;
    border-radius: 8px;
    position: relative;
}

.hero--fukidashi::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 25%;
    transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border-color: var(--white) transparent transparent transparent;
    border-width: 24px 16px 0 16px;
    border-style: solid;
}

.hero--img {
    width: 100%;
    max-width: 560px;
    margin-top: 8px;
}

.hero .emphasis {
    color: var(--accent-color);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .hero {
        height: 480px;
    }

    .hero--box {
        /* ヘッダーのロゴのpaddingに合わせる */
        /* padding-left: calc((var(--height-header-tablet) - var(--height-element-in-header-tablet)) / 2); */
    }

    .hero--fukidashi {
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 24px;
        font-size: 2.4rem;
    }

    .hero--fukidashi::after {
        border-width: 16px 8px 0 8px;
    }
    
    .hero--title {
        font-size: 2.8rem;
        line-height: 1.5;
    }

    .hero--img {
        max-width: 400px;
    }

}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .hero {
        background-position: 50% 100%;
    }
    
    .hero--title {
        font-size: 2.4rem;
        line-height: 2;
    }
}

.informationSection {
    background-color: var(--primary-bg-color);
}

.informationSection .flex-col2 {
    display: flex;
    column-gap: calc(10% + 1px);
    align-items: center;
}

.informationSection .content--titleBox {
    display: block;
}

.informationSection .content--title {
    text-align: center;
}

.informationSection .flex-col2--body {
    display: block;
    flex: 1 0 auto;
    /* padding-top: 60px; */
}

.informationSection .content--textBox {
    margin-top: 0;
    text-align: center;
}

.informationSection .content--text {
    margin-top: 0;
    text-align: left;
}

.informationSection .content--titleBtn {
    margin-top: 40px;
    font-size: 1.6rem;
}

.informationSection .recordList {
    width: 100%;
    padding: 16px 0 16px;
    position: relative;
    border-bottom: 1px dotted var(--black);
    display: flex;
    column-gap: 16px;
    margin-top: 48px;
}

/* .informationSection .recordList::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 10px;
    height: 12px;
    background-image: url(../img/rounded-triangle-right-lightblue.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
} */

.informationSection .recordList--metadata {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.informationSection .recordList--date {
    color: var(--secondary-bland-color);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
}

.informationSection .recordList--genre {
    color: var(--white);
    background-color: var(--category-bg-color);
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.6;
    padding: 4px 16px;
    border-radius: 4px;
}

.informationSection .recordList--titleBox {
    margin-top: 8px;
}

.informationSection .recordList--title {
    color: var(--font-color-black);
    font-size: 1.6rem;
    line-height: 1.6;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .informationSection {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .informationSection .flex-col2 {
        flex-direction: column;
        row-gap: 8px;
    }

    .informationSection .content--titleBox {
        flex: initial;
    }

    .informationSection .flex-col2--body {
        flex: initial;
        width: 100%;
        margin-top: 24px;
    }

    .informationSection .recordList {
        padding-top: 8px;
        padding-bottom: 8px;
        flex-direction: column;
        row-gap: 8px;
    }

    .informationSection .content--titleBtn {
        display: none;
    }

    .informationSection .btnBox {
        margin-top: 32px;
    }

    .informationSection .content--text {
        margin-top: 0;
        text-align: center;
    }
}

.businessSection {
    background-color: var(--secondary-bg-color);

    .media--img {
        filter: drop-shadow(-2px 4px 4px var(--grey));
    }
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .businessSection {
        .media {
            flex-direction: column;
        }

        .media--body {
            /* text-align: center; */
        }

        .media--imgBox {
            width: 100%;
        }
    }
}

.companySection {

    .media--body {
        min-width: 400px;
    }

    .media--definitionList {
        flex-grow: 1;
    }

}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .companySection {
        .media {
            flex-direction: column;
        }
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .companySection {
        .media--body {
            min-width: 100%;;
        }
    }
}
