@charset "utf-8";
/* CSS Document */
@media screen and (max-width:1280px) {}

@media screen and (max-width:960px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:480px) {}

@media screen and (max-width:380px) {}

/**********************************/
@media screen and (max-width:768px) {
  .sp {
    display: none;
  }

  h2 {
    font-size: 4.5rem;
  }


}

/**********************************　
headerハンバーガーメニュー設定
************************************/
@media screen and (max-width:960px) {
  #header .header-pc {
    display: none;
  }

  #header .header-sp {
    display: block;
  }

  /*****/

  .hamburger-grid {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .hamburger-grid__dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
  }

  .hamburger-grid__dot {
    width: 100%;
    height: 100%;
    background-color: #0e0e0e;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .hamburger-grid.active .hamburger-grid__dot {
    background-color: #f0f0f0;
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
    transform: scale(0);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
    transform: translateY(8px);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
    transform: scale(0);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
    transform: translateX(8px);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
    transform: scale(1.2);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
    transform: translateX(-8px);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
    transform: scale(0);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
    transform: translateY(-8px);
  }

  .hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
    transform: scale(0);
  }

  /**** menu *****/
  .nav-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0e0e0e;
    /* background-color: #1a1a1a; */
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }

  .nav-grid.active {
    visibility: visible;
    opacity: 1;
  }

  .nav-grid__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .nav-grid__sections {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .nav-grid__section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-grid.active .nav-grid__section {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-grid.active .nav-grid__section:nth-child(1) {
    transition-delay: 0.2s;
  }

  .nav-grid.active .nav-grid__section:nth-child(2) {
    transition-delay: 0.3s;
  }

  .nav-grid__title {
    margin: 0 50px 20px;
    color: #f0f0f0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Kaku Gothic New';
  }

  /* menu 枠 */
  .nav-grid__list {
    margin: 0 0 50px 0;
    /* menu位置 */
    padding: 0 80px;
    list-style: none;
  }

  .nav-grid__list li {
    margin-bottom: 15px;
    overflow: hidden;
  }

  .nav-grid__link {
    display: inline-block;
    font-size: 0.9rem;
    text-decoration: none;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      color 0.3s ease;
  }

  /*menuテキストカラー  */
  .nav-grid.active .nav-grid__link {
    transform: translateY(0);
    color: #f0f0f0;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Kaku Gothic New';

  }

  #grid-menu .nav-grid__link:hover {
    color: #ccf944;
    cursor: pointer;

  }

  /* contabt-btn */
  #grid-menu .btn {
    margin-left: 30px;
    width: 30%;
    display: inline-block;
    background: #ccf944;
    border-radius: 50px 50px;
    padding: 10px 15px;
    color: #0c0c0c;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }

  @media screen and (max-width:960px) {
    #grid-menu .btn {
      width: 40%;
    }
  }

  #grid-menu .btn p {
    font-weight: bold;
    text-align: center;
  }

  #grid-menu .btn:hover {
    background: #cccccb;
    cursor: pointer;
  }

  /* クエリ閉じ */
}

@media (max-width: 768px) {
  .nav-grid__content {
    padding: 80px 20px;
  }

  .nav-grid__sections {
    grid-template-columns: 1fr;
  }

  .nav-grid__link {
    font-size: 20px;
    color: #f0f0f0;
    font-family: 'Kaku Gothic New';
  }
}

@media (max-width: 768px) {
  .loop-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 20px;
  }
}

/***************top-main***************/

