@charset "utf-8";

/* mv */
.mv {
    position: relative;
    background-color: #FFF;
}
.mv video {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    vertical-align: top;
}
/* mvここまで */

/* top_solution */
.top_solution {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    margin-bottom: 80px;
}
.links_wrap {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.links_ct_btn {
    display: block;
    padding: 32px 64px;
    background-color: #FFF;
    border: none;
    border-radius: 8px;
    box-shadow:
    8px 8px 40px rgba(0, 0, 0, 0.16),
    inset 8px 8px 8px transparent,
    inset -8px -8px 8px transparent;
    transition:
    box-shadow ease-in-out .4s,
    background-color ease-in-out .4s;
    cursor: pointer;
}
.links_ct_btn:hover {
    box-shadow:
    8px 8px 8px transparent,
    inset 8px 8px 8px rgba(0, 0, 0, 0.16);
}
.links_ct_btn:hover .ttl,
.links_ct_btn:hover .desc {
    color: #FFF;
}
.links_ct_btn:hover .circle {
    background-color: transparent;
}
.links_ct_btn:hover .circle svg {
    scale: 1.6;
}
.links_customer .links_ct_btn:hover {
    background-color: #5FC1C7;
}
.links_customer .links_ct_btn.active {
    background-color: #5FC1C7;
    box-shadow:
    8px 8px 8px transparent,
    inset 8px 8px 8px rgba(0, 0, 0, 0.16);
}
.links_ct_btn.active .ttl,
.links_ct_btn.active .desc {
    color: #FFF;
}
.links_partner .links_ct_btn:hover {
    background-color: #97C75F;
}
.links_partner .links_ct_btn.active {
    background-color: #97C75F;
    box-shadow:
    8px 8px 8px transparent,
    inset 8px 8px 8px rgba(0, 0, 0, 0.16);
}
.links_ct_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.links_ct .ttl {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 500;
    transition: .4s;
}
.links_ct .desc {
    margin-bottom: 24px;
    color: #1D4763;
    transition: .4s;
}
.links_ct .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    transition: .4s;
}
.links_ct .circle svg {
    width: 24px;
    height: auto;
    fill: #FFF;
    transition: .4s;
}
.links_customer .ttl {
    color: #5FC1C7;
}
.links_customer .circle {
    background-color: #5FC1C7;
}
.links_partner .ttl {
    color: #97C75F;
}
.links_partner .circle {
    background-color: #97C75F;
}
/* モーダルのスタイル */
.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0); /* 初期状態は透明 */
    transition: background-color 0.4s; /* 背景色のトランジションを追加 */
}

/* モーダルコンテンツのスタイル */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    opacity: 0; /* 初期状態は透明 */
    transition: opacity 0.4s; /* 不透明度のトランジションを追加 */
    transform: translateY(-50px); /* 初期状態で上方向に50px移動 */
}

/* モーダルが表示されたときのスタイル */
.modal.active {
    background-color: rgba(0,0,0,0.4); /* 背景色を変更して表示 */
    visibility: visible;
    opacity: 1;
}

.modal.active .modal-content {
    opacity: 1; /* 不透明にして表示 */
    transform: translateY(0); /* 移動を解除して表示 */
}
.modal_content {
    position: relative;
    margin-top: 80px;
}
.modal_content .close {
    position: absolute;
    top: -80px;
    right: 0;
}
.modal_content .close_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; /* バツマークの幅 */
    height: 64px; /* バツマークの高さ */
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    cursor: pointer;
    transition: .4s;
}
.modal_content .close_btn::before {
    content: ''; /* バツマークのテキストを設定 */
    position: absolute;
    z-index: -1;
    bottom: -2px;
    width: 64px; /* バツマークの幅 */
    height: 64px; /* バツマークの高さ */
    background-color: #FFF;
    border-radius: 64px;
    transition: .4s;
}
.links_ct .modal_content .close_btn:hover {
    color: #FFF;
}
.links_customer .modal_content .close_btn:hover::before {
    background-color: #5FC1C7;
}
.links_partner .modal_content .close_btn:hover::before {
    background-color: #97C75F;
}
.modal_menu {
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
}
.modal_menu li {
    width: 50%;
    padding: 4px;
    box-sizing: border-box;
}
.modal_link {
    display: flex;
    justify-content: space-between;
    padding: 24px 8px;
    box-sizing: border-box;
    color: #1D4763;
    background-color: #FFF;
    transition: .4s;
}
.modal_link .icon svg {
    fill: #1D4763;
    transition: .4s;
}
.modal_link:hover {
    color: #FFF;
}
.modal_link:hover .icon svg {
    fill: #FFF;
}
.links_customer .modal_link:hover {
    background-color: #5FC1C7;
}
.links_partner .modal_link:hover {
    background-color: #97C75F;
}
/* top_solutionここまで */

