@charset "utf-8";


body {
    font-family: Noto Sans JP, Outfit;
}

.hero::before,
.hero::after{
    content: none;
}

.button_green{
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button_text{
    font-size: 18px;
    font-weight: bold;
    color: #00A585;
    position: relative;
}

.button_text::after {
  background-color: #00A585;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  width: 100%;
}

.button_text:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}



.arrow_icon {
    width: 30px;
    height: 30px;
    vertical-align: -7px;
    margin-right: 8px;
}


/* メインビジュアル */

.hero {
    height: 565px;
    width: 100%;
    background-image: url(../img/renew2025/mv_pc.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_content h2 {
    font-size: 32px;
    font-weight: bold;
    color: #FF9E5D;
    margin-bottom: 8px;
}

.hero_content h1 {
    font-size: 55px;
    font-weight: bold;
    color: #00A585;
    margin-bottom: 16px;
}

.hero_content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 24px;
    width: 40%;
}


.hero_button {
    display: flex;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.hero_btn1,
.hero_btn2 {
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin: auto 4px;
    min-width: 200px;
    text-align: center;
}



.hero_btn1 {
    background-color: #00A585;
    color: #ffffff;
    border: 2px solid #00A585;
}

.hero_btn2 {
    background-color: #ffffff;
    color: #FF9E5D;
    border: 2px solid #FF9E5D;
}


/* 画面サイズ840以下の時 */
@media screen and (max-width: 840px) {
    .hero {
        height: 723px;
        background-image: url(../img/renew2025/mv_sp@3x.png);
        background-position: top;
    }

    .hero_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        padding: 0 8px;
    }

    .hero_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero_content h2 {
        font-size: 20px;
        font-weight: bold;
        color: #FF9E5D;
        margin-bottom: 16px;
    }

    .hero_content h1 {
        font-size: 35px;
        font-weight: bold;
        color: #00A585;
    }

    .hero_content span {
        padding: 8px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 4px;
    }

    .hero_content p {
        font-size: 18px;
        color: #333;
        margin-bottom: 16px;
        width: 100%;
    }

    .hero_button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 50px;
    }

    .hero_btn1,
    .hero_btn2 {
        margin: auto 4px;
        min-width: 300px;
        text-align: center;
    }
}





/* 企業ロゴセクション */

.section_company_logo {
    background-color: #ffffff;
    margin: 20px;
}

.company_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.company_logo img {
    max-width: 120px;
    height: auto;
}

.section_company_logo_SP{
        display: none;
}


@media (max-width: 840px) {

    .section_company_logo {
        display: none;
    }

    .section_company_logo_SP{
        display: block;
        padding: 32px 16px;
        max-width: 560px;
        margin: 0 auto;
    }

}



/* ヤギオファー実績 */

.result {
    background-color: #EBFFFB;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.result_wrapper {
    display: flex;
}

.result_text {
    flex-direction: column;
    padding: 0 20px;
}

.result h2 {
    font-size: 32px;
    font-weight: bold;
    color: #00A585;
    margin-bottom: 8px;
    text-align: left;
    font-family: Outfit;
}

.result p {
    font-size: 16px;
    color: #00A585;
    margin-bottom: 24px;
}

.result_image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    padding: 0 16px;
}

.date_offer_img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 840px) {
    .result {
    margin-bottom: 50px;
    }

    .result_wrapper {
        flex-direction: column;
    }
}






/* Youtube */

