* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    color: #333;
    line-height: 1.6;
}
#home {
    color:#FFF;
}
.wrapper {
    position:relative
}
header {
    width:100%;
    position:fixed;
    padding: 40px 70px 0 70px;
    left:0;
    top:0;
    z-index: 100;
}

.header-top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 36px;
    z-index: 10;
}

.contact-btn {
    background: transparent;
    border:1px solid white;
    width:200px;
    height:60px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn:hover {
    opacity: 0.8;
}

.logo {
    width: auto;
    height: 70px;
    aspect-ratio:39/35;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.vertical-nav {
    position: fixed;
    left: 140px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap:20px;
    z-index: 10;
}
.vertical-nav.is-stopped {
    position: absolute;
    top: auto;
    /* fixedのtopを解除 */
    bottom: 0px;
    /* フッターのすぐ上に固定 */
}
.vertical-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right:20px;
    gap: 40px;
    border-right:1px solid white;
    margin-right:12px;
}
.recruit-nav ul {
    border-right:1px solid #000;
}

.vertical-nav li {
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
    height:14px;
    position:relative;
}
.recruit-nav .nav-link {
    color:#000;
}
.nav-link span {
    display: block;
    position:absolute;
    right:0;
    top:1px;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.nav-link .ja {
    opacity:0;
}

.nav-link:hover .ja,
.nav-link.active .ja{
    opacity: 1;
}
.nav-link:hover .en,
.nav-link.active span.en {
    opacity: 0;
}

.nav-arrow {
    width:24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.recruit-nav .nav-arrow {
    filter: invert();
}

/** 背景動画 **/
.bg_top {
    position:fixed;
    width:100%;
    height:100svh;
    overflow: hidden;
}
.bg_top video {
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: -100;
}
.bg_top:after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background-color: rgb(0 0 0 / 0.3);
    display: block;
}


/* アニメーション */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    /* 少し下から上に動かす */
    transition: opacity 0.5s ease-out, transform 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 2s 0.8s linear;
}
.hero-section.is-show {
    opacity: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Section Styles */
.section {
    padding: 80px 40px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #FFF;
    margin: 20px auto 0;
}

.section > .container {
    position:relative;
}

.lead-box .subtitle {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

.lead-box .lead {
    font-size: 20px;
    text-align: center;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: opacity 0.3s ease-out;
    color: white;
    text-decoration: none;
    margin-top: 40px;
}

.more-btn:before {
    content: "";
    width: 38px;
    height: 38px;
    background: url(../img/btn_arw.svg) no-repeat;
    background-size: 100% auto;
}

.more-btn:hover {
    opacity: 0.8;
}






/* NEWS Section */
.news-container {
    margin: 40px auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.news-card {
    width:61%;
    max-width: 786px;
    background: rgba(255, 255, 255, 0.90);
    padding: 28px 38px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap:40px;
}
.old-lists {
    max-height:320px;
    overflow-y: auto;
}
.news-list {
    display: grid;
    grid-template-columns: 7em 1fr;
    gap:10px 20px;
}
.news-list h3 {
    font-size: 20px;
    color: #333;   
}

.news-tag {
    display: inline-flex;
    width: 76px;
}

.news-title {
    margin-bottom: 5px;
}

.news-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* COMPANY Section */
.company-container {
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-box {
    width: 61%;
    max-width: 786px;
    display: flex;
    margin-top:40px;
}
.company-box .txt-box {
    width:50%;
}
.company-description {
    font-size: 17px;
    line-height: 2.2;
    letter-spacing: 0.1em;
}

.company-image {
    position: relative;
    overflow: hidden;
    flex:1;
    margin-right: calc(50% - 50vw);
}

.company-img {
    width: 100%;
    height: 384px;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.company-img img {
    width:100%;
    height:100%;
    object-fit: cover;
}

/* BUSINESS Section */

.business-method {
    width: 61%;
    max-width: 786px;
    margin: 40px auto 80px;
    display: flex;
    flex-direction: column;
    gap:40px;
}

.business-method:last-child {
    margin-bottom: 0;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.method-text {
    display: flex;
    flex-direction: column;
    gap:10px;
}
.method-text .more-btn {
    font-size:16px;
    line-height: 1.2;
    margin-top:0;
}

.method-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.1;
}

.method-description {
    font-size: 16px;
    line-height: 1.6;
}

.method-image {
    position: relative;
    flex:1;
    width:100%;
    height:auto;
    aspect-ratio:5 / 3;
}

.method-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    width:130px;
    height:auto;
    aspect-ratio:1 / 1;
    border-radius: 50%;
}
.image-overlay img {
    width:100%;
    height:auto;
    display: block;
}

/* OUTLINE Section */
.outline-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.outline-text {
    font-size: 18px;
}

.outline-container {
    width: 61%;
    max-width:786px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap:40px;
}

/* ヘッダー（ボタン） */
.accordion-header {
    width: 100%;
    padding: 0 0 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size:21px;
    text-align: center;
    color:white;
    border-bottom:2px solid white;
}
.accordion-header .icn {
    position:absolute;
    right:0;
}
/* アイコン（＋マーク） */
.icn::before {
    content: '';
    display: block;
    width:24px;
    height:24px;
    background: url(../img/mdi-light_plus.svg) no-repeat;
    background-size:100% auto;
    transition: transform 0.3s;
}

/* 開いている時のアイコン（×に変更） */
.accordion-item.is-open .icn::before {
    background: url(../img/mdi-light_minus.svg) no-repeat;
        background-size: 100% auto;
}

/* 開閉アニメーションの核 */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    /* 最初は高さ0 */
    transition: grid-template-rows 0.3s ease-out;
    overflow: hidden;
}

.accordion-item.is-open .accordion-content {
    grid-template-rows: 1fr;
    /* 開いたらコンテンツの高さ分広がる */
}

.content-inner {
    min-height: 0;
    padding: 0 20px;
}
.content-inner .caption {
    font-size:12px;
    margin-top:20px;
    text-align: center;
}

/* 開いた時だけ内側に余白を作る */
.accordion-item.is-open .content-inner {
    padding-bottom: 20px;
}

.accordion-content .content-inner dl {
    display: flex;
    justify-content: center;
}
.accordion-content .content-inner dl dt {
    padding:10px 10px 10px 0;
    border-right:1px solid white;
    text-align: right;
    width:50%;
}
.accordion-content .content-inner dl dd {
    padding: 10px 0 10px 10px;
    width:50%;
}
.accordion-content .content-inner > dl:first-child dt,.accordion-content .content-inner>dl:first-child dd {
    padding-top:20px;
}

/* CONTACT Section */
#contact {
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-container {
    width: 61%;
    max-width: 786px;
    margin: auto;
    text-align: center;
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-intro {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-tel {
    font-size: 64px;
    font-weight: 700;
}

.contact-fax {
    font-size: 20px;
}

.contact-hours {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-email {
    font-size: 64px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: opacity 0.3s;
}
#recruit .contact-email {
    color:#000;
}
.contact-email:before {
    content:"Mail ";
    font-size:50%;
}

.contact-email:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #FFFFFF;
    position:relative
}

.footer-divider {
    height: 8px;
    background: #4caf50;
}

.footer-content {
    max-width: 1200px;
    width:100%;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position:relative
}
.footer-content .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    width:100%;
    max-width:960px;
}

.footer-logo {
    width: 86px;
    margin-bottom: 40px;
}
.footer-logo img {
    width:100%;
    height:auto;
    display: block;
}

.footer-address {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
    min-width:6em;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-btm {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

.scroll-top-btn {
    width: 106px;
    height: 106px;
    border: 2px solid #4caf50;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position:absolute;
    right:80px;
    bottom:64px;
}
.scroll-top-btn img {
    width: 60%;
    transform: translateY(0);
    transition:transform .3s ease-out;
}

.scroll-top-btn:hover img{
    transform: translateY(-5px);
}


/*--------------------------------------
  recruit
  ----------------------------------------*/
.rec-hero-section {
    width:100%;
    min-height:0;
    height:auto;
    aspect-ratio:1366 / 530;
    position:relative
}
.rec-hero-section figure {
    width:100%;
    height:100%;
    margin-bottom:0;
}
.rec-hero-section figure img {
    width:100%;
    height:100%;
    object-fit: cover;
}
.rec-hero-section .hero-content {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height :100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-inline:160px;
}
.rec-hero-section .reveal {
    transition-delay: 2s;
}

#recruit .outer {
    position:relative;
    display: flex;
    align-items: flex-start;
    padding:140px 140px 0;
    width: 100%;
}
#recruit .outer .recruit-nav {
    position:sticky;
    top:140px;
    transform: translateY(0);
}
#recruit .outer .main {
    position: relative;
}
#recruit .contact-container{
    width:100%;
}
.information-section {
    padding-top:0;
}
.information-section .contact-email {
    color:#000;
}
.information-section .contact-container {
    margin-top:40px;
    width: 100%;
}
.btn-info {
    display: flex;
    border:1px solid #666;
    border-color:#666 white white #666;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-top:40px;
    width:220px;
    height:60px;
}
.btn-info span {
    color:#333333;
    font-size:20px;
}
.btn-info span:before {
    content:"";
    width:20px;
    height:20px;
    background: url(../img/arw.svg) no-repeat;
    background-size: 20px auto;
    display: inline-flex;
    margin-right:10px;
    vertical-align: middle;
    transition: all .3s ease-out;
    position:relative;
}
.btn-info:hover span:before {
    margin-left: 10px;
}
#recruit .section-title::after {
    background-color: #000;
}
.rec-section-header {
    background-color: #333333;
    margin-inline: calc(50% - (50cqi + 15px));
    overflow: hidden;
    height:300px;
    margin-bottom:40px;
}
.rec-section-header .inner{
    display: flex;
    width:100%;
    height:100%;
    justify-content: center;
    align-items: center;
}
.rec-section-header .inner .h2-box {
    background-color: rgba(255,255,255,0.8);
    width:min(80%,460px);
    height:122px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rec-section-header .inner .h2-box h2 {
    text-align: center;
}
.rec-section-header .inner .h2-box h2 img {
    max-width:90%;
}
.interview-section.section,.point-section.section {
    padding:0;
    overflow:visible
}

/* INTREview */
#interview .rec-section-header {
    background: url(../img/img_interview_header.jpg) center no-repeat;
    background-size: cover;
}
.interview-content {
    display: flex;
    justify-content: center;
    gap:30px;
    margin-top:40px;
}
.interview-content .interview-text {
    width:min(40%,240px);
}
.interview-content .interview-image {
    width:min(50%, 340px);
}
.interview-img {
    width:100%;
    height:auto;
}
.video-container {
    max-width:786px;
    margin:40px auto;
    position:relative;
}
.video-wrapper,.video-wrapper video {
    width:100%;
    height:auto;
    aspect-ratio:16 / 9;
}
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s;
}
.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.interview-info{
    border:1px solid #666;
    padding:20px;
    margin-bottom:20px;
}
.interview-info p {
    text-align: left;
    font-size:14px;
}
.interview-info p .txt_l {
    font-size:150%;
}
.interview-description {
    line-height: 2;
}
/* point */
#point .rec-section-header {
    background: url(../img/img_point_header.jpg) center no-repeat;
    background-size: cover;
    margin-bottom:0;
}
.point_section_cont {
    margin-inline: calc(50% - 50cqi);
    padding-top:80px;
    padding-bottom:80px;
}
.point_section_cont .inner {
    width: 61%;
    max-width:786px;
    margin:auto;
}