/* top_products */
.top_products {
    position: relative;
}
.top_products::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #EFF9FA;
}
.top_products .product_list {
    justify-content: center;
}
.top_products .btn_wrap {
    text-align: center;
}
/* top_productsここまで */

/* top_reasons */
.reasons_wrap {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-right: 16px;
}
.reasons_select_gp {
    max-width: 600px;
    width: 50%;
    padding: 40px 0 40px 40px;
    box-sizing: border-box;
}
.reasons_select {
    flex-direction: column;
    align-items: stretch;
}
.reasons_select .select_ct {
    padding: 24px 0;
    text-align: left;
    border-bottom: 1px solid #1D4763;
}
.reasons_inner {
    width: 50%;
    padding: 64px 40px;
    box-sizing: border-box;
    background-color: #EFF9FA;
}
.reasons_button {
    width: 100%;
    padding: 0;
    color: #1D4763;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.reasons_button.active_button {
    padding-left: 24px;
    color: #5FC1C7;
    opacity: 1;
}
.reasons_btn_ct {
    display: flex;
}
.reasons_btn_ct .number {
    margin-right: 24px;
    font-weight: 600;
    font-size: 64px;
}
.reasons_btn_ct .title {
    text-align: left;
}
.reasons_btn_ct .title span {
    display: block;
}
.reasons_btn_ct .title .small {
    margin-bottom: 16px;
}
.reasons_btn_ct .title .large {
    font-weight: 500;
    font-size: 24px;
}
.reasons_tab_ttl {
    margin-bottom: 24px;
}
.reasons_tab_img {
    margin-top: 24px;
}
.reasons_tab_img img {
    min-height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
}
.tab_button {
    cursor: default;
}
.tab_button:hover {
    color: #5FC1C7;
    background-color: transparent;
  }
/* top_reasonsここまで */

/* top_business  */
/* business_main  */
.business_main {
    margin-top: 48px;
}
.business_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px 5%;
    visibility: hidden;
}
.business_wrap:hover > .business_ct .ct_img {
    opacity: .5;
}
.business_wrap > .business_ct:hover .ct_img {
    opacity: 1;
}
.business_ct {
    width: 30%;
    box-sizing: border-box;
}
.business_ct_link {
    position: relative;
    visibility: visible;
}
.business_ct_link::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
}
.business_ct_link .ct_img {
    overflow: hidden;
    transition: .4s;
}
.business_ct_link .ct_img img {
    vertical-align: top;
}
.business_ct_link .ct_ttl {
    position: absolute;
    right: -8px;
    bottom: -8px;
    display: inline-block;
    padding: 16px 48px 16px 16px;
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 8px 8px 40px rgba(0, 0, 0, 0.16), inset 8px 8px 8px transparent, inset -8px -8px 8px transparent;
    transition: .4s;
}
.business_ct_link .ct_ttl .circle {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 40px;
    background-color: #1D4763;
    transition: .4s;
}
.business_ct_link .ct_ttl .circle svg {
    width: 8px;
    height: auto;
    fill: #FFF;
    transition: .4s;
}
.business_ct_link .ct_ttl span {
    font-size: 16px;
    color: #1D4763;
    transition: .4s;
}
.business_ct_link:hover .ct_ttl {
    color: #FFF;
    background-color: #1D4763;
    box-shadow: 8px 8px 8px transparent, inset 8px 8px 8px rgba(0, 0, 0, 0.16);
}
.business_ct_link:hover .ct_ttl .circle {
    background-color: transparent;
}
.business_ct_link:hover .ct_ttl .circle svg {
    scale: 1.6;
}
.business_ct_link:hover .ct_ttl span {
    color: #FFF;
}
/* top_businessここまで  */

