@charset "UTF-8";
/* ========================== */
/*           FONTS            */
/* ========================== */
@font-face {
  font-family: "eca-light";
  src: url('../fonts/EuclidCircularA-Light.woff') format('woff');
}
@font-face {
  font-family: "eca-regular";
  src: url('../fonts/EuclidCircularA-Regular.woff') format('woff');
}
@font-face {
  font-family: "eca-medium";
  src: url('../fonts/EuclidCircularA-Medium.woff') format('woff');
}
@font-face {
  font-family: "eca-semibold";
  src: url('../fonts/EuclidCircularA-SemiBold.woff') format('woff');
}
@font-face {
  font-family: "Recoleta-Regular";
  src: url('../fonts/Recoleta-Regular.woff') format('woff');
}
@font-face {
  font-family: "Recoleta-Bold";
  src: url('../fonts/Recoleta-Bold.woff') format('woff');
}
@font-face {
  font-family: "Recoleta-Thin";
  src: url('../fonts/Recoleta-Thin.woff') format('woff');
}

/* ========================== */
/*            共通             */
/* ========================== */
body {
  width: 100vw;
  font-family: "eca-regular","Recoleta-Regular",sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-style: normal;
  color: #FFFFFF;
  /* background-color: #97D700; */
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
}
.fadeIn {
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}
.fadeInTop {
  -webkit-transform: translate3d(0, -30px, 0);
          transform: translate3d(0, -30px, 0);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}
.fadeInTop.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
} 
/* NEWS */
.news {
  margin: 100px;
  text-align: center;
  font-size: 40px;
  color: #753BBD;
}
.name{
  color: #000000;
  font-size: 20px;
}
.img__container{
  margin: 40px auto 10px;
  width: 60vw;
  flex-wrap: wrap;
  justify-content: center;
}
.img__logo {
  margin: 10px 20px 10px;
  width: 250px;
}
@media screen and (max-width: 600px) {
  .news {
    font-size: 20px;
  }
  .name{
    font-size:14px;
  }
  .img__container{
    margin: 20px auto 10px;
    width: 60vw;
    justify-content: center;
  }
  .img__logo {
    margin: 10px;
    width: 70%;
  }
}
.column {
  height: calc((100vh - 50px) /2);
  width: 100vw;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.5;
  transition:0.3s;
}
.column:hover {
  opacity: 1;
  transition: all 0.3s ease-in;
}
.title {
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  text-align: center;
  color: #000000;
}
.yk {
  background: #FE5000  no-repeat top center;
  background-size: cover;
}
.container {
  margin: auto;
  width: 100%;
}
.subtitle {
  font-size: 25px;
  margin: 20px 0;
}
.yk_logo {
  width: 400px;
}
.studioyk_logo {
  width: 300px;
}
.subtitle-2{
  margin: 20px auto;
  line-height: 20px;
}
.subtitle-2 p{
  font-size: 14px;
}
.studioyk {
  background: #753BBD no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .column {
    opacity: 1;
  }
  .title {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    color: #000000;
  }
  .subtitle {
    font-size: 20px;
    margin: 20px 0;
  }
  .yk_logo {
    width: 300px;
  }
  .studioyk_logo {
    width: 200px;
  }
  .subtitle-2 {
    font-size: 14px;
  }
  .subtitle-2 p{
    font-size: 12px;
  }
}