/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #464646;
    font-weight: 500;
    letter-spacing: 0.03rem;
    background-color: #ffffff;

}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
a {
    text-decoration: none;
}

/* 汎用スタイル */
.section {
    width: 100%;
    padding: 90px 0;
}
.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.fs-x-large {
    font-size: 140%!important;
}
.fs-large {
    font-size: 120%!important;
}
.fs-regular {
    font-size: 100%!important;
}
.fs-small {
    font-size: 80%!important;
}
.def {
    font-size: 18px;
    font-weight: 500;
}
.mb-20 {
    margin-bottom: 20px!important;
}
.mb-40 {
    margin-bottom: 40px!important;
}
.mb-60 {
    margin-bottom: 60px!important;
}

/* 共通のセクションスタイル */
.section h2,
.content h3 {
    font-size: 34px;
    letter-spacing: 0.08rem;
    line-height: 1.5;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 60px;
}
.section h2 {
    color: #ffffff;
    background-color: #2eace2;
    border-radius: 0;
}
.content h3 {
    color: #2eace2;
    border-bottom: 3px solid #2eace2;
}

/* 共通のボタンスタイル */
.application-button a,
.company-button a,
.ga-button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #fc8332;
    background-color: #fc8332;
    color: #ffffff;
    padding: 10px 15px;
    width: 380px;
    height: 90px;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}
.application-button a:hover,
.company-button a:hover,
.ga-button a:hover {
    color: #fc8332;
    border: 3px solid #fc8332;
    background-color: #ffffff;
}
.application-button a:hover .arrow-icon,
.company-button a:hover .arrow-icon,
.ga-button a:hover .arrow-icon {
    background-color: #fc8332;
}
.application-button a:hover .arrow-icon .arrow,
.company-button a:hover .arrow-icon .arrow,
.ga-button a:hover .arrow-icon .arrow {
    background-color: #ffffff;
}
.application-button span,
.company-button span,
.ga-button span {
    font-size: 20px;
    font-weight: 600;
}
.arrow-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.arrow {
    width: 10px;
    height: 13px;
    background-color: #fc8332;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-left: 2px;
    transition: all 0.3s ease;
}

.ft-bnr-content .ga-button a,
.venue-info .company-button a {
    width: 260px;
    height: 70px;
    margin: 10px auto;
}

/* 共通の情報ラベルスタイル */
.info-label {
    background-color: #767676;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.info-content p {
    font-size: 20px;
    font-weight: 600;
}

/* 共通の講師プロフィールスタイル */
.instructor-profile {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.instructor-profile img {
    border-radius: 5px;
    object-fit: cover;
}
.instructor-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.instructor-details .inst-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}
.instructor-details h4 span {
    line-height: 1.4;
}

.seminar,
.faq {
    background-color: #ffffff;
}
.intro,
.consultation,
.company-info,
.ft-bnr  {
    background-color: #f8f8f8;
}

@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    :target {
        scroll-margin-top: 50px; /* ヘッダーの高さ分ずらす */
    }
    .pc {
        display: none;
    }
    body {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }
    .container {
        padding: 0 15px;
    }
    .def {
        font-size: 16px;
    }
    .mb-20,
    .mb-40 {
        margin-bottom: 20px!important;
    }
    .mb-60 {
        margin-bottom: 40px!important;
    }

    /* 共通のセクションスタイル */
    .section h2,
    .content h3 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 40px;
    }

    /* 共通のボタンスタイル */
    .application-button a,
    .company-button a{
        width: 100%;
        height: 65px;
    }
    .application-button span,
    .company-button span {
        font-size: 20px;
    }
    .arrow-icon {
        right: 15px;
        transform: translateY(-50%);
    }

    .venue-info .company-button a {
        width: 100%;
        height: 65px;
        margin: 0 auto;
    }

    /* 共通の情報ラベルスタイル */
    .info-label {
        font-size: 20px;
    }
    .info-content p {
        font-size: 18px;
    }

    /* 共通の講師プロフィールスタイル */
    .instructor-profile {
        flex-direction: column;
        gap: 20px;
    }
    .instructor-details {
        gap: 15px;
    }
    .instructor-details .inst-name {
        font-size: 18px;
    }
}


/* メインビジュアル
----------------------------------------- */
.mv {
    padding: 130px 0 80px;
}
.sub-mv {
    padding: 100px 0 60px;
}
.mv h1,
.sub-mv h1  {
    max-width: 1080px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .mv,
    .sub-mv {
        padding: 90px 0 40px;
    }
}