/* top_company */
.top_company {
    position: relative;
    margin: 40px 0 80px 0;
    padding: 40px 0 0 0;
}
.top_company::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 80vw;
    height: 90%;
    background-color: #EFF9FA;
}
.company_wrap {
    display: flex;
    flex-wrap: wrap;
}
.company_img {
    width: 45%;
}
.company_img img {
    height: 100%;
    min-height: 440px;
    -o-object-fit: cover;
       object-fit: cover;
}
.company_txt {
    width: 55%;
    padding: 24px 48px 120px 48px;
    box-sizing: border-box;
}
.company_txt h3 {
    margin-bottom: 24px;
    font-size: 32px;
}
.company_txt .btn_wrap {
    margin-top: 24px;
}
/* top_companyここまで */

/* top_news */
.top_news {
    margin: 80px 0;
    padding: 0;
    overflow: hidden;
}
.textflow {
    display: flex;
    width: 100vw;
}
.textflow img {
    width: 100vw;
    padding: 0 40px;
    vertical-align: top;
    cursor: default;
    pointer-events: none;
}
.textflow_upper img:first-child {
    -webkit-animation: loop-upper1 50s -25s linear infinite;
            animation: loop-upper1 50s -25s linear infinite;
}
.textflow_upper img:last-child {
    -webkit-animation: loop-upper2 50s linear infinite;
            animation: loop-upper2 50s linear infinite;
}
@-webkit-keyframes loop-upper1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop-upper1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes loop-upper2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
@keyframes loop-upper2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
.textflow_upper {
    margin-top: -8px;
    padding-bottom: 24px;
}
.textflow_lower img:first-child {
    -webkit-animation: loop-lower1 50s -25s linear infinite;
            animation: loop-lower1 50s -25s linear infinite;
}
.textflow_lower img:last-child {
    -webkit-animation: loop-lower2 50s linear infinite;
            animation: loop-lower2 50s linear infinite;
}
@-webkit-keyframes loop-lower1 {
    0% {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes loop-lower1 {
    0% {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@-webkit-keyframes loop-lower2 {
    0% {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes loop-lower2 {
    0% {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(0);
    }
}
.textflow_lower {
    margin-bottom: -8px;
    padding-top: 144px;
}
.top_news .container {
    position: relative;
}
.news_all {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    padding: 48px;
    box-sizing: border-box;
    background-color: #FFF;
}
.top_news .container::before {
    position: absolute;
    z-index: 1;
    bottom: -128px;
    right: 80px;
    content: "";
    display: block;
    width: 90%;
    height: 130%;
    background-image: url("../img/home/news_bg.jpg");
    background-size: cover;
    background-position: center;
}
.news_wrap {
    display: flex;
    flex-wrap: wrap;
}
.news_ttl {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_list {
    width: 70%;
}
.news_ttl .heading_h2 {
    align-items: flex-start;
    margin-bottom: 0;
}
.news_list_li {
    padding: 24px 0;
    box-sizing: border-box;
    border-bottom: 1px dashed #1D4763;
}
.news_list_li a {
    position: relative;
    display: flex;
    padding: 8px 32px 8px 0;
    line-height: 1.4em;
    color: #1D4763;
}
.news_list_li a .time {
    margin-right: 24px;
}
.news_list_li a .icon {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
.news_list_li a .icon svg {
    width: 16px;
    height: auto;
    fill: #1D4763;
    transition: .4s;
}
.news_list_li a:hover .icon svg {
    fill: #5FC1C7;
}
/* top_newsここまで */

/* top_cert */
.cert_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.cert_ct {
    padding: 16px 32px;
    box-sizing: border-box;
}
.cert_img img {
    width: 100%;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
}
.cert_img.landscape img {
    height: 64px;
}
/* top_certここまで */

/* top_recruit_banner */
#top_recruit_banner {
    position: fixed;
    z-index: 997;
    left: 0;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    border: none;
    transition: .4s;
}
#top_recruit_banner .close {
    display: block;
    position: absolute;
    top: -12px;
    left: 24px;
    z-index: 1;
    width: 24px;
    height: 24px;
    background-color: #1D4763;
    border-radius: 24px;
    border: 1px solid #FFF;
}
#top_recruit_banner .close::before,
#top_recruit_banner .close::after {
    content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 12px; /* 棒の高さ */
  background: #FFF; /* バツ印の色 */
}
#top_recruit_banner .close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
#top_recruit_banner .close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
#top_recruit_banner a {
    display: block;
    padding: 32px 24px 24px 24px;
    box-sizing: border-box;
    color: #1D4763;
    border-radius: 0 16px 16px 0;
    background-color: #E6E500;
    border: 1px solid #FFF;
    transition: .4s;
}
#top_recruit_banner a .banner_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
#top_recruit_banner a .banner_ttl .name {
    font-weight: 500;
    font-size: 24px;
}
#top_recruit_banner a .banner_ttl .icon {
    margin-right: 8px;
}
#top_recruit_banner a .banner_ttl .icon svg {
    width: 24px;
    height: auto;
}
#top_recruit_banner a .banner_subtxt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    color: #FFF;
    background-color: #1D4763;
}
#top_recruit_banner a .banner_subtxt .icon svg {
    width: 16px;
    height: auto;
    fill: #FFF;
}
/* top_recruit_bannerここまで */

