@charset "UTF-8";

/* fade-in anime ----------------------------*/
@media screen and (min-width: 769px) {
    .fadein_top,
    .fadein_bottom {
        -webkit-transition: all .8s .3s ease-out;
        -o-transition: all .8s .3s ease-out;
        transition: all .8s .3s ease-out;
        opacity: 0;
    }
    .fadein_top {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    .fadein_bottom {
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }
    .fadein_top.active,
    .fadein_bottom.active {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    .fadein_left,
    .fadein_right {
        -webkit-transition: all .8s .3s ease-out;
        -o-transition: all .8s .3s ease-out;
        transition: all .8s .3s ease-out;
        opacity: 0;
    }
    .fadein_left {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    .fadein_right {
        -webkit-transform: translateX(30px);
        -moz-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    .fadein_left.active,
    .fadein_right.active {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/* media query : mobile
---------------------------------------------*/
@media screen and (max-width: 768px) {
/* hamburger --------------------------------*/
    .hamburger {
        width: 70px;
        height: 70px;
        top: 0;
        right: 0;
        position: absolute;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #2eace2;
        position: relative;
        transition: ease .3s;
        display: block;
        margin: auto;
    }
    .hamburger.active span {
        background-color: #fff;
    }
    .hamburger span:nth-child(1) {
        top: 23px;
    }
    .hamburger span:nth-child(2) {
        top: 30px;
    }
    .hamburger span:nth-child(3) {
        top: 37px;
    }
    .gnav.active {
        transform: translateX(0);
    }
    .hamburger.active span:nth-child(1) {
        top: 34px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 28px;
        transform: rotate(-45deg);
    }
}

/* media query : desktop
---------------------------------------------*/
@media screen and (min-width: 981px) {
    .hamburger {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 980px) {
/* hamburger --------------------------------*/
    .hamburger {
        width: 80px;
        height: 80px;
        top: 0;
        right: 0;
        position: absolute;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .hamburger span {
        width: 30px;
        height: 4px;
        background-color: #2eace2;
        position: relative;
        transition: ease .3s;
        display: block;
        margin: auto;
    }
    .hamburger.active span {
        background-color: #fff;
    }
    .hamburger span:nth-child(1) {
        top: 26px;
    }
    .hamburger span:nth-child(2) {
        top: 34px;
    }
    .hamburger span:nth-child(3) {
        top: 42px;
    }
    .gnav.active {
        transform: translateX(0);
    }
    .hamburger.active span:nth-child(1) {
        top: 34px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 26px;
        transform: rotate(-45deg);
    }
}

@media screen and (max-width: 980px) {
    .header .gnav {
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: translateX(100%);
        background: #2eace2;
        transition: ease .3s;
        overflow-y: auto;
    }
    .gnav.active {
        transform: translateX(0);
    }
    .header .gnav ul {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        top: 90px;
        padding-top: 2.7rem;
        margin: auto;
        width: calc(100% - 3rem);
    }
    .header .gnav ul li {
        width: 100%;
        margin-bottom: 25px;
        padding-bottom: 25px;
        line-height: 1rem;
        border-bottom: 1px solid #fff;
    }
    .header .gnav ul li a {
        color: #fff;
        width: 100%;
        display: block;
        text-decoration: none;
    }
}

@media screen and (max-width: 768px) {
    .header .gnav ul {
        padding-top: 1.45rem;
    }
    .header .gnav ul li {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
}

/* page top ---------------------------------*/
.page-top a {
    position: fixed;
    z-index: 10;
    width: 80px;
    height: 80px;
    background: #2eace2;
    border-radius: 50%;
    transition-duration: 0.3s;
}
.page-top a:before {
    content: '';
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 3px;
}
@media screen and (max-width: 768px) {
    .page-top a {
        width: 50px;
        height: 50px;
        right: 13px;
        bottom: 13px;
    }
    .page-top a:before {
        content: '';
        width: 9px;
        height: 9px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        margin-top: 2px;
    }
}
@media screen and (min-width: 769px) {
    .page-top a {
        right: 20px;
        bottom: 20px;
    }
}


/* 青森LP 追加スタイル
---------------------------------------------*/
.session-venues {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.venue-line {
    display: flex;
    align-items: center;
    gap: 12px;
}
.venue-tag {
    flex-shrink: 0;
    width: 50px;
    padding: 8px 0;
    background-color: #2eace2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
}
.venue-when {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
}
.venue-online {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #2eace2;
    border: 1px solid #2eace2;
    border-radius: 4px;
    white-space: nowrap;
}
.coming-soon {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #2eace2;
    margin-top: 15px;
}
.coming-soon--large {
    font-size: 28px;
    padding: 40px 0;
}
.consultation.tour .overview-text {
    margin-bottom: 0;
}
.seminar-venue-guide {
    margin-bottom: 30px;
}
.venue-guide-note {
    margin-bottom: 60px;
    line-height: 1.7;
}
.seminar-venue-guide .venue-card {
    background-color: #f8f8f8;
}
/* イントロ注釈 */
.intro .intro-content p + p {
    margin-top: 1.2em;
}
.intro .intro-content .intro-note {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #767676;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .intro .intro-content .intro-note {
        margin-top: 16px;
        font-size: 14px;
    }
}
/* ヘッダーロゴ（テキスト） */
.header .content .logo {
    max-width: none;
}
.header .content .logo-text {
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .header .content .logo-text {
        font-size: 12px;
    }
}

/* ヘッダーナビリンクの色分け */
@media screen and (min-width: 981px) {
    .header .content .gnav ul li .gnav-link--seminar {
        color: #2eace2;
    }
    .header .content .gnav ul li .gnav-link--consultation {
        color: #fc8332;
    }
    .header .content .gnav ul li .gnav-link--tour {
        color: #2a9d8f;
    }
    .header .content .gnav ul li .gnav-link--company {
        color: #ffffff;
        background-color: #4a8f5c;
        padding: 8px 18px;
        border-radius: 999px;
        font-weight: 700;
    }
    .header .content .gnav .gnav-item--seminar::after {
        border-bottom-color: #2eace2;
    }
    .header .content .gnav .gnav-item--consultation::after {
        border-bottom-color: #fc8332;
    }
    .header .content .gnav .gnav-item--tour::after {
        border-bottom-color: #2a9d8f;
    }
    .header .content .gnav .gnav-item--company::after {
        display: none;
    }
    .header .content .gnav ul li .gnav-link--seminar:hover {
        color: #1a8fbf;
    }
    .header .content .gnav ul li .gnav-link--consultation:hover {
        color: #e06c1a;
    }
    .header .content .gnav ul li .gnav-link--tour:hover {
        color: #1f7d72;
    }
    .header .content .gnav ul li .gnav-link--company:hover {
        color: #ffffff;
        background-color: #3d7a4c;
    }
}
@media screen and (max-width: 980px) {
    .header .content .gnav .gnav-link {
        border-left: 4px solid rgba(255, 255, 255, 0.5);
        padding-left: 14px;
        box-sizing: border-box;
    }
    .header .content .gnav .gnav-link--seminar {
        border-left-color: #b8e8f8;
    }
    .header .content .gnav .gnav-link--consultation {
        border-left-color: #ffd4b3;
    }
    .header .content .gnav .gnav-link--tour {
        border-left-color: #b3e8df;
    }
    .header .content .gnav ul li.gnav-item--company {
        padding-left: 10px;
        padding-right: 10px;
    }
    .header .content .gnav ul li .gnav-link--company {
        display: block;
        width: 100%;
        margin: 0;
        padding: 14px 20px;
        border: 2px solid #ffffff;
        border-radius: 8px;
        background-color: #4a8f5c;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        box-sizing: border-box;
    }
    .header .content .gnav ul li .gnav-link--company::after {
        display: none;
    }
}

/* 帯タイトル内の開催時期バッジ（タイトル下に中央配置） */
.section h2 .period-badge {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    padding: 10px 32px;
    font-size: 75%;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.18);
    border: 2px solid #ffffff;
    border-radius: 999px;
}
@media screen and (max-width: 768px) {
    .section h2 .period-badge {
        margin-top: 12px;
        padding: 8px 22px;
        font-size: 18px;
    }
}

/* 企業向け情報：求職者向け（青）と区別するセージグリーン系配色 */
.company-info.section {
    background-color: #e7f2ea;
}
.company-info.section h2 {
    background-color: #4a8f5c;
}
.company-info .content h3 {
    color: #4a8f5c;
    border-bottom-color: #4a8f5c;
}
.company-info .subtitle {
    color: #4a8f5c;
    margin-bottom: 16px;
}
.company-info .company-target {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #6a7a6e;
    margin-bottom: 40px;
}
.company-info .free-badge {
    background-color: #4a8f5c;
}
.company-info .detail-label,
.company-info .venue-header,
.company-info .info-row .info-label {
    background-color: #4a8f5c;
}
.company-info .job-fair-subtitle,
.company-info .coming-soon {
    color: #4a8f5c;
}
.company-info .venue-info .info-item {
    color: #4a8f5c;
    border-color: #4a8f5c;
}
.company-info .seminar-section,
.company-info .job-fair-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 36px;
    border-top: 5px solid #4a8f5c;
    box-shadow: 0 1px 0 rgba(74, 143, 92, 0.12);
}
.company-info .venue-card {
    background-color: #f1f8f3;
}
.company-info .application-button a,
.company-info .company-button a {
    border-color: #4a8f5c;
    background-color: #4a8f5c;
}
.company-info .application-button a:hover,
.company-info .company-button a:hover {
    color: #4a8f5c;
    border-color: #4a8f5c;
    background-color: #ffffff;
}
.company-info .application-button a:hover .arrow-icon,
.company-info .company-button a:hover .arrow-icon {
    background-color: #4a8f5c;
}
.company-info .application-button a:hover .arrow-icon .arrow,
.company-info .company-button a:hover .arrow-icon .arrow {
    background-color: #ffffff;
}
.company-info .arrow {
    background-color: #4a8f5c;
}
@media screen and (max-width: 768px) {
    .company-info .company-target {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .company-info .seminar-section,
    .company-info .job-fair-section {
        padding: 24px 16px;
    }
}

/* 会場カード：見出しと内容を縦並び（相談会・合同企業説明会） */
#consultation .info-row,
#company-info .venue-card .info-row {
    flex-direction: column;
    gap: 10px;
}
#consultation .info-row .info-label,
#company-info .venue-card .info-row .info-label {
    width: 100%;
    padding: 10px 0;
}
#consultation .info-row .info-content,
#company-info .venue-card .info-row .info-content {
    width: 100%;
}

/* 相談会会場カード：日時・場所の高さを揃えてタイトル帯とMAPの位置をそろえる */
#consultation .consultation-venues {
    align-items: stretch;
}
#consultation .consultation-venues .venue-card {
    display: flex;
    flex-direction: column;
}
#consultation .consultation-venues .venue-content,
#consultation .consultation-venues .venue-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
#consultation .consultation-venues .info-row:nth-child(1) .info-content {
    min-height: 3.6em;
}
#consultation .consultation-venues .info-row:nth-child(2) .info-content {
    min-height: 5.4em;
}
#consultation .consultation-venues .info-row .info-content p {
    line-height: 1.5;
}

