/* メインビジュアル */
.main_visual{
    height: 700px;
}
#head_wrap{
        /* グラデーションの色設定 */
            background: linear-gradient(-45deg, #E9F4EE, #ffffff, #F0F8FF, #ffffff);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
            display: table;
}
        /* 背景がゆっくり動くアニメーション */
        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
/*************************/
/*Ckipとキャッチコピー*/
/*************************/
        .slideshow-container {
            width: 1200px;
            z-index: 500;
            margin: 0 auto;
            position: relative;
        }

        .slideshow-container .slide {
            display: none;
        }

        /* 画像：初期状態は透明で少し小さい */
        .slideshow-container img {
            position: absolute;
            left: 0;
            right: -300px;
            margin: 0 auto;
            opacity: 0;
            transform: scale(0.6);
            z-index: 500;
            max-width:50vw;
        }

        /* 画像：表示された時に跳ねる（バウンス） */
        .slideshow-container .slide[style*="display: block"] img {
            animation: bounce-in 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .caption-container {
            display: inline-block;
            text-align: left;
            position: absolute;
            top:10vh;
            left: 698px;
            margin: 0 auto;
            z-index: 700;
            transform: translateX(-130%); 
            width: 480px;
        }

        .caption {
            font-size: 2.9rem;
            letter-spacing: 0.1em;
            padding-bottom: 8px;
            opacity: 0;
            font-family: "Noto Sans JP", sans-serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
            line-height: 60px;
            text-shadow:
            2px 2px 0 #fff,
            -2px 2px 0 #fff,
            -2px -2px 0 #fff,
            2px -2px 0 #fff;
        }
        .caption_mini{
            font-size: 1.8rem;
        }

        /* テキスト：画像から少し遅れてフェードイン */
        .slideshow-container .slide[style*="display: block"] .caption {
            animation: fade-in 0.6s ease-out forwards 0.5s;
        }

        /* アンダーライン：左から右へ伸びる */
        .underline {
            height: 4px;
            background-color: #14A0DC;
            width: 100%;
            transform: scaleX(0);
            transform-origin: left;
            border-radius: 2px;
            display: table;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.918);
        }

        .slideshow-container .slide[style*="display: block"] .underline {
            animation: line-slide-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.0s;
        }

        /* 各種キーフレームアニメーション */
        @keyframes bounce-in {
            0% { opacity: 0; transform: scale(0.6); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes fade-in {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes line-slide-in {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

/*************************/
/*斜め上に写真がスライド*/
/*************************/
.slider-container_wrap {
    overflow: hidden;
    height: 100%;
    position: relative;
    width: 100%; 
}

.slider-container {
  z-index: 100;
  position: absolute;
  display: block; 
  
  /* ★重要：親の幅を「無限」にする */
  width: auto; 
  min-width: 10000px; /* 非常に大きな値を設定して、絶対に親が狭まらないようにする */
  top: -50%;
  transform: rotate(-8deg);
  pointer-events: none; 
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;    
  width: max-content;   
  gap: 20px;
  animation: scroll-diagonal-right 35s linear infinite;
}

.row img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
}

@keyframes scroll-diagonal-right {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0);
    }
}

/* メイン */
h1{
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400!important;
    font-style: normal;
    font-size: 2.2rem!important;
}
h2{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700!important;
  font-style: normal;
}
.subtitle{
    color: #29A7E1;
    font-weight: bold;
}
.subtitle::before {
    content: "";
    width: 0.6em;
    height: 0.6em;
    background: #29A7E1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.text-massage{
    display: inline-block;
    margin: 10px auto;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
}
/*****************************************
 Ckipについて
******************************************/
.concept-wrap{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.concept-sp{
    display: none;
}

.concept{
    margin: 110px 0px 50px;

}
.concept-r{
    margin-left: 120px;
}
.concept-r h1{
    text-align: left;
}
.concept-r h2{
    margin: 30px 0;
}

/*Ckipとは画像*/

/* コンテナ */
.pulsing-container {
  position: relative;
  width: 450px;  /* 画像のサイズに合わせて調整してください */
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.base-ball {
  width: 100%;
  height: auto;
  z-index: 2; 
}

/* 背後の点滅エフェクト */
.pulsing-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d1edff;
  border-radius: 50%;
  z-index: 1; 
  animation: pulse-animation 3s infinite ease-out;
}

/* アニメーションの定義 */
@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4); /* 外側に広がる大きさ */
    opacity: 0;           /* 徐々に消える */
  }
}

