/* mainVisual style */
.top-hero_wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position:relative;
}

.top-hero_content {
    z-index: 2;
    margin-top: 196px;
}

.top-hero_line {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-64);
    line-height: 120%;
    font-weight: 700;
}
.top-hero_line:nth-child(2 of .top-hero_line){
    text-indent: 0.4em;
}
.top-hero_line:nth-child(3 of .top-hero_line){
    text-indent: 0.2em;
}

.top-hero_line_initial {
    font-size: var(--font-104);
}

.top-hero_heading_block {
    margin-top: 24px;
    margin-bottom: 40px;
}

.top-hero_heading {
    margin: 0;
    color: #db7c00;
    font-size: var(--font-40);
    line-height: 120%;
    font-weight: 700;
}

.top-hero_cta_link {
    text-decoration: none;
}

.top-hero_cta_wrapper {
    position: relative;
    display: inline-block;
}

.top-hero_cta_btn {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    padding: 10px 0;
    border: 2px solid transparent;
    border-radius: 9999px;
    background-color: var(--primaryColor);
    color: var(--background);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
    cursor: pointer;
}

.top-hero_cta_btn:hover {
    background-color: var(--background);
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.top-hero_cta_text {
    margin: 0;
}

.top-hero_cta_icon {
    position: absolute;
    right: 32px;
    display: inline-flex;
    align-items: center;
    background: none;
}

.top-hero_visual {}

.top-hero_slides {}

.top-hero_slide {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
    height: auto;
    transition: opacity 1000ms ease;
}

.top-hero_slide_active {
    opacity: 1;
}

.top-hero_slide_inactive {
    opacity: 0;
}

.top-hero_line_image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
    height: auto;
}

.top-hero_dashboard {
    position: absolute;
    right: 110px;
    z-index: 1;
    width: auto;
    height: auto;
    margin-top: 420px;
}

.top-hero_counter {
    position: absolute;
    right: 120px;
    z-index: 1;
    display: flex;
    gap: 5px;
    margin: 629px 0 0;
    font-size: var(--font-28);
    line-height: 120%;
    font-weight: 700;
}

.top-hero_counter_current {
    color: var(--secondaryColor);
}

.top-hero_counter_separator {
    color: #f28900;
}

.top-hero_counter_total {
    color: #989898;
}

.top-hero_bird {
    position: absolute;
    z-index: 1;
    width: auto;
    height: auto;
    margin-top: 60px;
    margin-left: 273px;
}

.top-hero_bird img,
.top-hero_dashboard img,
.company-info_bird_primary img,
.top-solution_bird img,
.company-info_bird_secondary img,
.top-case_bird img
{
    width: 100%;
    height: auto;  
}

/* CompanyInfo style */
.company-info_wrapper {
    position: relative;
    height: 796px;
    margin-top: 160px;
    background-image: url("/img/usr/default/RvA-H-3Of-5.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.company-info_overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* TOPスライダー */

.solution-page_keyword_venn{
    display:none;
}
.top-slider-container{
    display:block;
}

@media (min-width: 428px) {
  .solution-page_keyword_venn{
      display:block;
  }
  .top-slider-container{
      display:none;
  }
}
.slider-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    position: relative;
    overflow: hidden;
}
.slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important; 
    scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar {
    display: none;
}
.slider-slide {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    box-sizing: border-box !important;
    scroll-snap-align: center !important; 
}
.slider-slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.2s;
}
.prev-btn {
    left: 0;
}
.next-btn {
    right: 0;
}
.btn-invisible{
    display:none;
}

.company-info_inner {
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 81px;
    color: var(--background);
}

.company-info_content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.company-info_heading {
    margin: 0;
    font-size: var(--font-48);
    line-height: 140%;
    font-weight: 700;
}

.company-info_text {
    margin: 0;
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
}

.company-info_bird_primary {
    position: absolute;
    top: -100px;
    left: 200px;
    width: auto;
    height: auto;
}

.company-info_bird_secondary {
    position: absolute;
    top: 127px;
    right: 77px;
    width: auto;
    height: auto;
}

/* solution style */
.top-solution_wrapper {
    position: relative;
    max-width: 1200px;
    margin: 120px auto 0;
}

.top-solution_header {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 60px;
}

.top-solution_header_inview {
    position: relative;
    z-index: 2;
}

.top-solution_intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width:60%;
}

.top-solution_description {
    margin: 0;
    color: var(--textColor);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 800;
}

.top-solution_header_link {
    margin-left: auto;
}

.top-solution_header_link,
.top-solution_item_link {
    display: block;
    width: fit-content;
    text-decoration: none;
}

.top-solution_header_link_inner {
    display: flex;
    gap: 20px;
}

.top-solution_item_link_inner {
    display: flex;
    gap: 20px;
}