/* 中高年世代活躍プロジェクトについて
----------------------------------------- */
.intro .intro-content {
    padding: 60px;
    background-color: #ffffff;
    border-radius: 5px;
}
.intro .intro-content h2 {
    font-size: 34px;
    color: #2eace2;
    background-color: transparent;
    padding: 0;
    margin-bottom: 40px;
}
.intro .intro-content p {
    font-size: 23px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .intro .intro-content {
        padding: 20px;
    }
    .intro .intro-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .intro .intro-content p {
        font-size: 20px;
    }
}


/* 宮城労働局
----------------------------------------- */
.overview-image {
    width: 100%;
    height: 580px;
    margin-bottom: 60px;
    border-radius: 5px;
    overflow: hidden;
}
.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overview-text {
    font-size: 23px;
    font-weight: 600;
    /* text-align: center; */
    margin-bottom: 60px;
}
.participation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}
.participation-info .info-item {
    display: flex;
    gap: 30px;
}
.participation-info .info-label {
    width: 180px;
    background-color: #2eace2;
    color: #ffffff;
    padding: 15px 0;
}
.participation-info .info-content {
    display: flex;
    align-items: center;
    width: calc(100% - 210px);
    line-height: 1.5;
}
.seminar-sessions {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.session-card {
    flex: 1;
    background-color: #F8F8F8;
    border-radius: 5px;
    overflow: hidden;
}
.session-header {
    background-color: #2eace2;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.session-content {
    padding: 25px;
}
.session-date {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #2eace2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.session-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.session-info {
    min-height: 150px;
}
.session-info h4 {
    font-size: 23px;
    margin-bottom: 15px;
}
.session-info p {
    font-size: 20px;
    font-weight: 600;
}
.instructor-label {
    background-color: #767676;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    margin-bottom: 30px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}
.seminar .instructor-profile img {
    width: 180px;
    height: 220px;
    object-fit: cover;
}
/* .archive-content {
    display: flex;
    gap: 40px;
} */
/* .archive-item {
    width: calc(50% - 20px);
} */
.archive-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .overview-image {
        height: 240px;
        margin-bottom: 40px;
    }
    .overview-text {
        font-size: 20px;
        text-align: left;
        margin-bottom: 40px;
    }
    .participation-info {
        gap: 20px;
        margin-bottom: 40px;
    }
    .participation-info .info-item {
        flex-direction: column;
        gap: 15px;
    }
    .participation-info .info-label {
        width: 100%;
        padding: 10px 0;
    }
    .participation-info .info-content {
        width: 100%;
    }
    .seminar-sessions {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    .session-header {
        font-size: 20px;
        padding: 10px 0;
    }
    .session-content {
        padding: 20px;
    }
    .session-date {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .session-details {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .session-info {
        min-height: auto;
    }
    .session-info h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .session-info p {
        font-size: 18px;
    }
    .instructor-label {
        font-size: 20px;
        padding: 10px 0;
        margin-bottom: 20px;
    }
    .seminar .instructor-profile img {
        width: 100%;
        height: 240px;
    }
    .archive-content {
        flex-direction: column;
    }
    .archive-item {
        width: 100%;
    }
    .archive-item img {
        height: 240px;
    }
}


/* 就職復職相談会
----------------------------------------- */
.consultation {
    padding-bottom: 0;
}
.consultation-overview {
    margin-bottom: 60px;
}
.consultation-venues {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.venue-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}
.venue-header {
    background-color: #2eace2;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
}
.venue-content {
    padding: 25px;
}
.venue-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.venue-info img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 5px;
}
.venue-info .info-item {
    color: #2eace2;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    padding: 15px 0;
    border: 3px solid #2eace2;
    border-radius: 5px;
}
.info-row {
    display: flex;
    gap: 30px;
}
.info-row .info-label {
    width: 130px;
    padding: 15px 0;
}
.info-row .info-content {
    width: calc(100% - 160px);
    line-height: 1.5;
}
.usage-guide {
    margin-bottom: 60px;
}
.steps-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.step-item {
    width: calc(25% - 22.5px);
}
.step-image {
    margin-bottom: 20px;
}
.step-image img {
    width: 100%;
    height: 190px;
    border-radius: 5px;
    object-fit: cover;
}
.step-content h4 {
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    color: #2eace2;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .consultation-overview {
        margin-bottom: 40px;
    }
    .consultation .overview-image {
        height: 240px;
        margin-bottom: 40px;
    }
    .consultation-venues {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .venue-header {
        font-size: 20px;
        padding: 10px 0;
    }
    .venue-content {
        padding: 20px;
    }
    .venue-info {
        flex-direction: column;
        gap: 20px;
    }
    .venue-info img {
        height: 240px;
    }
    .venue-info .info-item {
        font-size: 20px;
        padding: 10px 0;
    }
    .info-row {
        flex-direction: column;
        gap: 15px;
    }
    .info-row .info-label {
        width: 100%;
        padding: 10px 0;
    }
    .info-row .info-content {
        width: 100%;
    }
    .usage-guide {
        margin-bottom: 40px;
    }
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    .step-item {
        width: 100%;
    }
    .step-image {
        margin-bottom: 20px;
    }
    .step-image img {
        height: 240px;
    }
    .step-content h4 {
        font-size: 24px;
    }
}


/* 企業向け情報
----------------------------------------- */
.subtitle {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #fc8332;
    margin-bottom: 40px;
}
.section-header h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 15px;
}
.free-badge {
    width: 140px;
    background-color: #2eace2;
    color: #ffffff;
    font-size: 23px;
    border-radius: 5px;
    padding: 10px 0;
}
.section-header h3 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #2eace2;
}
.seminar-section {
    margin-bottom: 60px;
}
.seminar-description {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 60px;
}
.seminar-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-row {
    display: flex;
    gap: 30px;
}
.detail-label {
    width: 180px;
    background-color: #2eace2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 15px 0;
}
.detail-content {
    display: flex;
    align-items: center;
    width: calc(100% - 210px);
}
.detail-content p {
    font-size: 20px;
    font-weight: 600;
}
.company-info .instructor-profile img {
    width: 290px;
    height: 230px;
    object-position: 50% 25%;
}
.job-fair-section {
    margin-bottom: 60px;
}
.job-fair-description {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 60px;
}
.venue-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.participation-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-fair-section.sendai-comp-intro .venue-cards {
    margin-bottom: 90px;
}
.job-fair-section.osaki-comp-intro,
.job-fair-section.osaki-comp-intro .venue-cards {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .subtitle {
        font-size: 24px;
        line-height: 1.45;
        margin-bottom: 20px;
    }
    .section-header h3 {
        gap: 15px;
        padding-bottom: 10px;
    }
    .free-badge {
        width: auto;
        font-size: 18px;
        padding: 8px;
    }
    .section-header h3 {
        font-size: 24px;
    }
    .seminar-section,
    .job-fair-section {
        margin-bottom: 40px;
    }
    .seminar-description,
    .job-fair-description {
        font-size: 20px;
        text-align: left;
        margin-bottom: 40px;
    }
    .seminar-details,
    .participation-details {
        flex-direction: column;
        gap: 20px;
    }
    .detail-row {
        flex-direction: column;
        gap: 15px;
    }
    .detail-label {
        width: 100%;
        font-size: 20px;
        padding: 10px 0;
    }
    .detail-content {
        width: 100%;
    }
    .detail-content p {
        font-size: 18px;
    }
    .company-info .instructor-profile img {
        width: 100%;
        height: 240px;
        margin-top: 10px;
    }
    .venue-cards {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .job-fair-section.comp-intro,
    .job-fair-section.comp-intro .venue-cards {
        margin-bottom: 0!important;
    }
}


/* よくある質問
----------------------------------------- */
.faq {
    /* padding-bottom: 0; */
}
.jobseeker-questions {
    margin-bottom: 60px;
}
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-item {
    width: 100%;
}
.question,
.answer {
    border: 3px solid #b2e5fb;
    box-sizing: border-box;
    padding: 20px 25px;
}
.question {
    border-radius: 5px 5px 0 0;
    background-color: #b2e5fb;
}
.answer {
    border-radius: 0 0 5px 5px;
    background-color: #ffffff;
}
.question p,
.answer p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .jobseeker-questions {
        margin-bottom: 40px;
    }
    .faq-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .question,
    .answer {
        padding: 15px;
    }
    .question p,
    .answer p {
        font-size: 18px;
    }
}


/* フッターバナー
----------------------------------------- */
.ft-bnr {
    padding: 90px 0;
}
.ft-bnr .ft-bnr-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.ft-bnr .ft-bnr-content > div {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: calc(33.33% - 20px);
    min-height: 470px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 5px;
}
.ft-bnr .ft-bnr-content h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    font-size: 23px;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
.ft-bnr .ft-bnr-content .ga-button a {
    width: 260px;
    height: 70px;
    margin: 10px auto;
}
.ft-bnr .container h2:nth-of-type(2) {
    margin-top: 80px;
}


@media screen and (max-width: 768px) {
    .ft-bnr {
        padding: 40px 0;
    }
    .ft-bnr .ft-bnr-content {
        gap: 40px;
    }
    .ft-bnr .ft-bnr-content > div {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }
    .ft-bnr .ft-bnr-content h3 {
        width: 100%;
        height: auto;
        font-size: 20px;
        padding: 0 0 15px;
        margin-bottom: 15px;
    }
    .ft-bnr .ft-bnr-content .txt {
        margin-bottom: 10px;
    }
    .ft-bnr .ft-bnr-content .ga-button a {
        width: 100%;
        height: 65px;
    }
    .ft-bnr .container h2:nth-of-type(2) {
        margin-top: 40px;
    }
}


/* header
----------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
    background-color: #ffffff;
    z-index: 999;
}
.header .container {
    max-width: 1300px;
}
.header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.header .content .logo {
    max-width: 280px;
}
.header .content .gnav ul {
    display: flex;
    gap: 20px;
}
.header .content .gnav ul li {
    position: relative;
}
.header .content .gnav ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 3px solid #2eace2;
    opacity: 0;
    transition: all 0.3s ease;
}
.header .content .gnav ul li:hover::after {
    bottom: -5px;
    opacity: 1;
}
.header .content .gnav ul li a {
    color: #464646;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header .content .gnav ul li a:hover {
    color: #2eace2;
}

@media screen and (max-width: 980px) {
    .header .content .gnav ul li {
        padding-left: 10px;
    }
    .header .content .gnav ul li a {
        position: relative;
        font-size: 18px;
        color: #ffffff;
    }
    .header .content .gnav ul li a::after {
        content: "";
        position: absolute;
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        position: absolute;
        top: 50%;
        right: 10px;
        width: 9px;
        height: 9px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }
    .header .content .tel-mail {
        font-family: "Manrope", sans-serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
        margin: 10px 0 5px;
    }
    .header .content .tel-mail span {
        position: relative;
        font-size: 160%;
        margin-right: 20px;
    }
    .header .content .tel-mail span::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
        width: 25px;
        height: 16px;
        margin-top: 4px;
        background: url(../img/freedial.png) no-repeat;
        background-size: cover;
        background-position: center;
    }
    .header .content a {
        color: #ffffff;
    }
}

@media screen and (max-width: 768px) {
    .header .content {
        height: 70px;
    }
    .header .content .logo {
        max-width: 230px;
    }
    .header .content .gnav ul {
        gap: 0;
    }

    .header .content .optr-contact {
        position: relative;
        width: calc(100% - 3rem);
        top: 110px;
        color: #ffffff;
        font-weight: 600;
        text-align: center;
        margin: auto;
    }
}


/* footer
----------------------------------------- */
.footer {
    width: 100%;
    padding: 90px 0;
    background-color: #767676;
}
.footer .content {
    max-width: 830px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}
.footer .content .org {
    font-size: 34px;
    letter-spacing: 0.08rem;
    line-height: 1.5;
    margin-bottom: 15px;
}
.footer .content .optr-contact {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #ffffff;
}
.footer .content .tel-mail {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 5px;
}
.footer .content .tel-mail span {
    position: relative;
    font-size: 160%;
    margin-right: 20px;
}
.footer .content .tel-mail span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -37px;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    margin-top: 4px;
    background: url(../img/freedial.png) no-repeat;
    background-size: cover;
    background-position: center;
}
.footer .content a {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }
    .footer .content .org {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .footer .content .optr-contact {
        margin-top: 30px;
        padding-top: 30px;
    }
    .footer .content .tel-mail {
        font-size: 24px;
        line-height: 1.4;
        margin: 15px 0;
    }
    .footer .content .tel-mail span {
        font-size: 160%;
        margin-right: 0;
    }
}


.unlink {
    pointer-events: none;
}
.unlink a {
    border: 2px solid #9b9b9b;
    background-color: #9b9b9b;
}
.unlink a .arrow {
    background-color: #9b9b9b;
}


/* 「求職者セミナー」アーカイブ - YouTube
----------------------------------------- */
.archive-section {
    margin-top: 90px;
}
.archive-item {
    max-width: 840px;
    margin: 0 auto;
}
.archive-item .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.archive-item .youtube:not(:last-child) {
    margin-bottom: 60px;
}
.archive-item .youtube iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
    .archive-item .youtube:not(:last-child) {
        margin-bottom: 30px;
    }
}