body, html {
    overflow-x: hidden;
}

body, html, p, li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000000;
}

/* セクションフェードインアニメーション（トップページ初回表示時のみ） */
body.home.first-visit section,
body.home.first-visit .recruit_card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.home.first-visit section.section-visible,
body.home.first-visit .recruit_card.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* interviewページ用アニメーション（初回表示時のみ） */
body.first-visit .interview-grid-card,
body.first-visit .recruit_card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.first-visit .interview-grid-card.card-visible,
body.first-visit .recruit_card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* interview詳細ページ用アニメーション（初回表示時のみ） */
body.first-visit .interview-section-main,
body.first-visit .interview-header-content,
body.first-visit .recruit_card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.first-visit .interview-section-main.section-visible,
body.first-visit .interview-header-content.section-visible,
body.first-visit .recruit_card.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* トップページ以外の背景画像（スクロール500px以上で表示） */
body:not(.home) {
    --bg-opacity: 0;
    --bg-bottom: -1000px;
}

body:not(.home) {
    --bg-opacity: 0;
    --bg-bottom: -1000px;
}

body:not(.home)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/body_bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom var(--bg-bottom);
    opacity: var(--bg-opacity);
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.video-control-stop-icon {
    width: 5px;
    height: 9px;
}

html {
    scroll-padding-top: 100px;
}

.container.top {
    position: relative;
    background-color: #fff;
    z-index: 1000;
    width: 100%;
    border-bottom: none !important;
    max-width: 100%;
    padding: 20px 30px;
    margin: 15px 0 0;
}

.header_logo {
    width: 100%;
    max-width: 415px;
    aspect-ratio: 760 / 100;
}

.hamburger-menu .header_logo {
    max-width: 295px;
    aspect-ratio: 760 / 100;
    box-sizing: border-box;
}

.tobira {
    background-image: none;
    padding-top: 0;
}

/* ハンバーガーメニュー独自実装 */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1100;
}

.btn-entry {
    white-space: nowrap;
}

.hamburger-toggle {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 45px;
    background: url('../img/hamburger_icon.png') no-repeat center center;
    background-size: contain;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1150;
}

/* メニュー展開時は開くボタンを閉じるボタンに変更 */
.hamburger-toggle.active {
    background-image: url('../img/hamburger_icon_close.png');
    z-index: 1300;
}

/* SP用アイコン切り替え */
@media screen and (max-width: 767px) {
    .hamburger-toggle {
        background-image: url('../img/hamburger_icon_sp.png');
        width: 86px !important;
        height: 64px !important;
    }
    .hamburger-toggle.active {
        background-image: url('../img/hamburger_icon_close_sp.png');
    }
}

.hamburger-icon {
    display: none;
}

/* 画面幅1280px以下992px以上の場合 */
@media (max-width: 1280px) and (min-width: 992px) {
    .container.top {
        padding-left: 20px;
        max-width: 100vw;
    }
}

/* 画面幅768px以上の場合は開閉ボタンとヘッダーアクションを表示 */
@media (min-width: 768px) {
    .hamburger-toggle {
        display: block;
    }
    .header-actions {
        display: flex;
    }
}

/* メニュー展開時のオーバーレイ */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    position: fixed;
    width: 690px;
    aspect-ratio: 690 / 780;
    background: #EFEFEF;
    border-radius: 10px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-height: calc(100vh - 40px);
    overflow: hidden;
}