.top-solution_header_link_text,
.top-solution_item_link_text {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.top-solution_header_link:hover .top-solution_header_link_text,
.top-solution_item_link:hover .top-solution_item_link_text {
    border-bottom-color: var(--primaryColor);
}

.top-solution_bird {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-services-title{
  margin-bottom:48px;
}

/* solution it partner style */
.solution-page_partner_container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-page_partner_section {
    position: relative;
    min-height: 500px;
}

.solution-page_partner_inner {
    /* height: 850px; */
}

.solution-page_partner_heading {
    /* padding-top: 60px; */
    color: var(--secondaryColor);
}

.solution-page_partner_subtitle {
    margin: 0;
    font-size: var(--font-18);
    line-height: 160%;
    font-weight: 500;
}

.solution-page_partner_title {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-48);
    line-height: 120%;
    font-weight: 700;
}

.solution-page_partner_description {
    margin-top: 20px;
}

.solution-page_partner_description p{
   
}

.solution-page_partner_description_text {
    margin: 0;
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
}

.solution-page_roadmap {
    width: 100%;
    padding-top: 20px;
}

.solution-page_roadmap_image {
    z-index: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.solution-page_roadmap_labels_wrap {
    max-width: 1150px;
}

.solution-page_roadmap_labels {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    color: var(--secondaryColor);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 700;
}

.solution-page_roadmap_label {
    width: 280px;
    text-align: center;
}

/* solution keyword style */
.solution-page_keyword_bg {
    width: 100vw;
    margin: 125px 0;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 60px 0;
    background-color: #f1f8ff;
    max-width: none !important;
}

.solution-page_keyword_section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-page_keyword_heading {
    width: 100%;
    max-width: 30%;
    color: var(--secondaryColor);
}

.solution-page_keyword_subtitle {
    margin: 0;
    font-size: var(--font-18);
    line-height: 160%;
    font-weight: 500;
}

.solution-page_keyword_title {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-48);
    line-height: 120%;
    font-weight: 700;
}

.solution-page_keyword_birds {
    width: auto;
    height: 120px;
    margin: 60px 0 0 40px;
    img{
      height:100%;
      width:auto;
    }
}

.solution-page_keyword_venn {
    width: 100%;
    max-width: 65%;
    height: auto;
    object-fit: contain;
}

/* solution list style */
.top-solution_list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top-solution_item {
    display: flex;
    flex-direction: column;
}

.top-solution_item:last-child .top-solution_item_link {
    margin-bottom: 0;
}

.solution_method_wrap {
    display:flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.solution_method_wrap:last-child{
    margin-bottom: 0px;
}

.solution_method_detail ul{
    margin-left: 1rem;
    display: flex;
    gap: 5px;
    flex-direction: column;
    li{
      position: relative;
      padding-left: 25px;
    }
    li::before{
      content: "―";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
    }
}

.top-solution_item_link{
    display: flex;
    align-items: flex-end;
}

/* topCase style */
.top-case_wrapper {
    position: relative;
    max-width: 1200px;
    margin: 120px auto 0;
}

.top-case_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    color: var(--secondaryColor);
}

.top-case_link {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--secondaryColor);
    text-decoration: none;
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    margin-left: auto;
}

.top-case_link_text {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.top-case_link:hover .top-case_link_text {
    border-bottom-color: var(--primaryColor);
}

.top-case_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.top-case_bird {
    position: absolute;
    top: 0;
    /*left: 447px;*/
    left:45%;
    width: auto;
    height: auto;
}

/* news style */
.top-news_wrapper {
    position: relative;
    max-width: 1200px;
    margin: 84px auto 0;
    color: var(--secondaryColor);
}

.top-news_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: last baseline;
}

.top-news_link {
    display: block;
    width: fit-content;
    text-decoration: none;
    margin-left: auto;
}

.top-news_link_inner {
    display: flex;
    gap: 20px;
}