@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .section-wrapper {
    width: 100%;
  }

  /*****more ボタン*****/
  .more-button {
    padding: 30px 0;
    margin: 0;
    width: 250px;
  }

  .more-text {
    margin: 50px 10px 0 0;
  }

  .circle {
    height: 120px;
    width: 120px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #333;
    box-shadow: 0 5px 0 #333;
    position: relative;
    transition: .3s;
  }

  .more-button a:hover .circle {
    border: 2px solid #ccf944;
    background-color: #ccf944;
    box-shadow: none;
    transform: translateY(5px);
  }

  .polygon {
    width: 15px;
    height: 20px;
    background-color: #333;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/**********/



/***************top-kv***************/
@media (max-width: 890px) {
  .catch-copy {
    padding-top: 30%;
  }

}

@media (max-width: 768px) {

  .sp {
    display: block;
  }

  .catch-copy {
    padding-top: 30%;
  }

  .catch-copy .catch-copy-text {
    font-size: 1.6rem;
    line-height: 3rem;
  }

  /*****図形*****/
  #kv .black {
    width: 10%;
    min-width: 120px;
    bottom: 80px;
    left: -13%;
  }

  #kv .gray-clear {
    width: 17%;
    min-width: 220px;
    top: -200px;
    left: -10%;
  }

  #kv .green {
    width: 13%;
    min-width: 130px;
    top: -20px;
    right: 3%;

  }

  #kv .gray {
    display: none;
    /* width: 12%;
    min-width: 150px;
    top: 80px;
    right: -5%; */
  }

  #kv .led {
    width: 12%;
    min-width: 150px;
    top: 60px;
    left: 0%;
  }

  #kv .led-clear {
    width: 11%;
    min-width: 150px;
    top: 70px;
    left: -3%;
  }

  /* 歪み円 */
  #kv .blue02 {
    bottom: 100px;
    right: -5%;
    z-index: -2;
    opacity: 0.7;

    width: 13%;
    min-width: 150px;
  }

  #kv .m-green {
    width: 15%;
    min-width: 150px;
    bottom: -100px;
    left: 30%;
  }

  /* ループアニメーション */
  .loop-area {
    padding: 6% 0 8%;
  }

  .loop-text {
    line-height: 0;
    font-size: 4rem;
    letter-spacing: 15px;
  }
}

@media (max-width: 480px) {
  .catch-copy {
    padding-top: 50%;
  }
  .catch-copy .catch-copy-text {
    font-size: 1.6rem;
  }
  /* ループアニメーション */
  .loop-area {
    padding: 10% 0 12%;
  }

  .loop-text {
    font-size: 3.5rem;
    letter-spacing: 12px;
  }
}



@media (max-width: 380px) {
  #kv {
    height: 400px;
    /* border: 3px solid #0b4cd9; */
}

#kv .kv-inner {
    height: 400px;
    /* border: 3px solid #2d97e8; */
}

  .catch-copy {
    padding-top: 30%;
  }

  .catch-copy .catch-copy-text {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
  /* ループアニメーション */
  .loop-area {
    padding: 10% 0 12%;
  }

  .loop-text {
    font-size: 3rem;
    letter-spacing: 12px;
  }

  /*****図形*****/
  #kv .black {
    width: 10%;
    min-width: 100px;
    bottom: 50px;
    left: -5%;
  }

  #kv .gray-clear {
    width: 15%;
    min-width: 180px;
    top: -210px;
    left: 0%;
  }

  #kv .green {
    width: 13%;
    min-width: 100px;
    top: -30px;
    right: 0%;

  }

  #kv .led {
    width: 12%;
    min-width: 100px;
    top: 10px;
    left: 0%;
  }

  #kv .led-clear {
    width: 10%;
    min-width: 100px;
    top: 40px;
    left: -3%;
  }

  /* 歪み円 */
  #kv .blue02 {
    bottom: 70px;
    right: -10%;
    z-index: -2;
    opacity: 0.7;

    width: 13%;
    min-width: 110px;
  }

  #kv .m-green {
    width: 15%;
    min-width: 130px;
    bottom: -100px;
    left: 30%;
  }



}

/***************top-about***************/
@media (max-width: 768px) {

  /* 図形animation */
  .about-object {
    width: 50%;
    top: 0px;
    left: -130px;
    z-index: -1
  }

  #top-about .container {
    width: 100%;
    margin-bottom: 100px;
  }

  #top-about .section-title {
    margin-bottom: 50px;
  }

  .about-text-wrapper {
    width: 80%;
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }

  #top-about .more-button .more-text {
    text-shadow: 5px 5px 5px#f0f0f0;
  }

  #top-about .more-button {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* h3:1.4rem */
  .about-text h3 {
    font-size:1.3rem ;
    line-height: 3rem;
}


  /* 図形animation */
  .about-object {
    width: 80%;
    top: 20px;
    left: -100px;
  }

}

@media (max-width: 380px) {
  /* h3:1.4rem */
  .about-text h3 {
    line-height: 2.2rem;
}



}
/***************top-service***************/
@media (max-width:890px) {
#top-service {
    padding: 0 2% ;
margin-bottom: 10%;
/* border: 3px solid #eb0909; */
}
/* 平行四辺形box*/
#top-service .content {
    width: 32%;
    height: 360px;
    padding: 2% 0 0;
}
#top-service .content:not(:first-child) {
    margin-left: 0%;
}

