@charset "utf-8";
/* CSS Document */
.body-in {
  position: relative;
}
/* HEADER */
header {
  width: 100vw;
  position: fixed;
  background-color: rgba(255,255,255,0.8);
  z-index: 999;
}
.header__wrapper {
  width: 790px;
  height: 100px;
  margin: 0 auto;
}
.nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.0rem;
  font-weight: 400;
  color: #aaa;
  padding-top: 40px;
  margin: 0 auto;
}
.nav_list li img {
  width: 24px;
}
.menu-close-button {
  display: none;
}
.header_sp_nav {
  display: none;
}

@media screen and (max-width:950px) {  
  /* DrawerMenu */ 
.header_inner{
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 999;
}
.header__wrapper{
    width: 100vw;
    height: 70px;
}
/*nav=====*/
.nav{
    display: none;
    position: relative;
    width: 100%;
    text-align: center;
    background-color: #aaa;
    z-index: 990;
  } 
.nav_list {
  display: block;
  color: #aaa;
  background: rgba(231, 231, 231, 0.95);
  padding-top: 0;
  margin: 0 auto;
}
.nav_list a {
    color: #aaa;
    display: block;
    border-bottom: solid 1px #FFF;
    padding: 16px 0;
  }
.menu-close-button {
  display: block;
}
  .batsu {
    display: block;
    position: relative;
    width: 100vw;
    padding: 16px 0;
}
  .batsu::before, .batsu::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px; /* 棒の幅（太さ） */
    height: 24px; /* 棒の高さ */
    background: #aaa;
}
  .batsu::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
  .batsu::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

/*header_sp_nav=====*/
.header_sp_nav {
    display: block;
    position: relative;
    width: 44px;
    height: 44px; 
    padding-top: 24px;
    margin: 0 auto;
    cursor: pointer;
}
  
.nav_line {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 42px;
    border-radius: 2px;
    background-color: #aaa;
}
.nav_line:before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 42px;
    border-radius: 2px;
    background-color: #aaa;
    bottom: 10px;
}
.nav_line:after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 42px;
    border-radius: 2px;
    background-color: #aaa;
    top: 10px;
}
.header_sp_nav p {
    position: absolute;
    top: 48px;
    width: 42px;
    font-size: 1.2rem;
    color: #aaa;
    line-height: 0;
    letter-spacing: 2.7px;
    text-align: center;
}
  
.header_sp_nav.active{
    display: block;
    position: relative;
    width: 44px;
    height: 44px; 
    padding-top: 24px;
    margin: 0 auto;
    cursor: pointer;
}
}
/* MAIN */
.l_main{
  height: 100%;
}
#main_cover{
    position: fixed;
    width: 100%;
    visibility: hidden;
    z-index: -1;  
    -webkit-transition: .3s;
    transition: .3s;
}
#main_cover.active{
    height: 100%;
    visibility: visible;
    background: rgba(0,0,0,0.4);
    z-index: 990;
}
/* TOP */
.section-top { 
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
  margin: 0 auto;
}