.point-introduction {
    display: flex;
    flex-direction: column;
    gap:40px;
}
.point-lead-box h3 {
    font-size:28px;
    margin-bottom:10px;
}

.point-box {
    display: flex;
    margin-top:40px;
}
.point-box .point-image {
    width:min(50%,400px);
    flex-shrink: 0;
    position:relative;
    z-index: 1;
    padding-top:40px;
}
.point-box .point-image img {
    width:100%;
    height:auto;
}
.point-box .point-txt {
    flex:1;
    position:relative;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:0 60px 40px;
    z-index: 2;
}
.point-box .point-txt img {
    position:absolute;
    z-index: -1;
    left:-30px;
    top:0;
}
.point-box .point-txt .point-txt-inn {
    position:relative;
    z-index: 1;
}
.point-txt-inn h4 {
    font-size:24px;
    margin-bottom:8px;
}
.point-txt-inn p {
    font-size: 16px;
    font-weight:400;
    line-height: 1.5;
}
.point-box.rev {
    flex-flow: row-reverse;
}
.point-box.rev .point-txt {
    padding: 0 60px 40px;
}
.point-box.rev .point-txt img {
    right: -30px;
    left:auto;
    top: 0;
    
}
.point_section_cont {
    background: url(../img/bg_point01.jpg) right top no-repeat;
    background-size: 100% auto;
}
.point_section_cont#point02 {
    background: url(../img/bg_point02.jpg) right top no-repeat;
    background-size: 100% auto;
}
.point_section_cont#point03 {
    background: url(../img/bg_point03.jpg) right top no-repeat;
    background-size: 100% auto;
}

