#Information {
    position: relative;
    min-height: calc(100dvh - 90px);

    background-repeat: repeat;
    background-image:
        radial-gradient(#00000011 25%, transparent 25%),
        radial-gradient(#00000011 25%, transparent 25%);
    background-size: 8px 8px, 8px 8px;
    background-position: 0 0, 4px 4px;
    background-color: #FFdd00;
    overflow: hidden;
}

#Information::before,
#Information::after {
    content: "";
    position: absolute;
    z-index: 0;
    display: block;
    pointer-events: none;

    width: calc((100vw - 1200px)/2);
    max-width: 100px;
    height: 100%;
    top: 0;

    background-image: url(../../assets/images/dot_gradation_lin_LtoR_K.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: right;
}

#Information::before {
    left: 0;
}

#Information::after {
    right: 0;
    transform: rotate(180deg);
}


#Information .container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
}

/*********** title ************/

#Information .content.title {
    position: relative;
    width: 100%;
    padding: 9px;
    border: 5px solid black;
    border-bottom-width: 10px;
    background-color: var(--white);
}

#Information .content.title::before,
#Information .content.title::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
}

#Information .content.title::before {
    background-image: url(../../assets/images/warpLeft.png);
    background-position: left;
}

#Information .content.title::after {
    background-image: url(../../assets/images/warpRight.png);
    background-position: right;
}

#Information h2 {
    font-size: 48px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

#Information h2::after {
    display: inline-block;
    content: attr(data);
    font-size: 12px;
    color: var(--black);
    margin: auto 6px;
}

#Information .wrapper.description {
    margin-top: 32px;
}

#Information .wrapper.description h1 {
    font-size: 32px;
    text-align: left;
    color: var(--black);
    position: relative;
}

@media(max-width:997px) {
    #Information h2 {
        flex-direction: column;
    }
}

@media (max-width:576px) {
    #Information h2 {
        font-size: 32px;
    }
}

/********** FV **********/

#Information .FV {
    position: relative;
    margin-top: 32px;
    border: 5px solid black;
}

#Information .FV::before {
    content: "";
    position: absolute;
    display: block;

    width: 200px;
    height: 200px;

    top: -75px;
    right: -75px;
    z-index: 1;

    background-image: url(../assets/interview/dot.png);
    background-size: contain;
}

#Information .FV img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
}

#Information .FV a::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;
    translate: -50% -50%;

    width: 15%;
    height: auto;

    aspect-ratio: 92/65;
    background-image: url(../assets/interview/youtube_icon.png);
    background-size: contain;

    pointer-events: none;
    z-index: 3;
    transition: width 100ms;
}

#Information .FV a:hover::before {
    width: 17%;
}

@media screen and (max-width:997px) {
    #Information .FV {
        width: 100vw;
        margin-left: -3vw;
    }
}

/********** content_list **********/
.content_list {
    position: relative;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.content_list .interview_item:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.interview_item {
    position: relative;
}

.interview_item::before {
    content: "";
    position: absolute;
    display: block;

    width: 75px;
    height: 75px;

    top: -25px;
    left: -25px;
    z-index: 1;

    background-image: url(../assets/interview/dot.png);
    background-size: contain;
}

.interview_item img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
}

.content_list .interview_item:nth-last-child(1):nth-child(odd) a {
    width: 50%;
    position: static;
    display: block;
}

.interview_item .desc {
    position: relative;

    margin-top: -1rem;
    padding: 0 1rem;
    z-index: 3;

    text-align: left;
}

.content_list .interview_item:nth-last-child(1):nth-child(odd) .desc {
    margin-top: 0;
    width: 50%;
}

.interview_item .title {
    width: fit-content;

    color: var(--white);
    font-weight: 900;

    padding: 0.25rem 0.5rem;
    margin: 1px;

    background: conic-gradient(from -45deg, #003666, #005AAA, #003666, #005AAA, #003666);
    background-size: 16px 16px;
    background-position: center;
}

.interview_item p.text {
    font-weight: 500;
    margin-top: 1rem;
}

.interview_item span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.interview_item span.name {
    font-size: 40px;
}

.interview_item span.name::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../assets/interview/mark_m.png);
    background-size: contain;
    margin-right: 12px;
}

.interview_item span.name::after {
    content: attr(data);
    font-size: 12px;
    align-self: flex-end;
}

.interview_item span.role {
    font-weight: 500;
    font-size: 14px;
    padding-left: 52px;
}

@media screen and (max-width:997px) {
    .content_list {
        grid-template-columns: repeat(1, 1fr);
    }

    .content_list .interview_item:nth-last-child(1):nth-child(odd) {
        grid-column: span 1;
        display: block;
    }

    .content_list .interview_item:nth-last-child(1):nth-child(odd) a {
        width: 100%;
    }

    .content_list .interview_item:nth-last-child(1):nth-child(odd) .desc {
        margin-top: -1rem;
        width: 100%;
    }
}

/********** button *********/
.wrapper.button {
    border: 1px solid black;
    font-size: 20px;

    width: 100%;
    padding: 1.5rem;
    margin-top: 32px;

    background-color: var(--white);
    background-image: url(../assets/interview/dot_gradation_rad_fromLT_K.png);
    background-size: contain;
    background-position: left top;
}

.wrapper.button a {
    position: relative;
    display: block;

    width: 50%;
    min-width: 500px;
    padding: 1.5rem;
    margin: auto;

    border: 5px solid black;
    border-bottom-width: 10px;
    background-color: var(--white);

    font-weight: 900;
    text-wrap: nowrap;
    color: var(--black);
}

.wrapper.button a:hover {
    background-color: var(--yellow);
}

.wrapper.button a::before,
.wrapper.button a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
}

.wrapper.button a::before {
    background-image: url(../../assets/images/warpLeft.png);
    background-position: left;
}

.wrapper.button a::after {
    background-image: url(../../assets/images/warpRight.png);
    background-position: right;
}

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

    .wrapper.button a {
        width: 90%;
        min-width: unset;
        max-width: 700px;
    }
}

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

    .wrapper.button a {
        padding: 1rem;
        width: 100%;
        min-width: unset;
    }
}