.venue-map {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    line-height: 0;
}
.venue-map iframe {
    display: block;
    width: 100%;
}
.venue-info .venue-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* 2行テキストの申込ボタン */
.application-button a span {
    text-align: center;
    line-height: 1.3;
}
.notice-band {
    margin-top: 40px;
    padding: 18px 24px;
    background-color: #2eace2;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    border-radius: 5px;
}
@media screen and (max-width: 768px) {
    .notice-band {
        margin-top: 30px;
        padding: 14px 16px;
        font-size: 18px;
    }
}

/* 渡辺氏：2・3回目をまたぐ共有レイアウト＋1回目との高さ揃え */
.seminar-sessions {
    align-items: stretch;
}
.seminar-sessions > .session-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.seminar-sessions > .session-card .session-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.seminar-sessions > .session-card .session-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.seminar-sessions > .session-card .instructor-section {
    margin-top: auto;
}
.session-pair {
    flex: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.session-pair-cards {
    display: flex;
    gap: 40px;
    flex: 1;
    align-items: stretch;
}
.session-pair-cards .session-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
.session-pair-cards .session-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.session-pair-cards .session-details {
    flex: 1;
}
.session-pair .instructor-shared {
    margin-top: 20px;
    padding: 25px;
    background-color: #F8F8F8;
    border-radius: 5px;
    border-top: 4px solid #2eace2;
}
.session-pair .instructor-shared .instructor-label {
    margin-bottom: 20px;
}
/* 1回目と同じ縦並び中央寄せにして高さを揃える */
.session-pair .instructor-shared .instructor-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.session-pair .instructor-shared .instructor-profile img {
    width: 180px;
    height: 220px;
}
.session-pair .instructor-shared .instructor-details {
    width: 100%;
    max-width: 640px;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .seminar-sessions > .session-card,
    .session-pair,
    .session-pair-cards {
        flex-direction: column;
    }
    .session-pair-cards {
        gap: 40px;
    }
    .session-pair .instructor-shared {
        margin-top: 0;
        padding: 20px;
    }
}

/* 講習会カード：日程欄・説明文ブロックの高さを揃えて講師バッジを横並びに */
.seminar .venue-line {
    min-height: 56px;
}
.seminar .session-info {
    min-height: 220px;
}
@media screen and (max-width: 768px) {
    .seminar .venue-line {
        min-height: 0;
    }
    .seminar .session-info {
        min-height: 0;
    }
    .seminar .instructor-section .instructor-profile img {
        width: 180px;
        height: 220px;
    }
}

/* 講師プロフィール：写真→紹介文の縦並び */
.seminar .instructor-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.seminar .instructor-profile img {
    width: 180px;
    height: 220px;
}
.seminar .instructor-details {
    width: 100%;
    align-items: center;
}

/* FAQ：Q/Aラベル */
.question,
.answer {
    display: flex;
    align-items: center;
    gap: 20px;
}
.question::before,
.answer::before {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.question::before {
    content: "Q";
    background-color: #2eace2;
    color: #ffffff;
}
.answer::before {
    content: "A";
    background-color: #fc8332;
    color: #ffffff;
}
@media screen and (max-width: 768px) {
    .question,
    .answer {
        gap: 15px;
    }
    .question::before,
    .answer::before {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* 合同企業説明会 小見出し */
.job-fair-subtitle {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #2eace2;
    margin-bottom: 20px;
}
.job-fair-note {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
    .job-fair-subtitle {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .job-fair-note {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* アーカイブ動画（アタリ） */
.archive-content {
    margin-top: 60px;
}
.archive-video {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #e8e8e8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.archive-video span {
    font-size: 20px;
    font-weight: 700;
    color: #999;
}
@media screen and (max-width: 768px) {
    .archive-content {
        margin-top: 40px;
    }
    .archive-video {
        max-width: 100%;
    }
}
/* breadcrumbs ------------------------------*/
.breadcrumbs {
    width: 100%;
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 0;
    box-sizing: border-box;
    border-top: solid 1px #d9d9d9;
}
.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
}
.breadcrumbs ul li {
    margin-right: 5px;
}
.breadcrumbs a {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .breadcrumbs {
        padding: 1rem 1.3rem;
    }
}
@media screen and (min-width: 769px) {
    .breadcrumbs {
        padding: 1.2rem 1.8rem;
    }
}