@charset "utf-8";
/*-----------------  reCAPTCHAのバッジ非表示  ----------------- */
.grecaptcha-badge { visibility: hidden; }


/*-----------------  カーソル  ----------------- */
html, body, a, button, div{
    cursor: none;
}




#cursor{
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 1.0);
    transform: translate(-100px,-100px);
    border-radius: 50%;
    z-index: 99;
    z-index: 999999;
}

#stalker {
    pointer-events: none;
    position: fixed;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 24, 24, 0.8);
    border-radius: 50%;
    transform: translate(-100px,-100px);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 999999;
}

#stalker.hov_{
    top: -40px;
    left: -40px;
    width: 60px;
    height: 60px;
    transition: .15s;
    background: rgba(255, 24, 24, 0.5);
}



/* @media screen and (max-width: 580px) {
    #cursor,  #stalker, #stalker.hov_ {
        display: none;
    }
}

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

    html,body,a{
        cursor: default;
    }
} */




/*-----------------  モーダル  ----------------- */

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}

/*-----------------  common  ----------------- */

body {
    overflow-x: hidden;
  }
html {
    letter-spacing: .3em;
}

p {
    letter-spacing: .4em;
    line-height: 2;
}
main {
    margin: 0 auto;
}

img {
    margin: 0 auto;
    width: 100%;
}

li {
    list-style: none;
}



a {
font-family: sans-serif;
text-decoration: none;
}

.grid-section-conteiner {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.grid-section-conteiner .section-title {
    font-weight: 500;
    margin-bottom: 50px;
    grid-column: 2 / 9;
}

.highlighter {
    background:linear-gradient(transparent 50%, rgba(136, 169, 255, 0.2) 60%);
}

@media screen and (max-width: 580px){
    .content-wrap {
        width: 90%;
        margin: 0 auto;
    }
}
/*-----------------  common  ----------------- */



/*-----------------  hamburger　メニュー  ----------------- */

  
.header {
    height: 60px;
    width: 100%;
    position: fixed;
    /* position: relative; */
    top: 0;
    left: 0;
    margin: 0;
  z-index: 9999;
  }
  
  .no-scroll {
    overflow: hidden;
  }
  
  .header__inner {
    height: inherit;
    position: relative;
    grid-column: 1 / 9;
    background-color: rgba(255, 255, 255, 0.7);
  }
  
  .header__list {
    display: none;
    height: inherit;
    padding: 0 50px;
  }



  @media screen and (min-width: 1025px) {
    .header__list {
      display: block;
    }
  }
  .header__list.active {
    display: block;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: fixed;
    z-index: 2;
  }



    @media screen and (max-width: 1024px) {
        .header__list.active ul {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          background-color: rgba(255, 255, 255, 0.7);
          position: relative;
          top: 60px;
          padding-bottom: 160px;
        }

        .header__list.active ul li {
            font-size: 20px;
            padding: 10px 0;
        }
    }
  .header__list.active .header__button {
    margin-top: 20px;
  }
  .header__list ul {
    font-size: 14px;
    font-weight: bold;
    height: inherit;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }

  


  .hamburger {
 display: none;
  width: 35px;
  height: 60px;
  margin: 0 40px;
  position: relative;

  z-index: 200;
  top: 0;
  }


  @media screen and (max-width: 1024px) {
    .hamburger {
      display: block;
      position: absolute;
      top: 0;
      right:0;
    }
  }

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.5s;
}
.hamburger span::before {
  top: -12px;
}
.hamburger span::after {
  bottom: -12px;
}
.hamburger.open span {
  background-color: transparent;
}
.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.header button{
    background-color: transparent;
    border: none;
}



   
/*-----------------  hamburger  ----------------- */


/*-----------------  背景のLine  ----------------- */

#bgLine span {
display: block;
position: fixed;
width: 1px;
height: 1000%;
top: 0;
z-index: 0;
background: #EBEBEB;
opacity: 0.8;
/*transform: matrix(1, 0, 0, 10000, 0, 0);*/
}

#bgLine span:nth-of-type(1) {
left: calc(100vw / 8 * 1);
}

#bgLine span:nth-of-type(2) {
left: calc(100vw / 8 * 2);
}

#bgLine span:nth-of-type(3) {
left: calc(100vw / 8 * 3);
}

#bgLine span:nth-of-type(4) {
left: calc(100vw / 8 * 4);
}

#bgLine span:nth-of-type(5) {
left: calc(100vw / 8 * 5);
}


#bgLine span:nth-of-type(6) {
left: calc(100vw / 8 * 6);
}

#bgLine span:nth-of-type(7) {
left: calc(100vw / 8 * 7);
}



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

    #bgLine span:nth-of-type(2),  #bgLine span:nth-of-type(4), #bgLine span:nth-of-type(6){
        display: none;
    }
}
/*-----------------  背景のLine  ----------------- */