/* 真ん中ロゴ */
.concept-ckip{
    position: absolute;
    z-index: 10;
    border-radius: 50%;
    background: #ffffff;
    width: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#29A7E1;
    font-weight: bold;
     box-shadow: 0 0 15px #B8E1F4;
}
.concept-ckip img{
    width: 137px;
}
.concept-name{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700 !important;
    font-style: normal;
    font-size: 1.15rem;
    margin-top: 13px;
    line-height: 22px;
    text-align: center;
}
.concept .cycle{
    border-radius: 50%;
    background: #ffffff;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#203744;
    font-weight: bold;
     box-shadow: 0 0 15px #eeeeee;
}
.concept-netapp{
    position: absolute;
    top: -25px;
    left: 0px;
    z-index: 20;
}
.concept-netapp img{
    width: 70px;
}
.concept-rec{
    position: absolute;
    right: -60px;
    top: 35px;
    z-index: 20;
}
.concept-rec img{
    width: 98px;
    padding-left: 23px;
}
.concept-guide{
    position: absolute;
    left: -45px;
    z-index: 20;
    bottom: 4px;
}
.concept-guide img{
    width: 55px;
}
.concept-spass{
    position: absolute;
    right: -5px;
    z-index: 20;
    bottom: -27px;
}
.concept-spass img{
    width: 65px;
}
/*****************************************
 全体概要
******************************************/
.our-services{
    text-align: center;
    background-color: #F9F6F4;
    display:table;
    padding: 70px 0px;
    margin-top: 90px;
    width: 100%;
}
.renkei-zu{
    width: 1200px;
    margin: 30px auto 20px;
    background: #ffffff;
    padding: 30px;
}
.renkei-zu .logo{
    width: 90px;
    margin-right: 15px;
}
.renkei-zu h2{
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    align-items: center;
}
.our-services .our-services-wrap{
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 40px;
    margin: 0 auto;
    max-width: 1000px;
}
.our-services .our-services-wrap section {
    padding: 20px 35px;
    background: #fff;
    box-shadow: -1px -1px 12px #e9ecef;
    border-radius: 1.5rem;
    text-align: left;
}
.our-services .our-services-wrap section h2{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700 !important;
    font-style: normal;
   font-size: 1.3rem;
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   margin-bottom: 15px;
   text-decoration: none;
}
.our-services .our-services-wrap section h2 a{
    text-decoration: none;
}

.our-services .our-services-wrap section:nth-child(1) h2,
.our-services .our-services-wrap section:nth-child(1) h2 a{
   color: #2C5CA9;
}
.our-services .our-services-wrap section:nth-child(2) h2,
.our-services .our-services-wrap section:nth-child(2) h2 a{
   color: #253872;
}
.our-services .our-services-wrap section:nth-child(3) h2,
.our-services .our-services-wrap section:nth-child(3) h2 a{
   color:#F4A01A;
}
.our-services .our-services-wrap section:nth-child(4) h2,
.our-services .our-services-wrap section:nth-child(4) h2 a{
   color:#EF958A;
}
.our-services .our-services-wrap section:nth-child(1) img{
   width: 65px;
   margin-top: 15px;
}
.our-services .our-services-wrap section:nth-child(2) img{
   width: 62px;
}
.our-services .our-services-wrap section:nth-child(3) img{
   width: 52px;
}
.our-services .our-services-wrap section:nth-child(4) img{
   width: 60px;
}

.our-services .our-services-wrap section .circle-btn{
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    transition: all 0.2s ease; 
  box-shadow: 0 4px 0 #e4dfdf; 
}
.our-services .our-services-wrap section .circle-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #e4dfdf; 
}
.our-services .our-services-wrap section .circle-btn:active {
  transform: translateY(4px);
  box-shadow:0 4px 0 #e4dfdf;
}
.our-services .our-services-wrap section .circle-btn img{
    width: 15px;
}
.our-services .our-services-wrap section:nth-child(1) .circle-btn img{
   margin-top: 0px;
}

.our-services .our-services-wrap section:nth-child(1) .circle-btn{
    background-color:#2C5CA9;
}
.our-services .our-services-wrap section:nth-child(2) .circle-btn{
    background-color:#253872;
    margin-top: 37px;
}
.our-services .our-services-wrap section:nth-child(3) .circle-btn{
    background-color:#F4A01A;
}
.our-services .our-services-wrap section:nth-child(4) .circle-btn{
    background-color:#EF958A;
}