/**********/
#top-service .more-button {
    margin-top: 40px;
}
  
}

@media (max-width: 768px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /*********/
#top-service {
margin-bottom: 10%;
/* border: 3px solid #09eb4d; */
}

  #top-service .service-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #top-service .section-title {
    height: 40px;
    margin-bottom: 3%;
    text-align: center;
  }

  #top-service .service-title {
    /* h4: */font-size: 1.2rem;
    /* font-size: 1rem; */
  }

  #top-service .servicr-explain {
    /* p:font-size: 0.9rem; */
    /* font-size: 0.8rem; */
  }
/* 画像枠 */
#top-service .figure-wrapper {
    width: 60%;
    margin: 0 auto;
    /* border: 1px solid #000; */
}
  
/* 平行四辺形box*/
#top-service .content {
    width: 80%;
    height: 420px;
    padding: 2% 0 2%;
}

  .content-inner {
    width: 90%;
  }

  #top-service .figure-wrapper {
    width: 60%;
    padding: 10px;
    margin: 0 auto 10px;
  }

  #top-service .top-service-text {
    height: 130px;
    /* padding: 3px; */
  }

  #top-service .content:not(:last-child) {
    margin-bottom: 0px;
  }

  #top-service .content:not(:first-child) {
    margin-left: 0px;
  }

  #top-service .service-inner .n2 {
    margin: 25px auto 0;
  }

  #top-service .service-inner .n3 {
    margin: 25px auto 0;
  }

  #top-service .n4 {
    margin: 0 auto;
  }

  /* moreボタン */
  #top-service .more-button {
    transform: skewX(0deg);
  }

}

@media (max-width: 480px) {

#top-service {
}
/* 平行四辺形box*/
#top-service .content {
    width: 85%;
    height: 380px;
    padding: 2% 0 0;
}
/* 画像枠 */
#top-service .figure-wrapper {
    width: 80%;
    margin: 0 auto;
    /* border: 1px solid #000; */
}
}
@media (max-width: 380px) {
/* 平行四辺形box*/
#top-service .content {
    width: 85%;
    height: 330px;
    padding: 2% 0 0;
}
/* 画像枠 */
#top-service .figure-wrapper {
    width: 80%;
    margin: 0 auto;
    /* border: 1px solid #000; */
}
}


/***************top-works***************/
@media (max-width: 890px) {



  #top-works .works-bg {
    width: 100%;
    /* ↓contentのサイズ調整 */
    padding: 5% 5% 5% 5%;
  }

  .slider {
    margin: 0 auto 50px;
    padding: 0;
    height: auto;
  }

  #top-works .content {
  }

  #top-works .fiure-wrapper {
    width: 100%;
    max-height: 500px;
    padding: 5%;
  }

  #top-works .works-image {
    width: 100%;
  }

  #top-works .n1,
  #top-works .n3 {
    padding: 9% 5%;
  }

  #top-works .works-text-wrapper {
    padding: 5%;

    width: 100%;
    height: 200px;
  }

  #top-works .works-title {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #top-works .works-bg {
    width: 100%;
    /* ↓contentのサイズ調整 */
    padding: 5% ;
  }
#top-works .section-title {
    height: 30px;
}
  #top-works p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #top-works .works-bg {
    width: 100%;
    /* ↓contentのサイズ調整 */
    padding: 8% 5% 2% 10%;
  }
}

/***************top-news***************/
@media (max-width: 890px) {
  #top-news .content {
    width: 70%;
    margin: 0 auto;
  }

  #top-news .section-title-inner {
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
#top-news {
  margin-bottom: 5%;
/* border: 3px solid #000; */
}
  
  #top-news .section-title-inner {
    width: 85%;
  }

  #top-news .section-title {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }

  /* title横オブジェクト */
  #top-news .section-title-image01 {
    width: 22%;
    position: absolute;
    top: -40px;
    left: 100px;
    z-index: -1;
  }

  #top-news .section-title-image02 {
    width: 24%;
    position: absolute;
    top: -5px;
    left: 60px;
  }

  #top-news .container {
    flex-direction: column;
  }

  #top-news .news-inner {
    flex-direction: column;
  }

  #top-news .news-container {
    width: 100%;
  }

  #top-news .content:not(:first-child) {
    margin-left: 0px;
  }
