

#main_visual {
  margin-bottom: 70px;
  position: relative;
}
#main_visual .image{
  width: 100%;
  height: 540px;
}
#main_visual .image img{
  width: 100%;
  height: 540px;
  object-fit:cover;
}
#main_visual .text{
  position: absolute;
  top: 90px;
  left: 50%;
  transform:translateX(-130%);
  color: #000000;
  line-height: 1.78;
  font-size: 1.78em;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1200px) {
  #main_visual .image{
    width: 100%;
    height: auto;
  }
  #main_visual .image img{
    width: 100%;
    height: auto;
    aspect-ratio: 1200/540;
  }
  #main_visual .text{
    left: 3.3%;
    top:16.6%;
    transform: none;
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 750px) {
  #main_visual {
    margin-bottom: 50px;
  }
  #main_visual .image img{
    width: 100%;
    height: auto;
    aspect-ratio: 375/200;
  }
  #main_visual .text{
    left: 7%;
    top: 17.5%;
    transform: none;
    font-size: 4vw;
  }
}

#top-works{
  margin-bottom: 100px;
}
#top-works .heading{
  display: flex;
  gap: 70px;
  margin-bottom: 60px;
}
#top-works .heading .image{
  width: 38.3%;
}
#top-works .heading .text{
  flex: 1;
}
#top-works .heading .text h2{
  font-size: 1.44em;
  padding-bottom:20px;
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
}
#top-works .navigation{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 1.12%;
}
#top-works .navigation .work{
  width: 24.16%;
  text-align: center;
}
#top-works .navigation .work a{
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}
#top-works .navigation .work .image{
  width: 100%;
  aspect-ratio: 290 / 194;
  overflow: hidden;
}
#top-works .navigation .work .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ;
}
#top-works .navigation .work a:hover img{
  transform: scale(1.1);
}
#top-works .navigation .work .name{
  font-size: 1.2em;
  border-bottom: 1px solid #333;
}

@media only screen and (max-width: 750px) {
#top-works{
  margin-bottom: 75px;
}
#top-works.wrapper{
  padding: 0;
}
#top-works .heading{
  display: block;
  flex-direction: column;
  gap: 15px 70px;
  margin-bottom: 40px;
}
#top-works .heading .image{
  width: 100%;
}
#top-works .heading .text{
  flex: 1;
  padding: 0 17.5px;
}
#top-works .heading .text h2{
  font-size: 1.44em;
  padding-bottom:20px;
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
}
#top-works .navigation{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 1.12%;
  padding: 0 17.5px;
}
#top-works .navigation .work{
  width: 100%;
  max-width: 290px;
  text-align: center;
}
#top-works .navigation .work a{
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}
#top-works .navigation .work .image{
  width: 100%;
  aspect-ratio: 290 / 194;
  overflow: hidden;
}
#top-works .navigation .work .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ;
}
#top-works .navigation .work a:hover img{
  transform: scale(1.1);
}
#top-works .navigation .work .name{
  font-size: 1.2em;
  border-bottom: 1px solid #333;
}
}

#top-news{
  margin-bottom: 100px;
}
#top-news .wrapper{
}
#top-news h2{
  text-align: center;
  font-size: 1.6em;
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 40px;
}

#top-news h2 span:before,
#top-news h2 span:after{
  content:"ー";
}


@media only screen and (max-width: 750px) {
#top-news{
  margin-bottom: 75px;
}
}