.section-top__container {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, -50%);
  
}
.section-top__stella-octangula {
  width: 31px;
  margin-bottom: 25px;
}
.section-top__name {
  margin-bottom: 20px;
}
.section-top__title {
  font-size: 1.2rem;
  color: #aaa;
}
@media screen and (max-width:950px) {
.section-top__stella-octangula {
  width: 31px;
  margin-bottom: 20px;
}
}
@media screen and (max-width:600px) {
  .section-top__stella-octangula {
  width: 31px;
  margin-bottom: 15px;
}
  .section-top__name {
    font-size: 3.0rem;
    margin-bottom: 15px;
}
}
/* WORKS */
.section-works {
  width: 82.3vw;
  margin: 0 auto;
}
.section-works__genre-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 110px;
  grid-row-gap: 55px;
  max-width: 1580px;
  width: 100%;
  padding-top: 100px;
  margin: 0 auto 150px;
}
.section-works__genre-container {
  max-width: 186px;
  width: 100%;
  margin: 0 auto;
}
.section-works__genre {
  text-align: left;
}
.section-works__genre img {
  width: 190px;
}
.section-works__english-bp600 {
  display: none;
}
.section-works__japanese {
  text-align: left;
  font-size: 1.6rem;
  color: #aaa;
}
.section-works__japanese-bp600 {
  display: none;
}
@media screen and (max-width:1599px){
  .section-works {
    width: 73vw;
    margin: -40px auto 0;
  }
  .section-works__genre-wrapper {
  width: 73vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  grid-column-gap: 66px;
  grid-row-gap: 50px;
  padding-top: 100px;
  margin: 0 auto 150px;
}
}
@media screen and (max-width:950px) {
.section-works {
    width: 73vw;
    margin: 0 auto;
  }
  .section-works__genre-wrapper {
  width: 73vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  grid-column-gap: 66px;
  grid-row-gap: 50px;
  padding-top: 100px;
  margin: 0 auto 150px;
}
.section-works__genre-container {
  max-width: 186px;
  width: 100%;
  margin: 0 auto;
}
.section-works__english-bp600 {
  display: none;
}
.section-works__japanese-bp600 {
  display: none;
}
}
@media screen and (max-width:600px) {
  .section-works {
    width: 88.8vw;
    margin: 0 auto;
  }
  .section-works__genre-wrapper {
  width: 88.8vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(151px, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 45px;
  padding-top: 100px;
  margin: 0 auto 120px;
  }
.section-works__genre-container {
  max-width: 186px;
  width: 100%;
  margin: 0 auto;
}

  .section-works__genre {
    width: 100%;
    text-align: left;
  }
  .section-works__genre img {
    width: 100%;
  }
  .section-works__english {
    display: none;
  }
  .section-works__english-bp600 {
    display: block;
    font-size: 1.6rem;
    line-height: 2.0rem;
    color: #333;
  }
  .section-works__english-bp600 span {
    display: block;
  }
  .section-works__japanese {
    display: none;
  }
  .section-works__japanese-bp600 {
    display: block;
    font-size: 1.2rem;
    line-height: 2.0rem;
    color: #aaa;
  }
  .section-works__japanese-bp600 span {
    display: block;
  }
}
@media screen and (max-width:384px) {
  .section-works {
    width: 88.8vw;
    margin: 0 auto;
  }
  .section-works__genre-wrapper {
  width: 88.8vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(139px, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 45px;
  padding-top: 100px;
  margin: 0 auto 120px;
  }
}
/* CONCEPT */
.section-concept__container {
  width: 790px;
  padding: 40px 0 100px 0;
  margin: -40px auto 0;
}
.section-concept__text {
  font-size: 1.6rem;
  line-height: 4.5rem;
  text-align: justify;
  letter-spacing: 0.2rem;
  margin: 0 auto;
}
@media screen and (max-width:950px){
  .section-concept__container {
    width: 73vw;
    padding: 0 0 100px;
    margin: 0 auto;
  }
  .section-concept__text {
    line-height: 4.0rem;
    margin: 0 auto;
  }
} 
@media screen and (max-width:600px){
  .section-concept__container {
    width: 88.8vw;
  }
  
  .section-concept__text {
    line-height: 3.5rem;
}
}
/* NEWS */
.section-news {
  width: 790px;
  padding: 0 0 100px;
  margin: 0 auto;
}
.section-news__article {
  display: flex;
  flex-wrap: wrap;
  text-align: justify;
  line-height: 3.2rem;
  padding: 50px 0;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
 }
.section-news__article-bp600 {
  display: none;
}

@media screen and (max-width:950px){
  .section-news {
    width: 73vw;
  }
  .section-news ol {
    margin: 0 auto;
  }
} 
@media screen and (max-width:600px){
  .section-news {
    width: 88.8vw;
  }
  .section-news dl {
    line-height: 3.0rem;
  }
  .section-news__article {
    display: none;
  }
  .section-news__article-bp600 {
    display: block;
    text-align: justify;
    line-height: 3.2rem;
    padding: 15px 0 25px;
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
  }
}
/* Profile */
.section-profile {
  width: 100vw;
  background-color: #FFF;
}
.section-profile__wrapper {
  width: 790px;
  padding-top: 50px;
  margin: 0 auto;
}
.section-profile__container {
  display: flex;
  align-items: center;
  padding-bottom: 100px;
  margin: 0 auto;
}
.section-profile__image {
  max-width: 160px;
  width: 100%;
  height: 100%;
  padding-right: 30px; 
}
.section-profile__wrapper {
  display: block;
}
.section-profile-title-name {
  text-align: left;
  margin-bottom: 15px;
}
.section-profile-title-name-bp950 {
  display: none;
}
.section-profile__text-container {
  margin-bottom: 15px;
}
.section-profile__text {
  text-align: left;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
}
.section-profile__address-mail {
  text-align: left;
}
.section-profile__address-mail-bp950 {
  display: none;
}
.section-profile__text-mailto {
    color: #333;
  }
.section-profile__br-bp950 {
  display: none;
}

@media screen and (max-width:950px){
 .section-profile__wrapper {
    width: 73vw;
}
  .section-profile__container {
    display: block;
    width: 73vw;
  }
  .section-profile__image {
    padding-right: 0;
  }
  .section-profile-title-name {
    display: none;
  }
  .section-profile-title-name-bp950 {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
  .section-profile-title-name span {
    display: block;
  }
  .section-profile__text {
    margin: 0 auto;
  }
  .section-profile__address-mail {
    display: none;
  }
  .section-profile__address-mail-bp950 {
    display: block;
  }
  .section-profile__address-mail-bp950 span {
    display: block;
  }
  .section-profile__text-mailto {
    color: #333;
  }
}
@media screen and (max-width:600px){
.section-profile__wrapper {
    width: 88.8vw;
  }
  .section-profile__container {
    display: block;
    width: 88.8vw;
  }
  .section-profile-title-name-bp950 {
    text-align: left;
  }
  .section-profile-title-name-bp950 span {
    display: block;
  }
  .section-profile__address-mail-bp950 {
    text-align: left;
  }
   .section-profile__text-mailto {
    color: #333;
  }
  .section-profile__text-mailto:visited {
    color: #333;
  }
}

/* Footer */
.footer {
  width: 100vw;
  height: 125px;
  background-color: #F9F9F9;
  }
/***追従するトップへ戻るボタン***/
.float-button__wrap {
    display: none;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.float-button__wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #aaa ;
}
/* 矢印 */
  .arrow {
    width: 20px;
    height: 20px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(-45deg);
    margin-top: 10px;
  }
  /***トップへ戻るボタンここまで***/

  .copyright {
    display: block;
    color: #aaa;
    padding: 50px 0 50px;
  }
  @media screen and (max-width:950px) {
    footer {
      width: 100vw;
      height: 100px;
      background-color: #F9F9F9;
    }
    .float-button__wrap {
    display: none;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 999;
}
.float-button__wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #aaa ;
    transform: scale(0.66);
    }
  }