/* サイズ */
  #top-news .news-inner .content {
    width: 70%;
    margin: 0 auto 5%;
    text-align: left;
    /* border: 1px solid #000; */
  }

  #top-news .news-image-box {
    margin: 0 auto 10px;
    /* border: 5px solid #09ba29; */
  }

  #top-news .news-image {
    /* margin: 0 auto 0px; */
    /* border: 3px solid #000; */
  }

  #top-news .text-box {
  }

  #top-news .more-button {
    margin: 0 auto;
  }
}


@media (max-width: 480px) {
    #top-news .section-title {
    margin: 0 auto 0px;
  }


  #top-news .news-inner .content {
    width: 80%;
  }

  /* title横オブジェクト */
  #top-news .section-title-image01 {
    width: 30%;
    top: -30px;
    left: 10px;
    z-index: -1;
  }

  #top-news .section-title-image02 {
    width: 32%;
    top: 0px;
    left: -30px;
  }
}

@media (max-width: 380px) {
  #top-news .news-inner .content {
    width: 90%;
    /* border: 1px solid #000; */
  }
}
/***************top-recruit***************/
@media (max-width: 768px) {
  #top-recruit .pc {
    display: none;
  }

  #top-recruit .sp {
    display: block;
  }

  /* ***** */
  #top-recruit .lead {
    margin-bottom: 1500px;
    font-size: 1.2rem;
  }

  #top-recruit .top-recruit-lead {
    margin-top: 100px;
  }

  /* view-recruit-buttton */
  .vr-button {
    margin-top: 30px;
    font-size: 1.2rem;
    border-radius: 100px;
    padding: 15px 40px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .vr-button:hover {
    padding: 15px 40px;
  }

  /* スライダー全体 */
  #top-recruit .slider-wrapper {
    width: 500%;
  }

  .slide {
    width: calc(100vw / 1);
  }

  .top-recruit-slider {

    /* スライドの画像 */
    .n1,
    .n2,
    .n3,
    .n4 {
      width: 330px;
    }

    .n1 img,
    .n2 img,
    .n3 img,
    .n4 img {
      height: 350px;
    }
  }

  /*****Black透過*****/
  .top-recruit-wrapper {
    height: 350px;
  }

  .top-recruit-wrapper::before {
    height: 350px;
  }

  /* ***** */
  #top-recruit .top-recruit-lead {
    flex-direction: column;
  }

  #top-recruit .top-recruit-lead h3 {
    margin-bottom: 10px;
    text-align: center;
  }

  #top-recruit .vr-button {
    margin-left: 0;
  }

}




  /***************top-contact***************/
@media (max-width: 768px) {
  /* お問い合わせはこちら */
  #top-contact .content-lead {
    font-size: 1.2rem;
  }
}


@media (max-width: 480px) {
  #top-contact {
    margin: 0;
    padding-top: 15%;
  }

  .contact-bg {
    border-radius: 100px 100px 0 0;
  }

  #top-contact .section-title {
    font-size: 4.2rem;
    text-align: center;
  }

  /* お問い合わせはこちら */
  #top-contact .content-lead {
    font-size: 1.2rem;
  }

  #top-contact .contact-button {
    width: 70%;
    padding: 5% 10%;
    margin: 0 auto;
  }

}
@media (max-width: 380px) {
/* セクションtitle */
#top-contact .section-title {
      font-size: 4rem;
}
  /* お問い合わせはこちら */
  #top-contact .content-lead {
    font-size: 1rem;
  }



}
/****************** 下層 ******************/