.youtube {
    background-color: #ffffff;
    margin-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.youtube_wrapper {
    border-radius: 24px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    padding: 32px;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.youtube_content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.youtube_text {
    font-size: 16px;
    color: #333;
    flex: 1;
}

.youtube_text h2 {
    font-family: Outfit;
    font-size: 60px;
    color: #FF9E5D;
}

.youtube_text h4 {
    font-size: 23px;
    color: 333333;
    font-weight: normal;
}

.youtube_content iframe{
    flex: 1;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.youtube_button_green{
    margin-top: 30px;
    justify-content: center;
}


@media (max-width: 840px) {
    .youtube_wrapper {
        align-items: center;
        max-width: 600px;
    }

    .youtube_content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .youtube_text {
        text-align: center;
    }

    .youtube_text h2 {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .youtube_text h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .youtube_link {
        flex: 1;
        max-width: 100%;
        height: auto;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        height: 300px;
        /* 高さを増やす */
    }
}





/* yagiofferなら1万円de採用 */

.section_feature_front_content {
    background-color: #ffffff;
    margin-bottom: 80px;
}

.feature_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1100px;
}

.feature_wrapper {
    max-width: 460px;
}

.feature_text h2 {
    font-size: 30px;
    margin-bottom: 24px;
}

.feature_text h3 {
    font-size: 25px;
    color: #00A585;
    margin-bottom: 8px;
}

.feature_text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.feature_image {
    max-width: 620px;
    height: auto;
}


@media (max-width: 1070px) {
    .section_feature_front_content {
    margin-bottom: 50px;
    }

    .feature_content {
        flex-wrap: wrap;
        align-items: center;
        text-align: left;
    }

    .feature_wrapper {
        max-width: 90%;
        margin-bottom: 40px;
    }

    .feature_text {
        text-align: left;
        width: 100%;
    }

    .feature_text h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .feature_text h3 {
        font-size: 18px;
        color: #00A585;
        margin-bottom: 8px;
    }

    .feature_text p {
        font-size: 15px;
        color: #333;
        margin-bottom: 32px;
    }

}




/* メディア */

.section_media_parallax_content {
    background-color: #CBF5DC;
    margin-bottom: 80px;
    padding: 60px 20px;
}

.media_contents_wrapper {
    max-width: 975px;
    margin: 0 auto;
}

.media_contents_wrapper h2 {
    font-family: Outfit;
    font-size: 35px;
    margin-bottom: 24px;
}

.flex_media_list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.media_item {
    width: calc(100% / 3 - 10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    text-align: center;
    border-radius: 8px;
}

.title01 {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 16px;
}

.title02 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 32px;
    font-weight: bold;
}

.media_more {
    background-color: #00c08b;
    color: white;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 840px) {
    .section_media_parallax_content {
        margin-bottom: 50px;
    }


    .media_contents_wrapper h2 {
        text-align: center;
    }

    .flex_media_list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .media_item {
        width: 300px;
        margin-bottom: 20px;
    }

    .title01 {
        font-size: 12px;
        color: #6a6a6a;
        margin-bottom: 8px;
    }

    .title02 {
        color: #333333;
        font-weight: bold;
    }
}




/* 初期費用・成功報酬なし */

.section_cost {
    margin-bottom: 80px;
    background-color: #ffffff;
}

.cost_contents_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1000px;
    align-items: center;
}

.cost_text {
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    padding: 20px;
}

.cost_text h3 {
    font-weight: bold;
    color: #333;
    font-size: 24px;
    margin-bottom: 4px;
}

.cost_text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 16px;
}

.cost_text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 24px;
    width: 90%;
}

.cost_img{
    max-width: 400px;
    height: auto;
}


@media (max-width: 840px) {
    .cost_text h3 {
    font-weight: bold;
    color: #333;
    font-size: 22px;
    margin-bottom: 4px;
    }

    .cost_text h2 {
    font-size: 25px;
    color: #333;
    margin-bottom: 16px;
    }

    .cost_text p {
        width: 100%;
    }
}





/* 利用事例 */

.section.case.parallax_content {
    padding: 50px 0;
    background: #EBFFFB;
    margin-bottom: 30px;
}

.case_contents_wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.case_h3 {
    font-weight: bold;
    color: #404040;
    text-align: center;
    font-size: 30px;
    margin-bottom: 60px;
}