/*-----------------  top  ----------------- */
.top {
    margin-top: 100px;
    height: 100vh;
    position: relative;
}
.top .title {
    /* margin-top: 220px; */
    grid-column: 2 / 4;
}
.top .title h1 {
    font-size: 120px;
    font-size:7vw;
    /* background-color: #ed3242; */
    letter-spacing: .2em;
    
}
.top .title h2 {
    font-size: 20px;
    margin-top: 40px;
    color: #D93838;
    font-weight: 600;
}

.top .message {
    grid-column: 2 / 8;
}
@media screen and (max-width: 650px){
    .top .title {
        grid-column: 2 / 8;
        text-align: center;
    }
    .top .message {
        grid-column: 2 / 8;
        text-align: center;
    }

}

.top .top-img {
    grid-column: 5 / 9;
    text-align: end;
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 600px;
}

@media screen and (max-width: 900px){
    .top .top-img {
        /* grid-column: 3 / 9; */
        width: 400px;
         bottom: 50%;
    }
    .top {
        margin-top: 200px;
        height: 75vh;
    }
}

@media screen and (max-width: 700px){
    .top {
        margin-top: 100px;
        height: 90vh;
    }
    .top .top-img {
        /* width: 300px; */
        bottom: 20%;
    }
}




@media screen and (max-width: 500px){
    .top {
        margin-top: 100px;
        height: 90vh;
    }
    .top .top-img {
        
        bottom: 20%;
    }
}




 .big-text {
    grid-column: 1 / 9;
    /* font-size:12vw; */
    font-size: 120px;
    color: #FFF;
    animation: marquee-anim 20s infinite linear both;  
    white-space: nowrap;
    width: 100%;
    color: #F3F4F5;
    position: absolute;
    bottom: 10%;
    right: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

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

 .big-text {
    bottom: 0%;

}
}

 @media screen and (max-width: 580px){
 .big-text{
        font-size: 80px;
        bottom: 0%;
    }
} 




@keyframes marquee-anim {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
  }
  

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


/*-----------------  about-us  ----------------- */


.about-us {
    margin-top: 100px;
}



.about-us .grid-section-conteiner {
    position: relative;
}

.about-us .message {
    grid-column: 2 / 6;
       z-index: 88;
       padding-top: 50px;
    
}

@media screen and (max-width: 1200px){
    .about-us .message {
        grid-column: 2 / 7;
        padding-top: 0px;
    }

}

@media screen and (max-width: 900px){
    .about-us .message {
        padding-top: 0px;
        grid-area: 2 / 9;
        margin-top: 200px;
    }

}

@media screen and (max-width: 580px) {
    .about-us {
        grid-area: 1 / 9;
        margin-top: 30px;
    }
}


@media screen and (max-width: 400px){
    .about-us {
        margin-top: 0px;
    }
}
.about-us .message .section-title {
    font-weight: 600;
    margin-top: 20px;
    font-size: 18px;
}


.about-us .message .text {
    margin-top: 50px;
    background-color: rgba(255, 255, 255, .3);
    padding: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 2;

}

@media screen and (max-width: 500px){
    .about-us .message .text{
        margin-top: 40px;
        font-size: 16px;
        text-align: center;
        font-weight: 400;
    }
}


.about-us .about-us-img {
    grid-column: 5 / 9;
    position: relative;
    right: 0;
    z-index: 5;
    width: 600px;
    /* display: flex; */
    flex-direction: column;
    display: grid;
    place-content: right;
    place-items: right;
    float: left;
}

@media screen and (max-width: 1200px){
    .about-us .about-us-img {
        grid-column: 5 / 9;
        padding-top: 0px;
        float: le;
    }
}

@media screen and (max-width: 900px){
    .about-us .about-us-img {
        grid-area: 6 / 9;
        padding-top: 0px;
        top: 0;
    }

}
.about-us .about-us-img img{
    margin-top: 20px;
    float: left;
}

@media screen and (max-width: 900px){
    .about-us .about-us-img img {
      margin: 0;
    }
}


@media screen and (max-width: 10204px){
    .about-us .about-us-img {
        position: absolute;
        top: 0px;
        width: 600px;
    }
}

 @media screen and (max-width: 600px){
    .about-us .about-us-img {
        position: absolute;
        top: 0px;
        width: 300px;
    }
}


.img-text {
    display: block;
    margin-bottom: 20px;
    position: absolute;
    color: #d4d4d4;
    font-weight:  700;
    font-weight: 100;
    color: #000;
    display: block;
    font-size: 30px;
    line-height: 1.3;
    font-size: 16px;
}

@media screen and (max-width: 900px){
    .img-text {
        font-size: 12px;
    }
    
}