/************service*************/
/*******************************/
@media (max-width: 960px) {
  #service .service-content {
    width: 30%;
    padding: 2%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .section-titile-2-wrapper {
    width: 90%;
    margin: 0 auto 100px;
  }

  #service .content-title {
    text-align: center;
  }

  /*box枠 */
  /* 上段 */
  #service .container01,
  .container02 {
    margin-bottom: 3%;
  }

  /* 下段 */
  #service .container02 {
    /* margin-bottom: 20px; */
  }

  /* box */
  #service .service-content {
    padding: 3%;
    width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px rgba(197, 196, 196, 0.6), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
  }

  #service .service-image {
    width: 100%;
  }

  #service .service-title {
    font-size: 1rem;
  }

  #service .container03 .service-content {
    margin: 0 auto;
  }

  #service .container01 .service-content:not(:last-child) {
    margin-right: 3%;
  }

  .container02 .service-content:first-child {
    margin-right: 3%;
  }

  .more-button02 {
    width: 90%;
    padding: 4% 2% 4% 1%;
    border-radius: 100px;
    margin: 0 auto 2%;
    font-size: 0.8rem;
  }

  /* ▶▶▶ */
  .more-button02:after {
    border-width: 8px 0 8px 8px;
    top: 50%;
    right: 10%;
    margin-top: -8px;
  }

  #Website-operation .figure,
  #web-marketing .figure {
    width: 60%;
    min-width: 300px;
  }

  /*****logo*****/

  #advertisement .ad-fig {
    width: 30%;
  }

  #advertisement .ad-fig img {
    width: 30%;
    min-width: 70px;
    margin: 0 auto;
  }

  #advertisement .ad-fig p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-titile-2 {
    font-size: 2rem;
  }
  /*　 */
 #service .service-category-title {
    font-size: 0.8rem;
}
 #service .service-category-explain {
    font-size: 0.8rem;
}

  #service .service-content {}

  #service .service-title {
    font-size: 0.8rem;
  }

  .more-button02 {
    width: 90%;
    padding: 3% 2% 3% 1%;
    border-radius: 100px;
    margin: 0 auto 2%;
    font-size: 0.7rem;
  }

  /* ▶▶▶ */
  .more-button02:after {
    border-width: 5px 0 5px 5px;
    top: 50%;
    right: 7%;
    margin-top: -5px;
  }
}

@media (max-width: 380px) {
  #advertisement .ad-fig p {
    font-size: 0.8rem;
  }
}



/**********about**********/
/**************************/
@media (max-width: 768px) {

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  /*********************/

  .section-wrapper {
    width: 100%;
  }

  #about .container {
    margin-bottom: 100px;
  }

  #about .mission,
  .value {
    width: 80%;
  }

  #about .mission p {
    text-align: center;
  }

  #about .value-content {
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 5px;
  }

  #about .content-title {
    margin-bottom: 50px;
  }

  .value-1,
  .value-2,
  .value-3,
  .value-4,
  .value-5 {
    width: 160px;
    height: 160px;
  }

  /*value内容文*/
  #about .value-text-container {
    width: 80%;
  }

  /*****  member*****/
  #about .mamber-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    align-items: center;
  }
}

@media (max-width: 480px) {

  .value-1,
  .value-2,
  .value-3,
  .value-4,
  .value-5 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 380px) {

  .value-1,
  .value-2,
  .value-3,
  .value-4,
  .value-5 {
    width: 110px;
    height: 110px;
  }

  #about .mamber-container {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 20px 20px;
  }

  #about .position,
  #about .name {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {

  /*****web-design*****/

  #service-web-design {
    width: 100%;
  }

  .web-design-wrapper {
    flex-direction: column;
  }

  #service-web-design .content:not(:last-child),
  #service-graphic-design .content:not(:last-child) {
    margin: 0 auto 80px;
  }

  /* 枠 */
  #service-web-design .content,
  #service-graphic-design .content {
    width: 90%;
  }


  /*****広告運用*****/

  #advertisement .content:not(:first-child) {
    margin: 100px 0 0;
  }

  #advertisement .movie-content {
    flex-direction: column;
    align-items: center;
  }


  #advertisement .content {
    width: 80%;
  }

  #advertisement .sub-title {
    margin-bottom: 10px;
  }

  /* logo */
  .ad-fig {
    width: 26%;
  }

  .ad-fig p {
    font-size: 1rem;

    @media (max-width: 500px) {
      font-size: 0.9rem;
    }

  }

  /*****Webサイト運用*****/
  #service-Website-operation {
    margin-bottom: 200px;
  }

  /* 共通 */
  .lead-wrapper {
    margin: 0 auto 100px;
  }

  /* リード文 */
  .lead-title {
    margin: 0 auto 50px;
    font-size: 20px;
  }

  .content-lead {
    width: 80%;
    margin: 0 auto;
  }

  /********************/

  .service-category {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 3fr 3fr;
    width: 100%;
    height: 500px;
    margin: 0 auto 100px;
  }

  .category-title {
    text-align: center;
    margin-bottom: 50px;
  }


  /* 表共通 */
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6 {
    padding: 10px;
  }

  .service-category-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .service-category-explain {
    text-align: left;
    color: #797878;

  }

  .lead-title {
    width: 80%;
    text-align: center;
    margin-bottom: 30px;
  }

  /*****Webマーケティング*****/

  #web-marketing {
    margin-bottom: 200px;
  }
}