.flex.case_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.case_item {
    width: calc(33.333% - 20px);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.case_link {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    margin: 0 auto;
    /* 真ん中に配置 */
}

.type {
    font-size: 14px;
    font-weight: bold;
    color: #11BF6B;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background-color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
}

.title-wrap {
    position: relative;
    padding: 30px 15px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.title-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.title-wrap::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.title-wrap01::before {
    background-image: url(../img/renew2025/business/img_case01.jpeg);
}

.title-wrap02::before {
    background-image: url(../img/renew2025/business/img_case02.jpeg);
}

.title-wrap03::before {
    background-image: url(../img/renew2025/business/img_case03.jpeg);
}

.more {
    text-align: left;
    color: #333333;
    text-shadow: 0 0 20px #EFF8F8;
    padding: 8px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
}

.flex.category {
    display: flex;
    font-size: 12px;
    gap: 8px;
    align-items: center;
}

.category01 {
    background: #fff;
    border-radius: 50px;
    font-weight: normal;
    color: #004D40;
    padding: 4px 12px;
}

.category02 {
    color: #333333;
}

.case_button_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
}


@media (max-width: 840px) {
    /* .section.case.parallax_content {
        margin-bottom: 50px;
    } */

    .case_item {
        width: calc(50% - 20px);
        margin: 0 auto;
    }

    .case_h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .case_item {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .case_link {
        padding: 10px;
        text-align: center;
    }


}




/* お知らせ */

.section_news {
    background-color: #fff;
    margin-bottom: 50px;
}

.news_contents_wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 5px;
}

.flex_news_list {
    margin: 0 16px;
    max-width: 450px;
}

.news_title h2 {
    font-size: 35px;
    font-weight: bold;
    color: #00A585;
    font-family: Outfit;
    padding-top: 5px;
}

.news_title h4 {
    font-size: 18px;
    color: #00A585;
}

.news_item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}


.news_button_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
}

.news_p {
    font-size: 16px;
    color: #333;
}

.date{
    font-size: 14px;
    color: #393939;
    margin-right: 10px;
}

.category{
    font-size: 12px;
    color: #00A585;
    background: #e5fff2;
    border-radius: 50px;
    padding: 3px 10px;
}

.news_top{
    display: flex;
}


@media(max-width: 640px) {
    .section_news {
    margin-bottom: 50px;
    }

    .news_contents_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .news_title {
        text-align: center;
        margin-bottom: 20px;
    }

    .news_title h2 {
        font-size: 35px;
    }

    .news_title h4 {
        font-size: 16px;
    }

    .news_item {
        padding: 16px 0;
    }

    .news_p{
        font-size: 16px;
        color: #333;
    }

    .date{
        font-size: 13px;
        color: #393939;
    }
}





/* 社内採用 */

.section_success {
    background-color: #FFFDF5;
    margin-bottom: 100px;
    padding: 50px 10px;
}

.section_success h2 {
    font-size: 35px;
    font-weight: bold;
    color: #FF771B;
    text-align: center;
    margin-bottom: 40px;
}

.success_contents_wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.success_p {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

.p_muted {
    color: #999;
    font-size: 16px;
}

.success_image {
    max-width: 400px;
    height: auto;
    padding: 0 10px;
}

.section_cta {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cta_button1,
.cta_button2,
.cta_button3 {
    background-color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin: auto 4px;
    text-align: center;
}

.cta_underbar_link{
    padding: 12px 24px;
    min-width: 200px;
    display: block;
}


.cta_button1:hover,
.cta_button2:hover,
.cta_button3:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.cta_button1 {
    background-color: #00A585;
    color: #ffffff;
    border: 2px solid #00A585;
}

.cta_button2 {
    background-color: #ffffff;
    color: #FF9E5D;
    border: 2px solid #FF9E5D;
}

.cta_button3 {
    background-color: #ffffff;
    color: #358CF6;
    border: 2px solid #358CF6;
}


@media (max-width: 840px) {

    .section_success h2 {
        font-size: 25px;
        font-weight: bold;
        color: #FF771B;
        text-align: center;
        margin-bottom: 40px;
    }

    .success_contents_wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .section_cta {
        flex-direction: column;
        align-items: center;
    }

    .cta_button1,
    .cta_button2,
    .cta_button3 {
        width: 100%;
        max-width: 300px;
        margin-bottom: 16px;
    }
}