/*  レスポンシブ */
@media screen and (max-width: 1024px) {
    .reasons_wrap {
        flex-direction: column;
        padding-right: 0;
    }
    .reasons_select {
        flex-direction: row;
    }
    .reasons_select_gp {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .reasons_select .select_ct {
        width: 20%;
        padding: 0;
    }
    .reasons_select .select_ct .title {
        display: none;
    }
    .reasons_select .reasons_btn_ct {
        justify-content: center;
    }
    .reasons_button.active_button {
        padding-left: 16px;
        color: inherit;
    }
    .reasons_button {
        position: relative;
        padding: 16px;
        border-top: 1px solid #1D4763;
        border-right: 1px solid #1D4763;
    }
    .select_ct:first-child .reasons_button {
        border-left: 1px solid #1D4763;
    }
    .reasons_select .select_ct:last-child .reasons_button {
        margin-right: 0;
    }
    .reasons_button::after {
        opacity: 1;
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 8px;
        transition: .4s;
        background-color: #1D4763;
    }
    .reasons_button.active_button::after {
        background: rgb(151,199,95);
        background: linear-gradient(30deg, rgba(151,199,95,1) 0%, rgba(95,193,199,1) 100%);
    }
    .reasons_select .reasons_btn_ct .number {
        margin-right: 0;
    }
    .reasons_select .reasons_btn_ct .number {
        font-size: 32px;
    }
    .reasons_inner {
        width: 100%;
        padding: 32px 16px;
    }
    .tab .reasons_btn_ct {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 599px) {
    .mv h1 {
        font-size: 24px;
    }
    .mv_slider .splide__slide div {
        height: 400px;
    }
    .mv video {
        height: 350px;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .links_wrap {
        flex-wrap: wrap;
    }
    .links_ct .desc {
        display: none;
    }
    .links_ct_btn {
        padding: 16px;
    }
    .modal_menu li {
        width: 100%;
    }
    .modal_link {
        padding: 16px 8px;
        font-size: 14px;
    }
    .business_ct {
        width: 100%;
    }
    .business_ct_link .ct_ttl {
        position: relative;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        border-radius: 0;
    }
    .business_ct_link::after {
        display: none;
    }
    .business_wrap:hover > .business_ct .ct_img {
        opacity: 1;
    }
    .top_company::before {
        width: 100vw;
        height: 100%;
    }
    .company_img {
        width: 100%;
    }
    .company_txt {
        width: 100%;
        padding: 32px 16px;
    }
    .news_all {
        padding: 32px 16px;
    }
    .news_wrap {
        position: relative;
        padding-bottom: 80px;
    }
    .news_wrap .btn_wrap {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
    }
    .news_ttl {
        width: 100%;
    }
    .news_list {
        width: 100%;
    }
    #top_recruit_banner .close {
        width: 32px;
        height: 32px;
    }
    #top_recruit_banner a .banner_ttl .icon svg {
        width: 16px;
    }
    #top_recruit_banner a .banner_ttl .name {
        font-size: 20px;
    }
    #top_recruit_banner a .banner_subtxt {
        padding: 8px;
    }
    #top_recruit_banner a .banner_subtxt .name {
        font-size: 14px;
    }
}
/*  レスポンシブここまで */