@media (max-width: 600px) {
  #service-web-design .web-design-image {
    height: auto;
  }
}


@media (max-width: 768px) {

  /**********works**********/
  /**************************/
  #works .top {
    padding: 0;
    width: 100%;
  }

  /*クライアント名*/
  #works .works-client span {
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 0;
    margin-right: 10px;
  }

  #works .container {
    padding: 0;
  }

  #works .works-content {
    flex-direction: column;
    margin: 0 auto;
  }

  #works .inner {
    /* text-align: left; */
    /* width: 90%; */
    margin: 0 0 20px 0;
  }

  /* works01-clientのサイド余白 */
  #works .top {
    padding: 0 20px;
  }

  /*説明文 */
  .n2 .description {
    /* margin: 0 auto 100px; */
    width: 95%;
  }


  /*****01works *****/
  .works01-image-1 {
    width: 90%;
    margin: 0 auto;
  }

  .works01-image-2-content {
    width: 80%;
  }
















  /* メディアクエリ閉じ */
}


/**********news**********/
/**************************/

@media (max-width: 960px) {
  #news .container {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  @media (max-width: 768px) {
    #news .container {
      grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    #news .news-content {
      width: 75%;
    }


  }
}

/**********recruit**********/
/**************************/
@media screen and (max-width:960px) {
  #recruit .container {
    gap: 0% 3%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 40% 40% 40%;
    margin-bottom: 40%;
    /* border: 3px solid #e60606; */
  }
}

/* 768 */
@media screen and (max-width:768px) {
  #recruit .container {
    grid-template-columns: 1fr;
    grid-template-rows: 400px 400px 400px 400px 400px 400px;
    grid-template-rows: 20% 20% 20% 20% 20% 20%;
    margin-bottom: 120%;
    /* border: 3px solid #3306e6; */
  }

  #recruit .content-title {
    font-size: 1.4rem;
  }

  #recruit .content-title::before {
    content: "";
    display: inline-block;
    width: 55px;
    height: 55px;
    margin-right: 10px;
    background-image: url('../img/【recruit】icon/【recruit】title-02.png');
    background-position: center;
    background-size: contain;
    vertical-align: middle;
    /* border: 3px solid #ecd90c; */
  }


  #recruit .content-title::after {
    content: "";
    display: inline-block;
    width: 55px;
    height: 55px;
    margin-left: 10px;
    background-image: url('../img/【recruit】icon/【recruit】title-01.png');
    background-position: center;
    background-size: contain;
    vertical-align: middle;
  }
}

@media screen and (max-width:768px) {
  #recruit {
    .recruit-figure {

      .value-content {
        gap: 0px;

        .value-1,
        .value-2,
        .value-3,
        .value-4,
        .value-5 {
          width: 70px;
          height: 70px;
        }
      }

    }
  }
}

@media (max-width: 480px) {
  #recruit .container {
    margin-bottom: 130%;
    /* border: 3px solid #e0800b; */
  }

  #recruit .recruit-section-title {
    font-size: 4rem;
    /* border: 1px solid #000; */
  }

  #recruit .section-lead {
    font-size: 1.2rem;
  }

  #recruit .content-title {
    font-size: 1.3rem;
    /* border: 1px solid #000; */
  }

  #recruit .box {
    height: 90%;
  }

  #recruit .no {
    font-size: 4.5rem;
  }

  #recruit .unit {
    font-size: 1.5rem;
  }

}

/* 380 */
@media (max-width: 380px) {
  #recruit .container {
    margin-bottom: 150%;
    /* border: 3px solid #0b8ee0; */
  }

  #recruit .box {
    height: 90%;
    /* border: 3px solid #30e50c; */
  }

}

/*  */
@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* スライド */
  .slide {
    width: calc(100vw / 5);
  }

  /* スライドの画像 */
  .slide-1,
  .slide-2,
  .slide-4,
  .slide-7,
  .slide-8 {
    width: 100%;
  }
}

/**********contact**********/
/**************************/
@media (max-width: 768px) {

  /*/// contactのfooter ///*/
  .footer-2 .footer-bg {
    border-radius: 100px 100px 0 0;
    padding: 50px 0 100px;
  }

}

@media (max-width: 480px) {
  .contact-section-title {
    font-size: 3.9rem;
  }
}