.top-renkei-img{
    position: relative;
    margin: 30px 0px 10px;
    display: block;
}
.top-renkei-img .top-renkei-zu{
    width: 90%;
}
.top-renkei-img ul.top-renkei-txt{
    position:absolute;
    margin: 0px;
    padding: 0px;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
}
.top-renkei-img ul.top-renkei-txt li{
    list-style: none;
    line-height: 21px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(1),
.top-renkei-img ul.top-renkei-txt li:nth-child(2),
.top-renkei-img ul.top-renkei-txt li:nth-child(3),
.top-renkei-img ul.top-renkei-txt li:nth-child(4),
.top-renkei-img ul.top-renkei-txt li:nth-child(5){
    color: #ffffff;
    position:absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500 !important;
    font-style: normal;
    font-size: 1.3rem;
    top: 25px;
    letter-spacing: 2px;
}

.top-renkei-img ul.top-renkei-txt li:nth-child(1){
    left: 104px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(2){
    left: 340px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(3){
    left: 512px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(4){
    right: 330px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(5){
    right: 118px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(6),
.top-renkei-img ul.top-renkei-txt li:nth-child(7),
.top-renkei-img ul.top-renkei-txt li:nth-child(8),
.top-renkei-img ul.top-renkei-txt li:nth-child(9){
    position:absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600 !important;
    font-style: normal;
    font-size: 1.05rem;
    top: 97px;
    display: flex;
    align-items: center;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(6){
    left: 79px;
    color: #EB9B21;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(6) img{
    width: 41px;
    margin-right: 12px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(7){
    color: #2557A6;
    left: 265px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(7) img{
    width: 51px;
    margin-right: 7px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(8){
    left: 464px;
    top: 92px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(8) img{
    width: 48px;
    margin-right: 3px;
}

.top-renkei-img ul.top-renkei-txt li:nth-child(9){
    color: #2557A6;
    right: 180px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(9) img{
    width: 53px;
    margin-right: 12px;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(10){
    position:absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600 !important;
    font-style: normal;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    right: 170px;
    top: 180px;
    background: #fff;
    padding: 8px 42px 10px 30px;
    color: #F08E8B;
}
.top-renkei-img ul.top-renkei-txt li:nth-child(10) img{
    width: 46px;
    margin-right: 11px;
}
.top-renkei-img-tb{
    display: none;
}
.top-renkei-img-tb img{
    width: 100%;
}
.top-renkei-img-sp{
    display: none;
}

/*****************************************
 実績
******************************************/

.case-study{
    text-align: center;
    display: block;
    padding: 90px 0px 60px;
}
.digital-info{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.digital-info ul{
    margin: 0px 30px;
    padding: 0px;
}
.digital-info li{
    list-style: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600 !important;
    font-style: normal;
}
.digital-info li:nth-child(1){
        font-size: 1.1rem;

}
.digital-info li:nth-child(2){
        font-size: 1.3rem;
    
}
.digital-info li:nth-child(3){
        font-size: 1rem;
        font-weight: 400 !important;
    
}
.digital-info-mini{
    font-size: 0.9rem;
    margin-top: 30px;
}
.top-jisseki{
    margin-top: 30px;
}
.top-jisseki h2{
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.top-jisseki-wrap{
    display: flex;
    justify-content: center;
}
.stats-group h3 {
    color: #ffff !important;
    border-radius: 0 0 15px 15px;
    padding: 8px 20px;
    margin: 0 auto;
    width: fit-content;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem !important;
}
.stats-group h3.netapp{
    background: #2759A7;
    width: 60%;
}
.stats-group h3.guide{
    background: #EB9B21;
    width: 80%;
}
.stats-group h3.rec{
    background: #1B2853;
    width: 40%;
}
.stats-group .logo img{
    height: 50px;
}

.case-study .stats-group {
    background: #fff;
    box-shadow: -1px 2px 12px rgb(27 41 84 / 19%);
    border-radius: 1rem;
    margin: 0 20px;
}
.case-study .stat {
    display: flex;
    align-items: center;
    padding-top: 25px;
}
.case-study dd {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    font-weight: bold;
}
.case-study dd span{
    display: block;
}
.case-study .stats-group span {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem !important;
    text-align: left;
}
.case-study b {
    margin-right: 10px;
    font-size: 3rem;
    font-weight: bold;
    color: #2da0df;
    line-height: 1;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.stats-group-rec{
    width: 930px;
    margin: 30px auto 10px!important;
    padding-bottom: 35px;
}
.stats-group-rec .stat{
    width: 80%;
    margin: 0 auto!important;
}
.stats-group-rec img{
    width: 65px;
}
.stats-group-guide{
    width: 290px;
}
.stats-group-guide .stat{
    width: 80%;
    margin: 0 auto!important;
}

.stats-group-netapp{
    width: 600px;
    padding: 0 0px 20px 40px;
}
.top-jisseki-date{
    width: 930px;
    font-size: 0.8rem;
    text-align: right;
    margin: 0 auto;
}
.top-jisseki-assessment{
    display: flex;
    width: 1200px;
    margin: 90px auto 50px;
}
.top-jisseki-assessment img{
    width: 340px;
    margin-right: 60px;
}
.assessment-wrap{
    text-align: left;
    padding-right: 30px;
}
.assessment-name{
    display: flex;
    align-items: end;
    color: #1B2853;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
}
.assessment-name img{
    width: 30px!important;
    margin-right: 10px!important;
}
.assessment-wrap h2{
    color: #1B2853;
    margin-bottom: 20px;
}
.assessment-btn{
    display: table;
    border: solid 1px #1B2853;
    border-radius: 30px;
    color: #1B2853;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease; 
    box-shadow: 0 4px 0 #e4dfdf;
    width: 300px;
}
.assessment-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #e4dfdf; 
}
.assessment-btn:active {
  transform: translateY(4px);
  box-shadow:0 4px 0 #e4dfdf;
}

.assessment-btn .circle-btn {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 43px;
    height: 43px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    background-color: #1B2853;
    margin: 0px;
}
.assessment-btn .circle-btn img {
    width: 15px;
    margin: 0px;
}
.assessment-btn a{
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    color: #1B2853;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500 !important;
    font-style: normal;
    font-size: 1.3rem !important;
    border-radius: 30px;
}
.assessment-btn a:hover{
  color: #1B2853;
}

/*****************************************
サポート体制
******************************************/
.top-support{
    background: #F0F8FF;
    width: 100%;
    text-align: center;
    display:table;
    padding: 100px 0px;
}
.top-support-wrap{
    width: 1200px;
    margin: 0 auto;
}
.top-support ul{
    margin: 50px auto 20px;
    padding: 0;
    display: flex;
    width: 85%;
    flex-wrap: nowrap;
}
.top-support ul li{
    background: #ffffff;
    border-radius: 15px;
    position: relative;
    list-style: none;
    width: calc(100% / 3);
    margin: 0 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding: 30px;
}
.top-support img{
    display: block;
    margin: 0 auto;
}
.support-no{
    width: 46px;
    height: 46px;
    background: #29A7E1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     position: absolute;
    top: -20px;
    left: 33px;
    font-size: 1.5rem;
}


/*****************************************
 万全のセキュリティ
******************************************/
.top-security{
    text-align: center;
    margin: 80px auto;
    width: 1200px;
    display: block;
}
.top-security ul.top-security-tokkyo{
    display: flex;
    margin: 30px 0px;
    padding: 0px;
}
.top-security ul.top-security-tokkyo li{
    list-style: none;
    border: solid 2px #1B2853;
    position: relative;
    width: calc(100% / 2);
    margin: 0 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding: 48px 0 20px 0;
    font-size: 1.3rem;
}
.top-security ul.top-security-tokkyo li .midashi{
    font-size: 1.1rem;
}
.patent-badge {
    padding: 0 !important;
    position: absolute;
    top: 8px;
    left: -22px;
    height: 34px;
    background: #ffea00 !important;
    border-radius: unset !important;
    z-index: 2;
}

.patent-badge::before {
    content: "独自手法の特許取得済み";
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 32px;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
.patent-badge .fold {
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 26px solid #ff9900;
    border-left: 20px solid transparent;
}
.patent-badge::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 18px solid #ffea00;
}
.top-security-wrap{
    display: flex;
    align-items: flex-start;
}
ul.security-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    align-items: center;
    width: 500px;
}
ul.security-list li{
    list-style: none;
    margin: 5px;
    width: 230px;
    background-color: #172577;
    color: #ffffff;
    padding: 15px 0px;
}
ul.security-list li:nth-child(1),
ul.security-list li:nth-child(4),
ul.security-list li:nth-child(5) {
        background-color: #28599C;
        
}
.top-security-ninsho{
    text-align: left;
}
.top-security-ninsho h3{
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500 !important;
    font-style: normal;
    font-size: 1.6rem !important;
}
.top-security-ninsho h3 img{
    width: 38px;
    margin-right: 16px;
}
.top-security-ninsho ul{
    margin: 0px;
    padding: 0px;
}
.top-security-ninsho ul li{
    list-style: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.top-security-ninsho .security_logo{
    margin-top: 10px;
}

/*****************************************
 関連サイト
******************************************/

.lp-link{
    text-align: center;
    display: block;
    margin-top: 130px;
}
.lp-link h2{
    font-size: 1.3rem;
    border-bottom: solid 3px #29A7E1;
    padding-bottom: 7px;
    display: table;
    margin: 0 auto 25px;
}
.lp-link h2 img{
    width: 70px;
    margin-right: 7px;
}
.lp-link ul.banner{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-link ul.banner li{
    width: 300px;
    list-style: none;
    margin: 0 10px;
}
.lp-link ul.banner li img{
    width: 300px;
    margin: 5px 0px;
}


/*****************************************
 お知らせ
******************************************/
.top-news{
    width: 100%;
    display: table;
    background-color: #F5F5F5;
    margin: 80px 0;
    padding: 60px 0px;
}
.top-news-wrap{
    width: 1200px;
    margin: 0 auto;
    display: flex;
}
ul.news-list{
    margin: 0px 0px 0px 50px;
    padding: 0px;
    width: 70%;
}
ul.news-list li{
    list-style: none;
    background-color: #ffffff;
    padding: 20px 30px;
    margin: 0px 0px 20px;
}
.news-category{
    list-style: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #ffffff;
    margin-left: 10px;
    padding: 0px 13px 2px;
    font-size: 0.9rem;
}
.c-oshirase{/*お知らせ*/
    background-color: #29A7E1;
}
.c-release{/*プレスリリース*/
    background-color: #009999;
}
.c-update{/*機能アップデート*/
    background-color: #DC5899;
}
ul.news-list li a{
    color: #203744;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    display: table;
}

/*****************************************
 他システムリンク
******************************************/
.system-link h2{
    list-style: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-size: 1.3rem;
    margin: 0 20px;
}
.system-link ul{
    margin: 33px 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
}
.system-link ul li{
    list-style: none;
    list-style: none;
    margin: 0 20px 0;
}
.system-link ul li img{
    width: 500px;
}
.system-link ul li h3{
    color: #19509D;
    border-bottom: solid 1px;
    padding-bottom: 5px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600 !important;
}

/************************
　　　PC版調整
*************************/

.br-no{
    display:block;
}
.br-yes{
    display: none;
}

/************************
　　　タブレット
*************************/

/*1024p以下で背景が黄色に　タブレット*/
@media screen and (max-width: 1024px) {
.br-no{
    display:block;
}
.br-yes{
    display:block;
}

.caption-container{
    left: 725px;
    width: 500px;
}
.slideshow-container{
    width: 100%;
}
.slideshow-container img{
    top: 115px;
    left: 330px;
    right:auto;
}
.main_visual {
    height: 500px;
}
.slider-container {
    top: -90%;
}

.concept-wrap{
    width: 90%;
    flex-direction: column;
}
.concept-r {
    margin-left: 0px;
}
.renkei-zu{
    width: 100%;
    padding: 30px 10px;
}
.our-services {
    padding: 70px 15px;
}
.our-services .our-services-wrap {
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 30px;
    max-width: 95%;
}
.stats-group-netapp {
    width: auto;
    padding: 0 20px 20px 30px;
}
.stats-group-guide {
    width: auto;
}
.stats-group .logo img {
    height: 45px;
    margin-right: 15px;
}
.case-study{
    padding: 90px 15px 60px;
}
.case-study b {
    margin-right: 0px;
}
.stats-group-rec{
    width: auto;
    display: table;
}
.stats-group h3{
    display: table;
}
.case-study dd,
.top-jisseki-date,
.stats-group h3.rec,
.stats-group h3.netapp{
    width: auto;
}
.top-jisseki-assessment {
    width: 95%;
    align-items: center;
}
.top-jisseki-assessment img {
    width: 30%;
    margin-right: 20px;
}
.top-support ul{
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 0px;
}
.top-support ul li{
    width: 45%;
    margin-top: 40px;
}
.top-support-wrap {
    width: 95%;
}
.top-security{
    width: auto;
}
.top-security-wrap{
    display: block;
}
ul.security-list {
    width: 85%;
    justify-content: center;
    margin: 0 auto;
}
.top-security-ninsho{
    width: auto;
    margin: 25px auto 0px;
    display: table;
    padding: 0 20px;
}
.top-security ul.top-security-tokkyo li{
    padding: 48px 5px 20px 5px;
}
.top-news-wrap{
    width: 95%;
}
.system-link ul{
    flex-direction: column;
    width: 500px;
    margin: 33px auto;
}
.system-link ul li{
    margin: 0px 0 30px;
}
.top-renkei-img{
    display: none;
}
.top-renkei-img-tb{
    display: block;
}

.concept-sp,
.top-renkei-img-sp{
    display: none;
}
.top-security ul.top-security-tokkyo{
    padding: 0px 10px;
}


}/* ←@mediaタブレット終わり */




/************************
　　　スマホ
*************************/

/*599px以下で背景色がピンクに スマホ*/
@media screen and (max-width: 599px) {
    .caption {
        font-size: 1.8rem;
        line-height: 37px;
    }
    .concept-name {
         font-size: 1rem;
         margin-top: 5px;
    }
    .caption-container {
        left: 441px;
        width: 320px;
        top:10vh;
    }
    .slideshow-container img {
         top: 15px;
        left: 127px;
        right: 0;
    }
    .concept .cycle{
        width: 150px;
        height: 150px;
    }
    .base-ball{
        width: 96%;
    }
    .pulsing-container::after{
        width: 96%;
    }
    .concept-ckip {
        width: 210px;
        height: 210px;
    }
    .concept-netapp {
    top: 20px;
    left: 34px;
    }
    .concept-rec {
    right: 23px;
    top: 52px;
    }
    .concept-guide {
    left: 35px;
    bottom: 29px;
    }
    .concept-spass {
    right: 47px;
    bottom: 6px;
    }
    .top-renkei-img-tb{
     display: none;
    }
    .top-renkei-img-sp{
     display: block;
     margin-top: 20px;
    }
    .stats-group-guide .stat{
      justify-content: center; 
      padding-bottom: 10px;
    }
    .digital-info-mini{
        text-align: left;
    }
    .top-jisseki-wrap {
    flex-direction: column;
    }
    .case-study .stats-group {
    margin: 10px 20px!important;
    padding-bottom: 0px;
    }
    .stats-group-rec{
        margin: 10px 20px;
    }
    .top-jisseki-assessment{
        flex-direction: column-reverse;
    }
    .top-jisseki-assessment img{
        width: 80%;
        margin: 30px auto 0px;
    }
    .assessment-btn{
        margin: 20px auto 0px;
    }
    .assessment-name img{
        margin: 0px;
    }
    .top-support ul{
        flex-direction: column;
    }
    .top-support ul li{
        width: 80%;
        margin: 20px auto;
    }
    .text-massage{
        margin-bottom: 20px;
    }
    .top-security{
        margin: 80px 15px 0px;
    }
    .lp-link ul.banner{
        margin: 0 auto;
        display: table;
    }
    .lp-link ul.banner li{
        margin: 10px 10px;
    }
    .top-security ul.top-security-tokkyo{
        flex-direction: column;
        margin-bottom: 0px;
    }
    .top-security ul.top-security-tokkyo li{
        width: 80%;
        margin: 10px auto 20px;
    }
    ul.security-list{
        flex-direction: row;
        align-items: stretch;
    }
     ul.security-list li{
        width: calc(90% / 2);
     }
    .top-news-wrap {
        flex-direction: column;
    }
    ul.news-list {
    margin: 0 auto;
    padding: 0px;
    width: 90%;
    }
    .system-link ul li img {
    width: 90%;
    }
    .system-link ul li{
    margin: 0px 0px 30px;    
    }
    .system-link ul{
        width: 90%;
    }
    .pulsing-container::after{
        display: none;
    }
    .top-security-ninsho{
        width: 85%;
        padding: 0;
    }
    .concept{
        display: none;
    }
    .concept-sp{
        display: block;
        width: 95%;
        margin: 10px auto 20px;
    }
    .concept-sp img{
        width: 100%;
    }
    .concept-wrap{
        width: 100%;
    }
    .concept-r {
        margin: 0 auto;
        width: 90%;
    }
    .assessment-wrap{
    text-align: left;
    padding-right: 0px;
    }
}/* ←@mediaスマホ終わり */