.hamburger-menu.show {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu.hiding {
    opacity: 0;
}

.hamburger-menu-header {
    padding: 150px 50px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu-body {
    padding: 30px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
    max-height: calc(100% - 130px);
    position: relative;
}

.hamburger-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background-image: url('../img/menu_bg1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    pointer-events: none;
    z-index: 0;
}

.hamburger-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 800px;
    height: 800px;
    background-image: url('../img/menu_bg2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    pointer-events: none;
    z-index: 0;
}

.hamburger-menu-header,
.hamburger-menu-body {
    position: relative;
    z-index: 1;
}

.hamburger-close {
    display: none;
}

.hamburger-nav {
    display: flex;
    gap: 30px;
    padding: 0;
    margin-bottom: 40px;
}

.hamburger-nav-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hamburger-nav-column > * {
    margin-bottom: 35px;
}

.hamburger-nav-column > *:last-child {
    margin-bottom: 0;
}

.offcanvas-nav-section {
    border-bottom: none;
}

.hamburger-nav-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.hamburger-nav-section:not(:last-child) {
    margin-bottom: 40px;
}

.hamburger-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 35px 0;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #000;
    transition: opacity 0.3s ease;
}

.hamburger-nav-link::after {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url('../img/arrow_right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hamburger-nav-link:hover::after {
    background-image: url('../img/arrow_right_hover.png');
    transition: all 0.3s ease;
}

.hamburger-nav-link:hover {
    opacity: 0.7;
}

.hamburger-nav-section .hamburger-nav-link {
    border-bottom: 1px solid #000;
}

.hamburger-nav-sub {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-top: 12px;
    margin-bottom: 5px;
    border-bottom: none;
}

.hamburger-nav-sublink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 8px 30px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: color 0.3s ease;
}

.hamburger-nav-sublink::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url('../img/btn_arrow_hover.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.hamburger-nav-sublink:hover::after {
    background-image: url('../img/btn_arrow_hover.png');
    transition: all 0.3s ease;
}

.hamburger-nav-sublink:hover {
    color: #666;
}

.hamburger-footer {
    padding: 0;
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.hamburger-official-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    border: none;
}

.hamburger-official-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../img/icon_external.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.hamburger-official-link:hover .hamburger-official-icon {
    background-image: url('../img/icon_external_hover.png');
}

.hamburger-sns {
    display: flex;
    gap: 15px;
}

.hamburger-sns-icon img {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
}

.hamburger-sns-icon:hover img {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .header-actions {
        display: none;
    }
    
    .hamburger-toggle {
        display: block;
        width: 86px;
        height: 40px;
        top: unset !important;
        bottom: 30px;
        top: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .hamburger-menu {
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        aspect-ratio: auto;
        max-height: calc(100vh - 20px);
        right: 10px !important;
        left: 10px !important;
        top: 10px !important;
        bottom: 10px !important;
    }
    
    .hamburger-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .hamburger-nav-column {
        width: 100%;
    }
    
    .hamburger-menu-header {
        padding: 30px 30px 50px;
        justify-content: center;
    }

    .hamburger-menu-header .header_logo {
        max-width: unset;
    }
    
    .hamburger-menu-body {
        padding: 0 30px 30px;
        gap: 0;
    }

    .hamburger-nav {
        margin-bottom: 10px;
    }
    
    .hamburger-footer {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .hamburger-nav-link {
        padding: 0 0 16px 0;
    }

    .hamburger-nav-column > * {
        margin-bottom: 16px;
    }

    .hamburger-nav-section:not(:last-child) {
        margin-bottom: 10px;
    }

    .sub_copy {
        margin-bottom: 50px;
    }

    /* メインビジュアル スマホ版 */
    .main_visual {
        height: 100vh;
        min-height: 600px;
    }

    .main_visual_scroll_back {
        bottom: 63vh !important;
    }

    .main_visual_controls .video-control.main-visual-control {
        right: 15px !important;
    }

    .main_visual_controls .video-control.main-visual-control {
        bottom: 73vh !important;
    }

    .main_visual_catch {
        font-size: 36px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .main_visual_content {
        top: 370px;
        bottom: unset;
        left: 0;
        transform: unset;
        text-align: center;
        width: 100%;
    }

    .btn-main-visual {
        width: 100%;
        max-width: 300px;
    }

    .main_visual .container .scroll-link {
        display: none;
    }

    .container.video-control.main-visual-control {
        bottom: 100px;
        right: 15px;
    }

    .container.video-control.main-visual-control .video-control-btn {
        width: 32px;
        height: 32px;
        padding: 0;
    }

    .container.video-control.main-visual-control .video-control-text {
        display: none;
    }

    .container.video-control.main-visual-control .video-control-btn {
        gap: 0;
    }

    .container.video-control.main-visual-control .video-control-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .container.video-control.main-visual-control .video-control-icon img {
        position: absolute;
        top: calc(50% + 0px);
        left: 50%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 400px) and (max-height: 700px) {
    .main_visual_content {
        top: 190px;
    }
}

/* 募集要項・エントリーボタン */
.btn-entry {
    display: inline-block;
    width: 250px;
    height: 45px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    line-height: 12px;
    text-align: center;
    position: relative;
    margin-right: 120px;
    padding: 15px 30px 15px 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    vertical-align: middle;
}

.btn-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    z-index: 1;
}

.btn-entry::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url('../img/btn_arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
    z-index: 2;
}

.btn-entry:hover {
    background-color: #FFEB01;
    color: #222222;
    border: 1px solid #222222;
}

.btn-entry:hover::after {
    background-image: url('../img/btn_arrow_hover.png');
}

.footer.copyright {
    background-color: #E6E6E6;
}

.footer.copyright p {
    color: #000000;
}

/* メインビジュアル */
.main_visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 520;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main_visual_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main_visual_bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main_visual_bg_layer1 {
    z-index: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0s forwards;
}

.main_visual_bg_layer2 {
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.main_visual_bg_scroll {
    display: flex;
    width: fit-content;
    height: 20%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.main_visual_bg_layer1 .main_visual_bg_scroll {
    animation: scrollLeft 100s linear infinite;
}

.main_visual_bg_layer2 .main_visual_bg_scroll {
    animation: scrollLeft 100s linear infinite;
}

.main_visual_bg_layer1 .main_visual_bg_scroll img {
    height: 400%;
    width: auto;
    display: block;
}

.main_visual_bg_layer2 .main_visual_bg_scroll img {
    height: 200%;
    width: auto;
    display: block;
    transform: scaleX(-1);
}

/* 背景スクロール一時停止 */
.main_visual.paused .main_visual_bg_scroll {
    animation-play-state: paused !important;
}

/* キャッチコピーエリア */
.main_visual_top_area {
    position: relative;
    z-index: 4;
    flex: 0 0 auto;
    padding-top: 40px;
    padding-bottom: 20px;
}

.container.main_visual_container {
    position: relative;
}

.main_visual_content {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.4s forwards;
}

.main_visual_catch {
    font-size: 67px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 20px;
}

.btn-main-visual {
    display: inline-block;
}

/* スクロール画像エリア */
.main_visual_scroll_area {
    position: relative;
    flex: 1;
    overflow: hidden;
    margin-bottom: 160px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

.main_visual_scroll_back,
.main_visual_scroll_front {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.main_visual_scroll_back {
    z-index: 2;
    bottom: 0;
    height: 171px;
    display: flex;
    align-items: flex-end;
}

.main_visual_scroll_front {
    z-index: 3;
    top: 0;
    height: 332px;
    display: flex;
    align-items: center;
}

.main_visual_scroll_back .scroll_images,
.main_visual_scroll_front .scroll_images {
    display: flex;
    width: fit-content;
    height: 100%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* 背面スクロール（遅い） */
.main_visual_scroll_back .scroll_images {
    animation: scrollLeft 70s linear infinite;
}

/* 前面スクロール（早い） */
.main_visual_scroll_front .scroll_images {
    animation: scrollLeft 40s linear infinite;
}

/* スクロール一時停止 */
.main_visual.paused .scroll_images {
    animation-play-state: paused !important;
}

.main_visual_scroll_back img {
    height: 171px;
    width: auto;
    display: block;
    margin-right: 40px;
}

.main_visual_scroll_front img {
    height: 332px;
    width: auto;
    display: block;
    margin-right: 50px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* SCROLLリンクとコントロールボタン */
.container.main_visual_controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    height: 0;
}

.main_visual .container.main_visual_controls .scroll-link {
    position: absolute;
    width: 24px;
    height: 250px;
    bottom: 1px;
    left: 0;
    writing-mode: vertical-rl;
    font-size: 12px;
    color: #213D4A;
    padding-left: 10px;
    text-decoration: none;
    display: block;
}

.main_visual .container.main_visual_controls .scroll-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3AE5F4 0%, #FFA7F8 25%, #3AE5F4 50%, #FFA7F8 75%, #3AE5F4 100%);
    background-size: 5px 200%;
    background-repeat: no-repeat;
    background-position: left 0%;
    border-radius: 5px;
    animation: gradientShift 2s linear infinite;
}

/* メインビジュアルの動画コントロールボタン */
.main_visual_controls .video-control.main-visual-control {
    position: absolute;
    bottom: 140px;
    right: 0;
    width: auto;
    max-width: none;
}

.main_visual_controls .video-control.main-visual-control .video-control-btn {
    position: static;
}

/* 画面幅1000px以上、高さ900px以下の場合のコントロール位置調整 */
@media (min-width: 1000px) and (max-height: 800px) {
    .container.main_visual_controls {
        position: fixed;
        bottom: 0;
        top: auto;
    }
    
    .main_visual .container.main_visual_controls .scroll-link {
        height: 125px;
    }
    
    .main_visual_scroll_back {
        position: fixed;
        bottom: 30px;
    }
    
    .main_visual_controls .video-control.main-visual-control {
        bottom: 15px;
    }
}

/* PCで高さが低い場合のハンバーガーメニュー対応 */
@media (min-width: 1000px) and (max-height: 700px) {
    .hamburger-menu {
        aspect-ratio: auto;
        height: calc(100vh - 40px);
    }
    
    .hamburger-menu-header {
        padding: 30px 50px 20px;
    }
    
    .hamburger-menu-body {
        max-height: calc(100% - 100px);
        overflow-y: auto;
    }
}

/* メインビジュアル レスポンシブ (1500px以下) */
@media (max-width: 1500px) {
    .main_visual_catch {
        font-size: 50px;
    }
    
    .main_visual_scroll_area {
        margin-bottom: 135px;
    }
    
    .main_visual_scroll_front {
        height: 280px;
        top: 0;
    }
    
    .main_visual_scroll_front img {
        height: 280px;
    }
    
    .main_visual_scroll_back {
        height: 145px;
    }
    
    .main_visual_scroll_back img {
        height: 145px;
    }
}

/* メインビジュアル レスポンシブ (1200px以下) */
@media (max-width: 1200px) {
    .main_visual_catch {
        font-size: 42px;
    }
    
    .main_visual_scroll_area {
        margin-bottom: 115px;
    }
    
    .main_visual_scroll_front {
        height: 240px;
        top: 0;
    }
    
    .main_visual_scroll_front img {
        height: 240px;
    }
    
    .main_visual_scroll_back {
        height: 125px;
    }
    
    .main_visual_scroll_back img {
        height: 125px;
    }
}

/* メインビジュアル レスポンシブ (992px以下) */
@media (max-width: 992px) {
    .main_visual_catch {
        font-size: 36px;
    }
    
    .main_visual_scroll_area {
        margin-bottom: 95px;
    }
    
    .main_visual_scroll_front {
        height: 200px;
        top: 0;
    }
    
    .main_visual_scroll_front img {
        height: 200px;
    }
    
    .main_visual_scroll_back {
        height: 105px;
    }
    
    .main_visual_scroll_back img {
        height: 105px;
    }

    .header-actions {
        top: 14px;
        right: 15px;
    }
}

/* メインビジュアル レスポンシブ (768px以下) */
@media (max-width: 768px) {
    /* スマホ版では背景画像を上から400pxの位置に */
    body:not(.home)::before {
        background-position: right 0 top 400px;
        background-image: url('../img/interview-header-bg_sp.png');
    }
    
    .main_visual {
        aspect-ratio: 768 / 500;
    }
    
    .main_visual_top_area {
        padding-top: 20px;
        padding-bottom: 15px;
        height: 0;
    }
    
    .main_visual_catch {
        font-size: 45px;
        margin-bottom: 50px;
    }
    
    .btn-main-visual {
        width: 100%;
        max-width: unset;
    }

    .main_visual_catch {
        text-align: left;
    }
    
    .main_visual_scroll_area {
        margin-bottom: 50px;
    }
    
    .main_visual_scroll_front {
        height: 100%;
        top: 0;
    }
    
    .main_visual_scroll_front img {
        height: 223px;
    }
    
    .main_visual_scroll_back {
        height: 85px;
    }
    
    .main_visual_scroll_back img {
        height: 85px;
    }
}

/* メインビジュアル レスポンシブ (576px以下) */
@media (max-width: 576px) {
    .main_visual_catch {
        font-size: 45px;
    }
    
    .main_visual_scroll_area {
        margin-bottom: 55px;
    }
    
    .main_visual_scroll_front {
        height: 100%;
        top: 0;
    }
    
    .main_visual_scroll_front img {
        height: 223px;
    }
    
    .main_visual_scroll_back {
        height: 100px;
    }
    
    .main_visual_scroll_back img {
        height: 100px;
    }
}

.sub_copy {
    aspect-ratio: 1280 / 780;
}

@media (min-width: 768px) {
    .sub_copy .row .col-md-6:first-child {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .sub_copy .row .col-md-6:last-child {
        flex: 0 0 65%;
        max-width: 65%;
    }
}

.sub_copy_title {
    font-size: 36px;
    font-weight: 600;
    line-height: 56px;
}

.sub_copy_title span {
    display: inline-block;
    border: 1px solid #000000;
    background-color: #fff;
    padding: 0 10px;
    margin-bottom: 15px;
    box-shadow: 6px 6px 0 #000000;
}

.sub_copy_text {
    line-height: 2;
    margin-bottom: 20px;
}

.sub_copy_text br {
    display: block;
    content: "";
    margin-bottom: 0;
}

.sub_copy_text p {
    display: inline;
    /* background-color: #fff; */
    /* box-shadow: 5px 0 0 #fff, -5px 0 0 #fff; */
    /* box-decoration-break: clone; */
    /* -webkit-box-decoration-break: clone; */
}

.sub_copy_text {
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
}

.contents {
    padding: 35px 0 0;
    background-image: url(../img/sub_copy_bg_org.jpg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 1200px) and (min-width: 768px) {
    section.sub_copy {
        margin-bottom: 60px;
    }
}

section.sub_copy .sub_copy_bg1_img {
    padding-right: 15px;
}

.sp_only_768 {
    display: none;
}

.contents.interview-page {
    background-image: none;
}

/* 下層ページ共通の背景画像 */
.contents[class*="-page"] {
    background-image: url(../img/page-header-bg.png);
    background-repeat: no-repeat;
    background-size: 73% auto;
    background-position: right top;
    padding-top: 180px;
    margin-top: -150px;
}

.interview {
    padding: 80px 0;
    background-color: #E6E6E6;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    border: 1px solid #000000;
}

.more_info {
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    background-color: #fff;
    background-image: url('../img/more_info_bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 50px center;
}

.more_info > .container:first-child {
    position: relative;
}

.more_info > .container:first-child::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    right: -50px;
    bottom: -100px;
    border: 1px solid #000000;
    background: linear-gradient(to bottom, #fff 100px, transparent 100px);
    border-radius: 30px;
    pointer-events: none;
}

/* More info カード */
.more_info_cols {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.more_info_card {
    flex: 1;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #000000;
}

.more_info_card_left {
    box-shadow: 10px 10px 0 #2CEF9D;
    background-color: #C6F4E0;
}

.more_info_card_left .more_info_card_inner {
    background-color: #C6F4E0;
}

.more_info_card_right {
    box-shadow: 10px 10px 0 #FFA7F8;
    background-color: #F7E2F5;
}

.more_info_card_right .more_info_card_inner {
    background-color: #F7E2F5;
}

@media (min-width: 768px) {
    .more_info_card_right {
        margin-top: -80px;
        margin-bottom: 80px;
    }
}

.more_info_card_inner {
    padding: 0 38px 40px;
    background-color: #fff;
    position: relative;
}

.more_info_btn {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.more_info_btn::after {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-image: url('../img/arrow_right_black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.more_info_btn:hover::after {
    background-image: url('../img/arrow_right_black_hover.png');
}

.more_info_img {
    width: calc(100% + 80px);
    margin: 0 -40px 10px;
    border-radius: 0;
    overflow: hidden;
}

.more_info_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.more_info_card:hover .more_info_img img {
    transform: scale(1.05);
}

.more_info_title {
    font-size: min(calc((50vw - 65px) / 4.5), 105px);
    font-family: "Afacad", sans-serif;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    margin-top: calc(min(calc((50vw - 65px) / 4.5), 105px) * -0.7);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.more_info_subtitle {
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #000;
    padding: 2px 12px;
    margin: 10px 0 40px;
    background-color: #fff;
    box-shadow: 6px 6px 0 #000000;
    position: relative;
    z-index: 1;
}

.more_info_text {
    font-size: 18px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}

/* Recruit セクション */
.recruit_wrapper {
    margin-top: 20px;
    padding: 140px 0 170px;
    position: relative;
    overflow: hidden;
    /* background-image: url('../img/page_footer_bg.png'); */
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.interview-top .recruit_wrapper {
    margin-top: 20px;
    padding: 40px 0 170px;
}

.about-top .recruit_wrapper,
.recruit-top .recruit_wrapper {
    margin-top: -20px;
    padding: 0 0 170px;
}

@media (max-width: 768px) {
    .interview-top .recruit_wrapper {
        margin-top: 20px;
        padding: 40px 0 90px;
    }
    .interview-2nd .recruit_wrapper {
        margin-top: 20px;
        padding: 40px 0 90px;
    }
    .crosstalk-top .recruit_wrapper {
        margin-top: 20px;
        padding: 40px 0 90px;
    }
    .about-top .recruit_wrapper {
        margin-top: 20px;
        padding: 40px 0 90px;
    }
    .recruit-top .recruit_wrapper {
        margin-top: 20px;
        padding: 40px 0 90px;
    }
    .sp_left {
        text-align: left !important;
    }
}

/* トップページでは背景画像を非表示 */
body.home .recruit_wrapper {
    background-image: none;
}

@keyframes recruitBgColor {
    0%, 15% {
        background: linear-gradient(to right, #FFEB01, #FF8989);
    }
    16% {
        background: linear-gradient(to right, #FAEC05, #FB8B8B);
    }
    17% {
        background: linear-gradient(to right, #F5ED0A, #F78D8D);
    }
    18% {
        background: linear-gradient(to right, #F2EE0C, #FA8C8D);
    }
    19% {
        background: linear-gradient(to right, #F3ED10, #F88E8E);
    }
    20% {
        background: linear-gradient(to right, #F3ED14, #F78F8F);
    }
    21% {
        background: linear-gradient(to right, #F3ED16, #F69090);
    }
    22% {
        background: linear-gradient(to right, #F3ED18, #F69091);
    }
    23% {
        background: linear-gradient(to right, #EEED20, #F29496);
    }
    24% {
        background: linear-gradient(to right, #E9EE28, #EE989A);
    }
    25% {
        background: linear-gradient(to right, #E3EE2D, #E3A099);
    }
    26% {
        background: linear-gradient(to right, #DEEE33, #DCA79E);
    }
    27% {
        background: linear-gradient(to right, #D9EE38, #D6ADA0);
    }
    28% {
        background: linear-gradient(to right, #D6EE3D, #D2B1A1);
    }
    29% {
        background: linear-gradient(to right, #D3EE43, #CDB9A2);
    }
    30% {
        background: linear-gradient(to right, #CEEE4A, #C7BFA7);
    }
    31% {
        background: linear-gradient(to right, #C9EE51, #C1C5AC);
    }
    32% {
        background: linear-gradient(to right, #BBEE58, #B7C6AC);
    }
    33% {
        background: linear-gradient(to right, #B9EE5D, #B0CBB0);
    }
    34% {
        background: linear-gradient(to right, #B1EE63, #AACFB3);
    }
    35% {
        background: linear-gradient(to right, #AAEE69, #A5D1B5);
    }
    36% {
        background: linear-gradient(to right, #A3EF6D, #9FD3B7);
    }
    37% {
        background: linear-gradient(to right, #9AEF72, #98D7BC);
    }
    38% {
        background: linear-gradient(to right, #91EF77, #91DABF);
    }
    39% {
        background: linear-gradient(to right, #86EF7B, #8ACAC3);
    }
    40% {
        background: linear-gradient(to right, #7FEF80, #84DFC7);
    }
    41% {
        background: linear-gradient(to right, #77EF85, #7EE2CA);
    }
    42% {
        background: linear-gradient(to right, #70EF88, #78E3CE);
    }
    43% {
        background: linear-gradient(to right, #6AEF8A, #75E0D0);
    }
    44% {
        background: linear-gradient(to right, #5FEF8D, #6BE2D6);
    }
    45% {
        background: linear-gradient(to right, #55EF90, #62E3DB);
    }
    46% {
        background: linear-gradient(to right, #4AEF93, #58E3E2);
    }
    47% {
        background: linear-gradient(to right, #41EF96, #4FE4E8);
    }
    48% {
        background: linear-gradient(to right, #38EF99, #47E4ED);
    }
    49% {
        background: linear-gradient(to right, #30EF9B, #40E5F1);
    }
    50%, 65% {
        background: linear-gradient(to right, #2CEF9D, #3AE5F4);
    }
    66% {
        background: linear-gradient(to right, #38EF99, #47E4ED);
    }
    67% {
        background: linear-gradient(to right, #41EF96, #4FE4E8);
    }
    68% {
        background: linear-gradient(to right, #4AEF93, #58E3E2);
    }
    69% {
        background: linear-gradient(to right, #55EF90, #62E3DB);
    }
    70% {
        background: linear-gradient(to right, #5FEF8D, #6BE2D6);
    }
    71% {
        background: linear-gradient(to right, #6AEF8A, #75E0D0);
    }
    72% {
        background: linear-gradient(to right, #6AEF8A, #75E0D0);
    }
    73% {
        background: linear-gradient(to right, #77EF85, #7EE2CA);
    }
    74% {
        background: linear-gradient(to right, #7FEF80, #84DFC7);
    }
    75% {
        background: linear-gradient(to right, #86EF7B, #8ACAC3);
    }
    76% {
        background: linear-gradient(to right, #91EF77, #91DABF);
    }
    77% {
        background: linear-gradient(to right, #9AEF72, #98D7BC);
    }
    78% {
        background: linear-gradient(to right, #A3EF6D, #9FD3B7);
    }
    79% {
        background: linear-gradient(to right, #A3EF6D, #9FD3B7);
    }
    80% {
        background: linear-gradient(to right, #AAEE69, #A5D1B5);
    }
    81% {
        background: linear-gradient(to right, #B1EE63, #AACFB3);
    }
    82% {
        background: linear-gradient(to right, #BBEE58, #B7C6AC);
    }
    83% {
        background: linear-gradient(to right, #C9EE51, #C1C5AC);
    }
    84% {
        background: linear-gradient(to right, #CEEE4A, #C7BFA7);
    }
    85% {
        background: linear-gradient(to right, #D3EE43, #CDB9A2);
    }
    86% {
        background: linear-gradient(to right, #D3EE43, #CDB9A2);
    }
    87% {
        background: linear-gradient(to right, #D9EE38, #D6ADA0);
    }
    88% {
        background: linear-gradient(to right, #DEEE33, #DCA79E);
    }
    89% {
        background: linear-gradient(to right, #E3EE2D, #E3A099);
    }
    90% {
        background: linear-gradient(to right, #E9EE28, #EE989A);
    }
    91% {
        background: linear-gradient(to right, #EEED20, #F29496);
    }
    92% {
        background: linear-gradient(to right, #F3ED18, #F69091);
    }
    93% {
        background: linear-gradient(to right, #F3ED18, #F69091);
    }
    94% {
        background: linear-gradient(to right, #F3ED14, #F78F8F);
    }
    95% {
        background: linear-gradient(to right, #F3ED10, #F88E8E);
    }
    96% {
        background: linear-gradient(to right, #F2EE0C, #FA8C8D);
    }
    97% {
        background: linear-gradient(to right, #F5ED0A, #F78D8D);
    }
    98% {
        background: linear-gradient(to right, #FAEC05, #FB8B8B);
    }
    99% {
        background: linear-gradient(to right, #FFEB01, #FF8989);
    }
    100% {
        background: linear-gradient(to right, #FFEB01, #FF8989);
    }
}

.recruit_card {
    background: linear-gradient(to right, #FFEB01, #FF8989);
    border: 1px solid #000;
    border-radius: 30px;
    padding: 60px 80px 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    animation: recruitBgColor 15s linear infinite;
}

.recruit_card_left {
    display: flex;
    flex-direction: column;
}

.recruit_title {
    font-size: 120px;
    font-family: "Afacad", sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #000;
    margin: 0;
    line-height: 1;
}

.recruit_text {
    font-size: 22px;
    color: #000;
    margin: 15px 0 0;
}

.recruit_btn {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    text-decoration: none;
    z-index: 10;
    font-size: 0;
    color: transparent;
}

.recruit_btn::before {
    content: attr(href);
    content: '募集要項・エントリー';
    display: inline-block;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 60px;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;
    text-align: left;
    padding-left: 30px;
    padding-right: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.recruit_btn::after {
    content: '';
    position: absolute;
    right: calc(80px + 30px);
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url('../img/btn_arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
    z-index: 11;
}

.recruit_btn:hover::before {
    background-color: #FFEB01;
    color: #222222;
    border: 1px solid #222222;
}

.recruit_btn:hover::after {
    background-image: url('../img/btn_arrow_hover.png');
}

.recruit_marquee {
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    z-index: 1;
    bottom: 90px;
}

.recruit_marquee_inner {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.recruit_marquee_inner span {
    font-size: 200px;
    font-family: "Afacad", sans-serif;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    color: rgba(0, 0, 0, .2);
    padding-right: 100px;
    white-space: nowrap;
}

.recruit_wrapper {
    background-color: transparent;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .recruit_card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 40px;
    }

    .recruit_title {
        font-size: 70px;
    }

    .recruit_btn {
        align-self: flex-end;
    }
}

@media (max-width: 767.98px) {
    .recruit_wrapper {
        margin-top: 30px;
        margin-bottom: 36px;
        padding: 150px 0 90px;
        background-image: url(../img/page_footer_bg_sp.png);
        background-position: center bottom 311px;
    }

    .sp_only_768 {
        display: block;
    }

    body.home .recruit_wrapper {
        margin-bottom: 0;
    }

    .recruit_card {
        padding: 30px 20px 40px;
        border-radius: 20px;
    }

    .recruit_title {
        font-size: 75px;
    }

    .recruit_text {
        font-size: 20px;
    }
    
    .recruit_btn {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        margin-top: 30px;
    }
    
    .recruit_btn::before {
        position: relative;
        transform: none;
        display: block;
        width: 100%;
        margin: 0;
        right: auto;
        top: auto;
    }
    
    .recruit_btn::after {
        position: absolute;
        right: 30px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .recruit_btn:hover::after {
        position: absolute;
        right: 30px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    .recruit_marquee {
        bottom: 34px;
    }

    .recruit_marquee_inner span {
        font-size: 120px;
        padding-right: 50px;
    }

    .recruit_btn {
        align-self: center;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .more_info {
        background-position: top 1100px center;
    }

    .more_info_cols {
        flex-direction: column;
        gap: 50px;
    }

    .more_info_title {
        font-size: 75px;
        margin-top: -60px;
    }

    .more_info_subtitle {
        font-size: 18px;
    }

    .more_info_text {
        font-size: 16px;
        margin-bottom: 70px;
    }

    .more_info_btn {
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
    }
    
    .more_info_btn::after {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }

    .more_info_card {
        margin-right: 10px;
    }

    .more_info_card_inner {
        padding: 0 20px 20px;
    }
}

.section_title {
    font-size: 120px;
    font-family: "Afacad", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: italic;
}

.section_title.second {
    font-size: 44px;
    padding-left: 35px;
    position: relative;
}

.section_title.second::before {
    content: '';
    background-image: url(../img/icon_section_title.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section_sub_title {
    font-size: 22px;
    display: inline-block;
    border: 1px solid #000000;
    background-color: #fff;
    padding: 0 10px;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0 #000000;
    font-weight: 500;
}

.section_text {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 45px;
}

/* Interview Detail Page Contents List (Training & Interview Pages) */
.interview-detail-page .interview-contents-item {
  border-bottom: 1px solid #000;
  padding-top: 0;
  padding-bottom: 10px;
}

@keyframes gradientShift {
    0% {
        background-position: left 100%;
    }
    100% {
        background-position: left 0%;
    }
}

@media (max-width: 1300px) {
    .container.top .container-fluid {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .tobira .container:not(.two_bnr,.two_bnr_sp) {
        padding-top: 0;
        background-color: transparent;
        border-bottom: none;
    }
    .container.crosstalk-content {
        padding-left: calc(100% * (110px / 1280px));
    }
}

@media (max-width: 991.98px) {
    .container.top .btn-entry:not(.header-actions .btn-entry) {
        display: none;
    }
    .header_logo {
        max-height: 45px;
    }
    .container.top .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-toggler-icon {
        right: 0px;
    }
    .hamburger-toggle {
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    /* トップページ以外の背景画像（SP版） */
    body:not(.home) {
        /* background-image: url(../img/body_bg.png); */
        background-size: 100%;
        background-position: center 0px;
    }
    
    .sub_copy_text br {
        display: none;
    }
    .contents:not([class*="-page"]) {
        padding: 200px 0 35px;
        margin-top: -180px;
        background-image: url(../img/sub_copy_bg_sp3.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center top;
    }
    /* 下層ページ用の背景画像（SP版） */
    .contents[class*="-page"] {
        background-image: url(../img/page_footer_bg_sp.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center 300px;
        padding-top: 160px;
        margin-top: -150px;
    }
    .interview-top .page-header {
        margin-bottom: 180px;
    }
    .training-page.contents[class*="-page"] {
        background-position: center 235px;
    }
    .sp_mb_50 {
        margin-bottom: 20px;
    }
    .sp_bg_1 {
        background-image: url(../img/sub_copy_bg_sp2.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom 50px;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .more_info > .container:first-child {
        padding-left: 30px;
        padding-right: 30px;
        top: -40px;
    }
    .more_info > .container:first-child::before {
        left: 15px;
        right: 15px;
        top: -50px;
        bottom: -130px;
    }
}

@media (max-width: 600px) {
    .site-header {
        justify-content: center;
    }
    .navbar-toggler-icon {
        width: 70px;
        height: 35px;
        top: -15px;
    }
    .sub_copy_title {
        font-size: 28px;
        line-height: 55px;
    }
    .sub_copy_text {
        font-size: 16px;
        line-height: 30px;
    }
    .hamburger-nav-sublink {
        padding-left: 20px;
    }
}

/* インタビューカルーセル */
.interview-swiper {
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
    /* スライドのチラつき防止 */
    visibility: hidden;
}

.interview-swiper.swiper-initialized {
    visibility: visible;
}

.interview-swiper .swiper-wrapper {
    display: flex;
}

.interview-swiper .swiper-slide {
    width: auto;
}

.interview-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    pointer-events: none;
    z-index: 1;
}

.interview-card-inner {
    width: 100%;
    height: 100%;
    padding: 30px 50px;
    position: relative;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
    z-index: 2;
}

.interview-category {
    position: absolute;
    top: 30px;
    left: 50px;
    text-align: center;
    align-content: center;
    background-color: var(--category-bg-color, #fff);
    border: 1px solid #000;
    padding: 8px 0px;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-bottom-right-radius: 20px;
}

.interview-photo-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.interview-card:hover .interview-photo-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.interview-photo-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -1px;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
    border-top-left-radius: 20.5px;
    z-index: 2;
    pointer-events: none;
}

.card-bg_1 .interview-photo-wrapper::before {
    background-color: #FF8989;
}

.card-bg_2 .interview-photo-wrapper::before {
    background-color: #FFEB01;
}

.card-bg_3 .interview-photo-wrapper::before {
    background-color: #2CEF9D;
}

.card-bg_4 .interview-photo-wrapper::before {
    background-color: #98B4FF;
}

.interview-photo-wrapper::after {
    position: absolute;
    bottom: 0;
    right: -1px;
    z-index: 2;
    border-top-left-radius: 20.5px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.interview-photo-wrapper.bg_1::after {
    background-image: url('../img/interview_name_bg_1b.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 50%;
    height: auto;
    aspect-ratio: 165 / 70;
    border: none !important;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.interview-photo-wrapper.bg_2::after {
    background-color: #FFEB01;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
}

.interview-photo-wrapper.bg_3::after {
    background-color: #2CEF9D;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
}

.interview-photo-wrapper.bg_4::after {
    background-color: #98B4FF;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
}

.interview-card:not(.swiper-slide-active) .interview-photo-wrapper {
    border-radius: 0;
}

.interview-photo {
    width: 100%;
    display: block;
}

.interview-text-wrapper {
    position: absolute;
    bottom: 0;
    right: -1px;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 0 5%;
    box-sizing: border-box;
    z-index: 3;
    border-top-left-radius: 20.5px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    overflow: hidden;
}

.card-bg_1 .interview-text-wrapper {
    background-color: #FF8989;
    border-right: none;
    border-bottom: none;
}

.card-bg_2 .interview-text-wrapper {
    background-color: #FFEB01;
    border-right: none;
    border-bottom: none;
}

.card-bg_3 .interview-text-wrapper {
    background-color: #2CEF9D;
    border-right: none;
    border-bottom: none;
}

.card-bg_4 .interview-text-wrapper {
    background-color: #98B4FF;
    border-right: none;
    border-bottom: none;
}

.interview-name {
    font-size: clamp(11px, 2.2vw, 16px);
    font-weight: bold;
    margin: 0 0 2px 0;
    text-align: left;
    font-family: "Afacad", sans-serif;
    line-height: 2;
    width: auto;
    align-self: flex-start;
}

.interview-year {
    font-size: clamp(10px, 1.8vw, 14px);
    font-weight: 500;
    margin: 0;
    text-align: left;
    width: auto;
    align-self: flex-start;
}

.interview-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.interview-swiper {
    padding-top: 110px;
    margin-top: -110px;
}

.interview-swiper .swiper-button-prev,
.interview-swiper .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    position: absolute;
    z-index: 10;
}

.swiper-button-prev::after {
    content: "";
    background-image: url(../img/arrow_left.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.swiper-button-next::after {
    content: "";
    background-image: url(../img/arrow_right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

/* PC: 右上に並べる */
@media (min-width: 601px) {
    .interview-swiper .swiper-button-prev,
    .interview-swiper .swiper-button-next {
        top: 24px;
        transform: none;
    }

    .interview-swiper .swiper-button-prev {
        right: 180px;
        left: auto;
    }

    .interview-swiper .swiper-button-next {
        right: 110px;
    }
    .swiper-button-prev:hover::after {
        background-image: url(../img/arrow_left_hover.png);
        transition: all 0.3s ease;
    }
    .swiper-button-next:hover::after {
        background-image: url(../img/arrow_right_hover.png);
        transition: all 0.3s ease;
    }
    
    .interview .section_text {
        padding-right: 190px;       
    }

}

/* SP: 上中央に並べる */
@media (max-width: 600px) {
    .interview-swiper .swiper-button-prev,
    .interview-swiper .swiper-button-next {
        top: 70px;
        transform: none;
    }

    .interview-swiper .swiper-button-prev {
        left: 52%;
        margin-left: -60px;
    }

    .interview-swiper .swiper-button-next {
        right: 52%;
        margin-right: -60px;
    }
}

.interview-swiper .swiper-button-prev:after,
.interview-swiper .swiper-button-next:after {
    font-size: 24px;
}

.interview-name .san {
    font-size: 16px;
}

/* インタビューリンク */
.interview-links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.interview-links-left {
    display: flex;
    gap: 25px;
}

.interview-link {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    padding-right: 40px;
    position: relative;
    transition: all 0.3s ease;
    width: 280px;
    display: inline-block;
}

.interview-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-image: url('../img/arrow_right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.interview-link:hover::after {
    background-image: url('../img/arrow_right_hover.png');
}

.interview-links-right {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

/* クロストーク */
.crosstalk {
    width: 100%;
    margin: 0;
    padding: 0;
}

.crosstalk-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
}

.crosstalk-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.crosstalk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.crosstalk-content {
    position: relative;
    z-index: 3;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 90px;
}

@media (min-width: 993px) {
    .crosstalk-content {
        margin-left: 50%;
        padding-left: 0;
        max-width: 50%;
    }
}

.crosstalk-content .section_title {
    color: #FFEB01;
}
.crosstalk-content .section_text {
    color: #fff;
}

@media (max-width: 767.98px) {
    body.home .crosstalk-video-wrapper {
        aspect-ratio: 393 / 610;
    }
    
    .crosstalk-video {
        width: auto;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .video-control-text {
        display: none;
    }

    .video-control-btn {
        gap: 0;
    }
}

.container.video-control {
    position: relative;
}

/* 動画コントロールボタン */
.video-control-btn {
    position: absolute;
    bottom: 140px;
    right: 0;
    z-index: 4;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background-color: #f0f0f0;
}

.video-control-text {
    color: #000;
}

.video-control-icon {
    font-size: 16px;
}

.video-control-icon img {
    width: 6px;
    height: 10px;
    margin-bottom: 3px;
    margin-left: 4px;
    margin-right: 6px;
}

.play-icon-rotated {
    display: inline-block;
    transform: rotate(-90deg);
    color: #000;
}

@media (max-width: 992px) {
    .interview-links-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .interview-links-left {
        flex-direction: column;
        gap: 30px;
    }

    .interview-link {
        width: 100%;
    }

    .interview-links-right {
        justify-content: center;
    }
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.btn-entry.btn-interview {
    width: 280px;
    height: 60px;
    border-radius: 30px;
    margin-right: 0 !important;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    padding-left: 30px;
}

.btn-entry.btn-interview::after {
    right: 30px;
}

section.crosstalk .btn-entry.btn-interview {
    background-color: transparent;
    border: 1px solid #fff;
}

section.crosstalk .btn-entry.btn-interview:hover {
    background-color: #FFEB01;
    color: #000;
    border: 1px solid #000;
}

section.crosstalk .section_title {
    font-size: 27px;
    color: #fff;
}

section.crosstalk .section_sub_title {
    font-size: 33px;
    font-weight: 500;
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
}

@media (max-width: 767.98px) {
    .video-control-btn {
        bottom: 30px;
        right: 15px;
        width: 32px;
        height: 32px;
        position: absolute;
        padding: 0;
    }
    .video-control-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .video-control-icon img {
        position: absolute;
        top: calc(50% + 0px);
        left: 50%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .crosstalk-content .section_text {
        font-size: 16px;
    }
    .section_title.second {
        font-size: 36px;
    }
}

@media (max-width: 600px) {    
    .interview-card-inner {
        padding: 30px;
    }
    
    .interview-category {
        top: 30px;
        left: 30px;
        padding: 5px 15px;
        font-size: 14px;
    }
    
    .interview-photo-wrapper {
        height: 320px;
        margin-bottom: 15px;
    }
    
    .interview-name {
        font-size: 16px;
    }
    
    .interview-year {
        font-size: 14px;
        margin-bottom: 2px;
        bottom: -10px;
    }
    
    .interview-text {
        font-size: 16px;
    }
    
    .interview-swiper {
        margin-top: -70px;
    }

    .interview-swiper .swiper-button-prev,
    .interview-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .interview-swiper .swiper-button-prev:after,
    .interview-swiper .swiper-button-next:after {
        font-size: 20px;
    }
    .section_title {
        font-size: 67px;
    }
    .section_sub_title {
        font-size: 20px;
    }
    .interview { 
        border-top-left-radius: 45px;
        border-top-right-radius: 45px;
        padding: 40px 0;
    }
    .more_info {
        padding: 40px 0 0;
    }
    .btn-entry.btn-interview {
        width: 100%;
    }
    section.crosstalk .section_sub_title {
        font-size: 28px;
    }
}

/* フッター */
.site_footer {
    border: 1px solid #000;
    background-color: #E6E6E6;
    margin-top: -124px;
    position: relative;
    z-index: 20;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    padding-top: 80px;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer_left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer_logo img {
    max-width: 250px;
    height: auto;
}

.footer_official_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
    width: 250px;
}

.footer_official_icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('../img/icon_external.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.footer_official_link:hover .footer_official_icon {
    background-image: url('../img/icon_external_hover.png');
}

.footer_sns {   
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.footer_sns_icon img {
    transition: opacity 0.3s ease;
}

.footer_sns_x img {
    width: 20px;
    height: 20px;
}

.footer_sns_line img {
    width: 20px;
    height: 20px;
}

.footer_sns_youtube img {
    width: 24px;
    height: 17px;
}

.footer_sns_instagram img {
    width: 20px;
    height: 20px;
}

.footer_sns_icon:hover img {
    opacity: 0.7;
}

.footer_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    max-width: 386px;
    width: 100%;
}

.footer_nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_nav_list a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer_nav_list a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.footer_entry_btn {
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

.footer_border {
    border-top: 1px solid #000;
    margin: 0 auto;
    max-width: 1080px;
    width: calc(100% - 30px);
}

.footer_copyright {
    text-align: right;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer_copyright p {
    font-size: 14px;
    color: #000;
    margin: 0;
    font-family: "Afacad", sans-serif;
}

@media (max-width: 991px) {
    .footer_content {
        flex-direction: column;
        gap: 50px;
    }

    .footer_right {
        align-items: flex-start;
    }

    .footer_nav {
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .site_footer {
        border-top-left-radius: 45px;
        border-top-right-radius: 45px;
        margin-top: -90px;
        padding-top: 60px;
    }

    .footer_content {
        padding-bottom: 50px;
    }

    .footer_logo img {
        max-width: 320px;
    }

    .footer_official_link {
        width: 100%;
        max-width: 250px;
    }

    .footer_content {
        gap: 30px;
    }

    .footer_nav {
        flex-direction: column;
        gap: 0;
    }

    .footer_nav_list {
        gap: 0;
        width: 100%;
    }

    .footer_nav_list li {
        border-bottom: 1px solid #000;
    }

    .footer_nav_list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        font-size: 18px;
    }

    .footer_nav_list a::after {
        content: '';
        width: 32px;
        height: 32px;
        background-image: url('../img/arrow_right.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }

    .footer_sns {
        padding-top: 0;
    }

    .footer_left {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px 30px;
    }

    .footer_logo {
        width: 100%;
        text-align: center;
    }

    .footer_official_link {
        border-bottom: none;
        padding-bottom: 0;
        width: auto;
        max-width: none;
        font-size: 16px;
        gap: 10px;
    }

    .footer_sns {
        gap: 15px;
    }

    .footer_right {
        max-width: none;
    }

    .footer_entry_btn {
        width: 100%;
    }

    .footer_copyright {
        text-align: center;
        padding: 30px 0;
    }

    .footer_border {
        display: none;
    }
}

@media (max-width: 600px) {
    .site_footer {
        border-top-left-radius: 45px;
        border-top-right-radius: 45px;
        margin-top: -90px;
    }
    .interview-text-wrapper {
        width: 63%;
        bottom: -1px;
        right: -1px;
        padding: 0 0 0 20px;
    }

}

@media (max-width: 400px) {
    .footer_logo img {
        max-width: 320px;
    }
}

/* インタビューページ */
.interview-page {
    padding: 60px 0 0;
}

/* パンくずリスト */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumb-list:not(:last-child) {
    color: #666;
}

.breadcrumb-item {
    align-items: center;
    font-weight: 400;
    flex-shrink: 0;
}

.breadcrumb-item:last-child {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb-item:not(:last-child)::after {
    content: '－';
    margin: 0 10px;
    color: #000;
    flex-shrink: 0;
}

.breadcrumb-item a, .breadcrumb-item a:hover {
    color: #666;
    text-decoration: none !important;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* ページヘッダー */
.page-header {
    margin-bottom: 60px;
}

.page-title {
    font-family: "Afacad", sans-serif;
    font-size: 120px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    margin-bottom: 20px;
    color: #000;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding-bottom: 3px;
    display: inline-block;
    position: relative;
}

.page-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background-color: #FFEB01;
    z-index: -1;
}

/* アコーディオンメニュー */
.interview-accordion-wrapper {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.interview-accordion-item {
    width: 190px;
    height: 40px;
}

.interview-accordion-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-right: 40px;
    position: relative;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.interview-accordion-link:hover {
    opacity: 0.7;
}

.interview-accordion-link::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url('../img/btn_arrow_hover.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

/* インタビューグリッド */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid #000;
    position: relative;
    z-index: 1;
}

.interview-grid-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: visible;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.interview-grid-card:nth-child(2n) {
    border-right: none;
}

.interview-grid-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.interview-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.interview-grid-card:hover .interview-grid-photo-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.interview-grid-card-inner {
    width: 100%;
    height: 100%;
    padding: 30px 50px;
    position: relative;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
    z-index: 2;
}

.interview-grid-category {
    position: absolute;
    top: 30px;
    left: 50px;
    text-align: center;
    align-content: center;
    border: 1.5px solid #000;
    padding: 8px 0px;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-bottom-right-radius: 20px;
    transition: background-color 0.3s ease;
}

.interview-grid-card[data-bg-color="#FF8989"] .interview-grid-category {
    background-color: #FF8989;
}

.interview-grid-card[data-bg-color="#FFEB01"] .interview-grid-category {
    background-color: #FFEB01;
}

.interview-grid-card[data-bg-color="#2CEF9D"] .interview-grid-category {
    background-color: #2CEF9D;
}

.interview-grid-card[data-bg-color="#98B4FF"] .interview-grid-category {
    background-color: #98B4FF;
}

.interview-grid-photo-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.interview-grid-photo-wrapper::after {
    position: absolute;
    bottom: 0;
    right: -1px;
    z-index: 2;
    border-top-left-radius: 20.5px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    width: calc(50% + 2px);
    height: auto;
    aspect-ratio: 165 / 70;
    transition: background-color 0.3s ease;
}

.interview-grid-card[data-bg-color="#FF8989"] .interview-grid-photo-wrapper::after {
    background-image: url('../img/interview_name_bg_1b.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 50%;
    border: none !important;
    border-radius: 0;
}

.interview-grid-card[data-bg-color="#FFEB01"] .interview-grid-photo-wrapper::after {
    background-color: #FFEB01;
}

.interview-grid-card[data-bg-color="#FFEB01"]:hover .interview-grid-photo-wrapper::after {
    background-color: #FFF367;
}

.interview-grid-card[data-bg-color="#2CEF9D"] .interview-grid-photo-wrapper::after {
    background-color: #2CEF9D;
}

.interview-grid-card[data-bg-color="#2CEF9D"]:hover .interview-grid-photo-wrapper::after {
    background-color: #84F4C1;
}

.interview-grid-card[data-bg-color="#98B4FF"] .interview-grid-photo-wrapper::after {
    background-color: #98B4FF;
}

.interview-grid-card[data-bg-color="#98B4FF"]:hover .interview-grid-photo-wrapper::after {
    background-color: #C5D4FF;
}

.interview-grid-photo {
    width: 100%;
    height: auto;
    display: block;
}

.interview-grid-info {
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 160px;
    height: auto;
    aspect-ratio: 165 / 70;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 0 0 5%;
    box-sizing: border-box;
    z-index: 3;
    transition: background-color 0.3s ease;
    border-top-left-radius: 20.5px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    overflow: hidden;
}

.interview-grid-info::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -1px;
    aspect-ratio: 165 / 70;
    width: 160px;
    height: auto;
    border-top-left-radius: 20.5px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    z-index: -1;
    background-color: inherit;
}

.interview-grid-card[data-bg-color="#FF8989"] .interview-grid-info {
    background-color: #FF8989;
}

.interview-grid-card[data-bg-color="#FFEB01"] .interview-grid-info {
    background-color: #FFEB01;
}

.interview-grid-card[data-bg-color="#2CEF9D"] .interview-grid-info {
    background-color: #2CEF9D;
}

.interview-grid-card[data-bg-color="#98B4FF"] .interview-grid-info {
    background-color: #98B4FF;
}

.interview-grid-name {
    font-size: clamp(16px, 2.2vw, 16px);
    font-weight: bold;
    margin: 0 0 2px 0;
    text-align: left;
    font-family: "Afacad", sans-serif;
    line-height: 2;
    width: auto;
}

.interview-grid-year {
    font-size: clamp(14px, 1.8vw, 14px);
    font-weight: 500;
    margin: 0;
    text-align: left;
    width: auto;
}

.interview-grid-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 900;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* レスポンシブ対応 */
@media (max-width: 992px) and (min-width: 769px) {
    .page-title {
        font-size: 60px;
    }
    .interview-grid-card-inner {
        padding: 20px;
    }
}

@media (max-width: 768px) {

    .interview-grid-category {
        top: 30px;
        left: 20px;
    }

    .interview-page {
        padding: 40px 0 0;
    }
    
    .page-header {
        margin-bottom: 80px;
    }

    .crosstalk-page .page-header {
        margin-bottom: 80px;
    }

    .contents.crosstalk-page {
        background-position: center 240px;
    } 

    .training-page .page-header {
        margin-bottom: 80px !important;
    }
    
    .page-title {
        font-size: 60px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .interview-accordion-wrapper {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .interview-accordion-item {
        width: 100%;
    }
        
    .interview-accordion-link {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: none;
    }
    
    .interview-grid-card {
        border: 1px solid #000 !important;
    }
    
    .interview-grid-card-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 1340px) {
    .interview-text-wrapper {
        width: 63%;
        bottom: -1px;
        right: -1px;
        padding: 0 0 0 20px;
    }
}

@media (max-width: 1065px) and (min-width: 769px) {
    .interview-text-wrapper {
        width: 94%;
    }
    .interview-category {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .main_visual_bg_layer1 .main_visual_bg_scroll img {
        height: 130%;
    }
    .main_visual_bg_layer2 .main_visual_bg_scroll img {
        height: 200%;
    }
    .main_visual .container.main_visual_controls .scroll-link {
        left: 15px;
    }
    .interview-grid-info {
        width: 145px;
    }
    .hamburger-menu::before {
        background-image: none;
    }
    .hamburger-menu::after {
        background-image: none;
    }
    .recruit_wrapper {
        background-image: none;
    }
    .crosstalk-content {
        padding-bottom: 0;
    }
}

.btn-entry.btn-main-visual {
    height: 60px !important;
    border-radius: 30px !important;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    padding-left: 30px;
}

@media (min-width: 768.98px) {
    .btn-entry.btn-main-visual {
        min-width: 280px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}


@media (max-width: 400px) and (max-height: 700px) {
    .hamburger-menu-body::after {
        content: '';
        position: fixed;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100vw - 20px);
        height: 150px;
        background: linear-gradient(180deg, #fff0, #EFEFEF 50.5%);
        pointer-events: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        z-index: 10;
    }
    .main_visual_top_area {
        padding-top: 0;
        padding-bottom: 0;
    }
    .main_visual_scroll_front img {
        height: 200px;
    }
    .tobira {
        padding-bottom: 0;
    }
    .main_visual_bg_scroll {
        height: 15%;
    }
    .main_visual_catch {
        margin-bottom: 25px;
    }
    .container.main_visual_controls {
        bottom: 70px;
    }
    .main_visual .container.main_visual_controls .scroll-link {
        height: 120px;
    }
    .main_visual_content {
        top: 250px;
    }
    .hamburger-menu-body {
        padding-bottom: 150px;
    }
    .main_visual_scroll_back {
        height: 75px;
    }    
    .main_visual_scroll_back img {
        height: 75px;
    }
    .main_visual_scroll_back {
        bottom: 61vh !important;
    }
}


@media (max-width: 1300px) and (min-width: 992px) {
    .contents {
        background-position-y: 100px;
    }
}

@media (max-width: 991.98px) {
    .contents {
        background-position-y: 300px;
    }
}

@media (max-width: 767.98px) {
    .sub_copy_bg_container {
        padding-top: 300px;
    }
}

@media (max-width: 600px) {
    .sub_copy_bg_container {
        padding-top: 150px;
    }
}

@media (max-width: 500px) {
    .sub_copy_bg_container {
        padding-top: 100px;
    }
}

@media (max-width: 400px) {
    .sub_copy_bg_container {
        padding-top: 80px;
    }
}