.top-news_link_text {
    margin: 0;
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.top-news_link:hover .top-news_link_text {
    border-bottom-color: var(--primaryColor);
}

.top-news_list {
    margin-top: 74px;
    margin-bottom: 112px;
}

.top-news_item {
    display: flex;
    gap: 20px;
    padding-bottom: 37px;
}

.top-news_item_link {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-decoration: none;
}

.top-news_item_time {
    margin: 0;
    color: var(--textColor);
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
}

.top-news_item_detail {
    display: inline-block;
    margin: 0 0 30px;
    padding: 0 10px;
    color: var(--textColor);
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease-out;
}

.top-news_item_link:hover .top-news_item_detail {
    color: var(--primaryColor);
    border-bottom-color: var(--primaryColor);
}

.top-news_bird {
    position: absolute;
    right: 0;
    bottom: -40%;
    z-index: 10;
    width: auto;
    height: auto;
}

@media (max-width: 1280px) {
    .top-news_bird {
        width: 320px;
    }

    .top-solution_wrapper,
    .top-case_wrapper,
    .top-news_wrapper {
        margin: 120px 30px 0;
    }

    .solution-page_keyword_bg {
        justify-content: space-evenly;
        padding: 60px 30px;
    }
}

@media (max-width: 1024px) {
    .top-case_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .company-info_bird_secondary{
      top: 4%;
      right:0;
      width: 80px;
    }
}

@media (max-width: 768px) {
    /* font size */
    .top-hero_counter,
    .top-solution_description,
    .solution-page_partner_description_text,
    .solution-page_partner_subtitle,
    .solution-page_keyword_subtitle,
    .solution-page_roadmap_labels,
    .top-news_item_time,
    .top-news_item_detail {
        font-size: var(--font-14);
    }

    .top-hero_cta_btn,
    .company-info_text,
    .top-solution_header_link_text,
    .top-solution_item_link_text,
    .top-case_link_text,
    .top-news_link_text {
        font-size: var(--font-16);
    }

    .top-hero_heading {
        font-size:  var(--font-18);
    }

    .solution-caption_heading_band .solution-caption_heading {
        font-size: var(--font-20);
    }

    .company-info_heading,
    .solution-page_partner_title,
    .solution-page_keyword_title {
        font-size: var(--font-24);
    }

    .top-hero_line {
        font-size: var(--font-28);
    }

    .top-hero_line_initial {
        font-size: var(--font-40);
    }

    /* main visual style */
    .top-hero_wrapper {
        padding: 0 15px;
    }        

    .top-hero_content {
        width:100%;
        margin: 250px 0 0;
    }    

    .top-hero_slide {
        width: 90%;
    }

    .top-hero_dashboard {
        right: 15px;
        width: 30%;
        margin-top: 180px;
    }

    .top-hero_counter {
        right: 15px;
        margin: 335px 0 0;
    }

    .top-hero_heading_block {
        margin: 10px 0 20px;
    }

    .no-brank {
        display: none;
    }
    .top-hero_cta_wrapper{
        width:100%;
    }
    .top-hero_cta_btn {
        /*width: 345px;*/
        width:100%;
        padding: 10px 0;
    }

    .top-hero_bird {
        width: 20%;
        margin-top: 130px;
        margin-left: 0px;
    }

    /* company info style */
    .company-info_wrapper {
        height: 600px;
        margin-top: 120px;
        padding: 0 15px;
    }

    .company-info_inner {
        padding-top: 40px;
    }

    .company-info_heading {
        /*width: 80%;*/
        width: 100%;
    }

    .company-info_bird_primary {
        width: 100px;
        top: -65px;
        left: 5%;
    }

    /* section wrapper style */
    .top-solution_wrapper, .top-case_wrapper, .top-news_wrapper {
        margin: 100px 15px 0;
    }

    .top-solution_wrapper {
        margin-top: 60px;
    }

    .top-case_wrapper {
        margin-top: 160px;
    }
    
    /* solution style */
    .solution-page_partner_section {
        min-height: auto;
    }

    .top-solution_header {
        padding-bottom: 30px;
    }

    .top-solution_intro {
        gap: 10px;
        width:100%;
    }

    .top-solution_bird {
        display: none;
    }
    .top-solution_description_wrap p,
    .solution-page_partner_description p{
        font-size:var(--font-14);
    }

    .solution-page_partner_description {
        margin-top: 10px;
    }

    .solution-page_roadmap {
        padding-top: 15px;
    }
    
    .solution-page_keyword_bg {
        margin: 60px 0;
        padding: 40px 15px;
    }

    .solution-page_keyword_section {
        flex-direction: column;
        gap: 40px;
    }

    .solution-page_keyword_heading {
        position: relative;
        max-width: 100%;
    }

    .solution-page_keyword_birds {
        position: absolute;
        top: 0;
        right: 0;
        height: 60px;
        margin: 0;
    }

    .solution-page_keyword_venn {
        max-width: 80%;
    }

    /* solution caption style */
    .solution-caption_image {
        width: 100%;
        max-height: 100px;
    }

    .top-solution_item_link_inner {
        gap: 10px;
    }

    .top-solution_item_link {
        margin-bottom: 20px;
    }

    .solution_method_wrap {
        display:block;
        margin-bottom: 20px;
    }
    .solution_method_detail ul{
        margin-bottom:10px;
        font-size: var(--font-14);
    }

    /* case style */
    .top-case_header {
        margin-bottom: 35px;
    }

    .top-case_link {
        gap: 10px;
    }

    .top-case_grid {
        grid-template-columns: 1fr;
    }    

    .top-case_bird {
        max-width: 30%;
        top: -3%;
        /*left: 50%;*/
    }    

    /* news style */
    .top-news_link_inner {
        gap: 10px;
    }

    .top-news_list {
        margin: 30px 0 100px;
    }

    .top-news_item_link {
        gap: 0;
    }

    .top-news_item {
        padding-bottom: 0;
    }

    .top-news_item_detail {
        padding-left: 0;
    }

    .top-news_bird {
        right: 0%;
        bottom: -58%;
        width: 200px;
    }
}

@media (max-width: 428px) {
    .company-info_bird_primary {
        top: -20%;
    }

    .company-info_bird_secondary {
        display: none;
        /* width: 80px;
        top: 0;
        right: 0; */
    }

    .solution-page_keyword_venn {
        max-width: 100%;
    }

    .top-case_bird {
        top: -8%;
        left: 65%;
    }

    .top-news_bird {
        bottom: -38%;
        width: 160px;
    }
}