
.layout-main{
  top: -200px;
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .layout-main{
    margin: 0;
    padding: 0;
  }
}
/*==================================================
トップのスライド部分
===================================*/


/*　背景画像設定　*/

.slider {
  position: fixed;
  width: 100%;
  height: 85%;
  overflow: hidden;
  margin-top: 0vh;
}
.slider img{
  width: 100%;
  object-fit: cover;
  top: -200px;
}


.slider-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;

}
.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 27, 27, 0.6);
}

.slider-item:nth-child(1) {
  background-image: url(../img/works/atari007.jpg);
  animation-delay: -2s;
}

.slider-item:nth-child(2) {
  background-image: url(../img/works/atari001.jpg);
  animation-delay: 6s;
}

.slider-item:nth-child(3) {
  background-image: url(../img/works/atari002.jpg);
  animation-delay: 14s;
}



@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
    100% {
  opacity: 0;
  }
}

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .slider {
    position: absolute;/*--ここだけ調整--*/
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: -80px;
    z-index: -0;
    margin-left: 0;
    left: 0;
    right: 0;
  }
  
  .slider-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;/*--ここだけ調整--*/
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 24s linear infinite;
  }
}

/*==================================================
トップのスライド部分
===================================*/


/*==================================================
ABOUT部分
===================================*/
.message{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90vh;
}
.message-about{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.message-about img{
  height: 40px;
  margin-bottom: 20px;
}
.message-about p{
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 30px;
}
.message-about h1,
.message-about h2,
.message-about h3{
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .message{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
  }
  
  .message-about{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .message-about img{
    height: 26px;
    margin-bottom: 20px;
  }
  .message-about p{
    color: #ffffff;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 20px;
  }
  .message-about h1,
  .message-about h2,
  .message-about h3{
    color: #ffffff;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 10px;
  }
}
/*==================================================
NEWS部分
===================================*/
.news{
  position: relative;
  background-color: #ebeaea;
  width: 100vw;
  top: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.news p{
  font-size: 14px;

}
.news-title h3{
  text-align: start;
  font-size: 20px;
  width: 800px;
  border-bottom: solid 1px #c7c7c7;
}
.news-set{
  width: 800px;
  top: 100vh;
  display: flex;
}
.news-date{
  width: 110px;
}
.news-content{
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .news{
    position: relative;
    background-color: #ebeaea;
    width: 100%;
    height: 500px;
    top: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
  }
  .news p{
    font-size: 12px;
  }
  .news-title h3{
    text-align: start;
    font-size: 18px;
    width: 200px;
    border-bottom: solid 1px #c7c7c7;
  }
  .news-set{
    width: 100%;
    top: 100vh;
    display: flex;
    flex-direction: column;
  }
  .news-date{
    width: 110px;
  }
  .news-content{
    padding-left: 0px;
  }
}




/*==================================================
グラデーション　背景暗転
===================================*/
.section__bg {
  position: relative;
  width: 100vw;
  height: 300px;
  top: 100vh;
  background-color:#83807d;
  transition: .9s;
}
.section__bg.section01 {
  color: #111;
  background-color: #ebeaea;
}
.section__bg.section01.is-active {
  color: #ddd;
  background-color:#83807d;
}
.section__bg.section02 {
  color: #ddd;
  background-color:#83807d;
}
.section__bg.section02.is-active {
  color: #111;
  background-color: #ebeaea;
}

.gradation{
  position: relative;
  top: 100vh;
  width: 100vw;
  height: 300px;
  background: linear-gradient(0deg, #ebeaea, #111)
}
/*==================================================
グラデーション　背景暗転
===================================*/

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .section__bg {
    position: relative;
    width: 100vw;
    height: 300px;
    top: 90vh;
    background-color:#83807d;
    transition: .9s;
  }
  .section__bg.section01 {
    color: #111;
    background-color:#83807d;
  }
  .section__bg.section01.is-active {
    color: #ddd;
    background-color:#83807d;
  }
  .section__bg.section02 {
    color: #ddd;
    background-color:#83807d;
  }
  .section__bg.section02.is-active {
    color: #111;
    background-color: #ebeaea;
  }
  
  .gradation{
    position: relative;
    top: 90vh;
    width: 100vw;
    height: 300px;
    background: linear-gradient(0deg, #ebeaea, #111)
  }
}



/*==================================================
紹介部分
===================================*/
.con-p h2{
  border-bottom: solid 1px rgb(183, 183, 183);
}
.con-p p,.con-p h2{
  color: #ddd;
  text-align: center;
}
.container-004 p,.container-004 h2{
  text-align: center;
}



.container-001{
  position: relative;
  width: 100vw;
  height: 1800px;
  top: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:#83807d;
  border-bottom: solid 1px rgb(183, 183, 183);
}

.img-A img{
  width: 750px;
  position: relative;
  top: 100px;
  left: 310px;
}
.img-B img{
  width: 580px;
  position: relative;
  top: -120px;
  left: -340px;
}
.img-C img{
  width: 500px;
  position: relative;
  top: -220px;
  left: 380px;
}


.container-002{
  position: relative;
  width: 100vw;
  height: 1200px;
  top: 100vh;
  padding-top: 200px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color:#83807d;
  border-bottom: solid 1px rgb(183, 183, 183);
}
.container-002 img{
  width: 27vw;
  padding-right: 6px;
  padding-left: 6px;
  margin-top: 30px;
}

.container-003{
  position: relative;
  width: 100vw;
  height: 1500px;
  top: 100vh;
  padding-top: 200px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color:#83807d;
}
.container-003 img{
  width: 80vw;
  padding-right: 6px;
  padding-left: 6px;
  margin-top: 30px;
  margin-bottom: 90px;
}

.container-004{
  position: relative;
  width: 100vw;
  height: 1000px;
  top: 100vh;
  padding-top: 0px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color:#ebeaea;
}

.container-005{
  position: relative;
  width: 100vw;
  height: 1650px;
  top: 100vh;
  padding-top: 200px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color:#83807d;
  border-bottom: solid 1px rgb(183, 183, 183);
}
.container-005 img{
  width: 65vw;
  padding-right: 6px;
  padding-left: 6px;
  margin-top: 30px;
  margin-bottom: 90px;
}


@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .con-p p,.con-p h2{
    color: #ddd;
    text-align: start;
  }
  .container-004 p,.container-004 h2{
    text-align: start;
  }
  .layout-main h2{
    font-size: 24px;
    text-align: start;
    font-weight: bold;
    width: 100%;
  }
.none-mobile{
  display: none;
}

  
  .container-001{
    position: relative;
    width: 100%;
    height: auto;
    top: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#83807d;
    border-bottom: solid 1px rgb(107, 107, 107);
    margin: 0;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .img-A img{
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    padding-top: 10px;
  }
  .img-B img{
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    padding-top: 10px;
  }
  .img-C img{
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    padding-top: 10px;
  }
  
  .container-002{
    position: relative;
    width: 100%;
    height: auto;
    top: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color:#83807d;
    border-bottom: solid 1px rgb(107, 107, 107);
    margin: 0;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .container-002 img{
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
    margin: 0;
    padding-top: 10px;
  }
  
  .container-003{
    position: relative;
    width: 100%;
    height: auto;
    top: 90vh;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color:#83807d;
    margin: 0;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .container-003 img{
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0;
  }
  
  .container-004{
    position: relative;
    width: 100%;
    height: auto;
    top: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color:#ebeaea;
    margin: 0;
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 100px;
  }

  .container-005{
    position: relative;
    width: 100%;
    height: auto;
    top: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color:#83807d;
    border-bottom: solid 1px rgb(107, 107, 107);
    margin: 0;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .container-005 img{
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
    margin: 0;
    padding-top: 10px;
  }
}

@media screen and (max-width: 400px) {
  .container-005 h2{
    font-size: 22px;
  }
}

/*==================================================
紹介部分
===================================*/









.empty-space{
  background-color: #ffffff;
  width: 70vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 25vh;
  margin-top: 0;
  margin-bottom: 10px;
}

.footer_layout{
  position: relative;
  top: 100vh;
}