/* @media screen and (max-width: 400px) {
    .about-us .about-us-img {
       top: 70px;
    }

}  */




/*-----------------  about-us  ----------------- */



/*----------------- service  ----------------- */
.service {
    margin-top: 260px;
}

@media screen and (max-width: 900px){
    .service {
        margin-top: 260px;
    }
}


.service .grid-section-conteiner + .grid-section-conteiner{
    padding-top: 150px;
}

.service .heading {
    grid-column: 1 / 4;
    background-color: #000;
    color: #FFF;
    height: 100%;
    font-size: 2vw;
    width: 100%;
    font-weight: 100;
}

.service-contets {
    grid-column: 5/9;
    
}
@media screen and (max-width: 580px){
    .service .heading{
        text-align: center;
        grid-column: 1 / 9;
    }
}

@media screen and (max-width: 580px){
    .service-contets{
        grid-column: 1 / 9;
    }
}


.service-contet-item {
    border-bottom: 1px solid #000;
}

.service-contet-item:nth-child(1) {
    border-top: 1px solid #000;
}

.service-contet-item h1{
    padding-top: 35px;
    padding-bottom: 20px;
    font-size: 20px;
    display: inline-block;
}

.service-contet-item p {
    padding-bottom: 20px;
    font-size: 14px;
}

/*----------------- service  ----------------- */


/*----------------- works  ----------------- */
/* .works  .works-contet-items-container{
    grid-template-columns: 2fr 2fr 2fr 2fr;
} */

.works {
    margin-top: 260px;
}


.works .swiper-grid-container {
    grid-column: 1 / 9;
    width: calc(100% + 20px); 
}



.works-contet-item img {
    width: calc(100% - 20px);
    height: auto;
}


.works-contet-item h2 {
    font-size: 18px;
    font-weight: 500;
    
}

.works-contet-item .category-name {
    display: inline-block;
    padding-top: 8px;
    font-size: 14px;
    color: #9e9e9e;
    font-weight: 200;
}

.swiper-grid-container {
    padding-top: 30px;
}

#works .grid-section-conteiner {
    position: relative;
    margin: 0 20px;
}


#works .swiper-button-prev {
    position: absolute;
    top: 81px;
    left:0;
    grid-column: 2 / 3;
    color: rgba(0, 0, 0, 0.8);
    width: 20px;
    height: 10px;
    padding: 20px;
    margin-right: 20px;
    cursor: none;

}


#works [class^="swiper-button-"]::after{
    font-size: 16px;
}


 #works .swiper-button-next{
    position: absolute;
    top: 81px;
    left:0;
    grid-column: 4 / 5;
    color: rgba(0, 0, 0, 0.8);
    width: 20px;
    height: 10px;
    padding:20px;
    cursor: none;
}



.works .swiper-scrollbar1 {
    position: absolute;
    top: 78px;
    left:12%;
    grid-column: 2 / 4;
    width: 80%;
    display: block;
    height: 1px;
    margin: 0 20px;
}



.swiper1 {
    height: 100%;
  }

  /* @media screen and (max-width: 900px){
    .swiper1 {
        height: 100%;
    }
  } */



.gallery {
    width: 1080px;
}



.works-btn {
    display: block;
    text-align: center;
    background-color: #000;
    padding: 12px 32px;
    width: 400px;
    color: #FFF;
    margin-top: 80px;
    margin-left: auto;
    height: 50px;             /* 高さ指定 */
}


@media screen and (max-width: 900px){
    .works-btn{
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
    }
  }


/*----------------- works  ----------------- */

/*----------------- work-flow  ----------------- */
/* #work-flow {
    background-color: #C8C7FE;
} */
.work-flow {
    margin-top: 260px;
    /* padding-top: 160px; */
}

@media screen and (max-width: 900px){
    .work-flow {
        margin-top: 160px;
    }
  }

.work-flow .swiper-grid-container {
    grid-column: 2 / 8;
    
}


.swiper2 {
    height: 100%;
  }

  .work-flow .grid-section-conteiner {
    position: relative;
}

  .work-flow .swiper-button-prev {
    position: absolute;
     top: 81px;
    left: 0%;
    grid-column: 2 / 3;
    color: rgba(0, 0, 0, 0.8);
    width: 20px;
    height: 10px;
    padding: 20px;
    cursor: none;
}
.work-flow [class^="swiper-button-"]::after{
    font-size: 16px;
}

 .work-flow .swiper-button-next{
    position: absolute;
     top: 81px;
    left:0;
    grid-column: 4 / 5;
    color: rgba(0, 0, 0, 0.8);
    width: 20px;
    height: 10px;
    padding: 20px;
    cursor: none;
}

.work-flow .swiper-scrollbar2 {
    position: absolute;
    top: 78px;
    left:12%;
    grid-column: 2 / 4;
    width: 80%;
    display: block;
    height: 1px;
    margin: 0 20px;
}