#recruit-last .lead-box {
    text-align: center;
    margin-bottom:40px;
}
#recruit-last .lead-box h3 {
    font-size:32px;
    font-weight:300;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1280px) {
.tab_pc {
    display: none;
}
.company-box .txt-box {
        width: 65%;
    }
.image-overlay {
    width:100px;
}
.contact-tel,.contact-email {
    font-size: 50px;
}
.point-txt-inn h4 {
    font-size:22px;
}
.point-box .point-txt {
            padding:20px 0 20px 60px;
        }
.point-box.rev .point-txt {
    padding: 20px 60px 20px 0;
}
.point-box .point-txt img {
    width: calc(100% + 60px);
}
#recruit-last .lead-box h3 {
    font-size:6vw;
}
}
@media (min-width: 1025px) {
    .spnav-btn {
        display: none;
    }
    .tab_sp {
        display: none;
    }
}


@media (max-width: 1024px) {
    .pc {
        display: none;
    }
    .spnav-btn {
        display: flex;
        position:fixed;
        left:40px;
        top:40px;
        flex-direction: column;
        justify-content: space-between;
        width:60px;
        height:40px;
        background-color: transparent;
        border:none;
        z-index: 100;
        transition: all 0.3s ease-out;
    }
    .spnav-btn span {
        width:100%;
        height:1px;
        background-color: white;
        display: block;
        transition: all 0.3s ease-out;
        opacity: 1;
    }
    .spnav-btn.is-active {
        justify-content: center;
    }
    .spnav-btn.is-active span:nth-of-type(1),.spnav-btn.is-active span:nth-of-type(3) {
        opacity:0;
    }
    .nav-arrow {
        display: none;
    }

    .vertical-nav,#recruit .outer .recruit-nav {
        position: fixed;
        left:0;
        top:0;
        transform: translateX(-100%);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        z-index: 10;
        justify-content: center;
        width:200px;
        height:100%;
        background-color: rgba(0,0,0,0.8);
        transition:all 0.3s ease-out;
    }
   .vertical-nav ul,
        #recruit .outer .recruit-nav ul{
            border-right:none;
        }
    .vertical-nav.is-active,
    #recruit .outer .recruit-nav.is-active {
        transform:translateX(0);
    }
   #recruit .outer .recruit-nav .nav-link {
       color: #ffffff !important;
   }
   #recruit .outer .recruit-nav .nav-link .en {
        filter: invert();
   }

    .news-card,.company-box,.business-method,.outline-container,.contact-container{
        width:80%;
    }
    .company-container,
    .method-content {
        grid-template-columns: 1fr;
    }

    .company-box {
        flex-direction: column;
        align-items: center;
        gap:20px;
    }
    .company-box .txt-box{
        width:100%;
        text-align: center;
    }
    .company-image {
        margin-right: auto;
        width: 100%;
    }
    .company-img {
        clip-path: none;

    }
    #contact {
            height:auto;
        }
    .contact-container {
        margin-top:40px;
    }
    
   .footer-content .footer-inner {
       gap:20px;

   }
    
    .footer-right {
        align-items: flex-start;
    }
    .footer-nav {
        gap: 20px;
    }
    .scroll-top-btn {
            width: 80px;
            height: 80px;
            right: 40px;
        }

    #recruit .outer {
        padding:80px 0 0;
    }
   .rec-section-header {
            margin-inline:0;
        }
   .interview-content {
            width: 80%;
            margin: 40px auto;
        }
    .interview-content .interview-text {
            width: 40%;
        }
    .interview-content .interview-image {
            width: 50%;
        }
    .point_section_cont .inner {
            width:80%;
        }
     .point-txt-inn p {
            font-size: 15px;
            line-height: 1.4;
        }

}
@media (min-width: 769px) {
    .sp {
        display: none;
    }
}
@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    .header-top {
            gap:20px;
        }
    .logo {
        width: 50px;
        height: auto;
    }
   .logo img {
            width:100%;
            height:auto;
        }
    .spnav-btn {
        left: 20px;
        top: 20px;
        width: 40px;
        height: auto;
        aspect-ratio:3 / 2;
    }

    .section {
        padding: 60px 20px;
    }
    .news-card,
        .company-box,
        .business-method,
        .outline-container,
        .contact-container {
            width: 90%;
        }
    .lead-box .subtitle {
        font-size:6.0vw;
    }
    .lead-box .lead {
            font-size: 4.5vw;
        }
    .company-description {
            font-size: 3.8vw;
            line-height: 2.2;
            letter-spacing: 0em;
        }
    .news-list {
                grid-template-columns: 1fr;
                gap: 10px;
     }
    .news-card {
            padding:20px;
        }
    .contact-intro {
        font-size:4.5vw;
    }
    .contact-tel,.contact-email {
                    font-size: 6vw;
                }
    .contact-fax,.contact-hours {
            font-size: 3.4vw;
        }
    
    .footer-content {
        padding: 40px 20px;
    }
    .footer-content .footer-inner {
               display: flex;
               flex-flow: column-reverse;
               gap: 30px;
               align-items: center;
           }
    .footer-right {
        align-items: center;
        gap:10px 20px;
    }
    .footer-nav a {
            min-width: 0;
        }
   .footer-logo {
            margin: 0 auto 20px;
        }
   .footer-address br {
            display: none;
        }
   .scroll-top-btn {
                    width: 60px;
                    height: 60px;
                    right: 20px;
                    bottom:auto;
                    top:-30px;
                    background-color: white;
    }
    .rec-hero-section {
            aspect-ratio: 5 / 6;
        }
    .rec-hero-section .hero-content {
            padding-inline: 40px;
    }
    .rec-hero-section .catch-copy {
        filter: drop-shadow(0px 0px 5px white);
    }
         .rec-hero-section .catch-copy img {
            filter: drop-shadow(0px 0px 5px white);
         }
     #recruit .outer {
            padding:0;
        }
    #recruit .section-title::after {
            background: #000;
        }
    .catch-copy img {
        width:80%;
    }
        .interview-content {
            width: 90%;
            flex-flow: column-reverse;
            align-items: center;
        }
    
        .interview-content .interview-text {
            width: 100%;
        }
    
        .interview-content .interview-image {
            width: 80%;
        }
       .point-box, .point-box.rev {
            display: flex;
            margin-top: 40px;
            gap:30px;
            flex-direction: column;
       }
       .point-box .point-image {
            width:100%;
           }
        .point-box .point-txt,.point-box.rev .point-txt {
            padding: 20px;
            border: 4px solid #000;
            border-radius: 30px;
        }
        .point-box .point-txt img {
            display: none;
        }
}
