@charset 'utf-8';

#container .news__inner{
  padding-top: 180px;
  padding-bottom: 0;
}
.news__main{
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 60px 5.2%;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
.news__img{
  width: 42.1%;
  max-width: 480px;
}
.news__content{
  position: relative;
  z-index: 0;
  width: 52.7%;
  max-width: 600px;
}
.news__content.noimage{
  width: 100%;
  max-width: 100%;
}
.news__title{
  display: flex;
  justify-content: flex-start;
  flex-flow: column nowrap;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 0;
}
.news__title--date{
  display: block;
  letter-spacing: 0.05em;
}
.news__title--h1{
  width: 100%;
}
.news__text--text{
  margin-top: 55px;
}
.news__button{
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 767px){
  #container .news__inner{
    padding-top: 120px;
  }
  .news__main{
    justify-content: flex-start;
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 60px 0;
  }
  .news__img{
    width: 100%;
    max-width: 100%;
  }
  .news__content{
    width: 100%;
    max-width: 100%;
  }
}