.work-flow .swiper-slide .detail {
    width: 90%;
}

.work-flow .swiper-slide .detail p {
    font-size: 16px;
}

.work-flow .detail .number {
    font-size: 20px;
    font-weight: bold;
    color: #9e9e9e;
    margin: 0;
    display: inline-block;
}

.work-flow .detail h2 {
    font-weight: bold;
    font-size: 18px;
}
.work-flow .swiper-slide {
    /* border-top: 2px solid #555; */
    padding-top: 50px;
    position: relative;
}

.work-flow .swiper-slide .line {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1em 0;
    background: linear-gradient(transparent 49%, #000 49%, #000 51%, transparent 51%);
}
.work-flow .swiper-slide .inner {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.work-flow .swiper-slide .inner .circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    line-height: 8px;
    border-radius: 50%;
    background: #000;
    font-size: .2em;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
}
    

/*----------------- work-flow  ----------------- */




@media screen and (max-width: 900px){
    .swiper1 {
        height: 100%;
    }
  }






/*----------------- contact  ----------------- */
.contact {
    margin-top: 260px;
    margin-bottom: 350px;
}

@media screen and (max-width: 900px){
    .contact{
        margin-top: 160px;
        margin-bottom: 200px;
    }
  }

.contact  .message {
    grid-column: 2 / 5;
    width: 95%;
}

.contact  .form {
    grid-column: 5 / 9;
    margin-left: auto
}

@media screen and (max-width: 580px ) {
.contact .message {
    grid-column: 1 / 9;
    margin: 0 auto;
    margin-bottom: 100px;
}
.contact  .form {
    grid-column: 1 / 9;
    margin: 0 auto;
    
}

}


.contact .form {
    width: 90%;
    cursor: text;
}


.contact .form-group input, .form-group textarea {
    border: solid #343434 1px;
    display: block;
    margin-top: 16px;
    margin-bottom: 56px;
    padding: 8px 12px;
    width: 90%;
    max-width: 600px;
    font-size: 16px;
    background-color: #FFF;
}

textarea:focus, input:focus {
    border:1px solid  #ffbec8;
    outline: none;
    box-shadow: 0 0 5px 1px #ffbec8;;
}

.grid-section-conteiner .form-group textarea {
    height: 200px;
    resize:none;
    display: block;
    margin-bottom: 80px;
}

.grid-section-conteiner  .form-group label {
    font-size: 14px;
    
}

.required::after {
    content: " *";
    color: red;
    vertical-align: middle;
    font-size: 20px;
  }


.contact .submit-btn {
    text-align: center;
    background-color: #000;
    padding: 8px 16px;
    width: 90%;
    color: #FFF;
    display: block;
}
/*----------------- contact  ----------------- */

/*----------------- footer  ----------------- */

.footer-menu {
    width: 100vw;
}

.footer-menu ul {
    padding: 0;
     width: 100%;
    display: block;
    margin-bottom: 0;
}


.footer-menu li:first-child{
    border-top: 1px solid #343434;
    margin-top: 20px;
}


.footer-menu ul li {
    width: 100%;
    display: block;
    text-align: center;
    border-bottom: 1px solid #343434;
    font-size: 25px;
    font-weight: bold;
}

.footer-menu li:nth-child(4){
    border-style: none;
}

.footer-menu ul li a {
    padding: 30px 0px;
    display: inline-block;
}

.footer-mini-menu {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    grid-column: 1 / 9;
}

.footer-mini-menu ul {
    display:flex;
    width:100%;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;

}

.social-media-icon {
    display: block;
    padding: 10px;
    width: 60px;
    height: 100%;
}




.copy-right{
    background-color: #000;
    z-index: 10;
    text-align: center;
}

.copy-right p {
    margin: 0;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: .2em;
    color: #FFF;
}

.privacy-policy-area {
    background-color: #dbdbdb;
    z-index: 10;
    text-align: center;
    margin: 0;
}



.privacy-policy-area p {
    font-size: 14px;
    margin: 0;
}

/*----------------- footer  ----------------- */

svg .svg-elem-1 {
    z-index: 99999;
    stroke-dashoffset: 18471.892578125px;
    stroke-dasharray: 18471.892578125px;
    -webkit-transition: stroke-dashoffset 10s cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
    transition: stroke-dashoffset 10s cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
}

svg.active .svg-elem-1 {
    stroke-dashoffset: 36943.78515625px;
}


/*-----------------  privacy-policy ----------------- */

.privacy-policy {
    margin-top: 200px;
    margin-bottom: 200px;
}

@media screen and (max-width: 900px){
    .privacy-policy {
        margin-bottom: 150px;
    }
  }
  

.privacy-content{
    grid-column: 2 / 8;
}










  













