@charset "UTF-8";
/* CSS Document */

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
      margin-top: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #fff;
  background: #000;
}

.container{
  margin: 50px auto;
}
.popup_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none ;
  max-width: 1160px;
    margin: 0 auto;
  
}
.popup_list li{
  width: 30.7%;
  margin-bottom: 40px;
  width:calc(100%/1);/* 横幅を3等分 */
  height:auto;
  display:flex;/* 高さを揃えるための指定 */
  flex-direction:column;/* 高さを揃えるための指定 **/
  margin: 0 auto;
}
@media (min-width : 768px) {
.popup_list li{
  width: 30.7%;
  margin-bottom: 40px;
  width:calc(100%/2);/* 横幅を3等分 */
  height:auto;
  display:flex;/* 高さを揃えるための指定 */
  flex-direction:column;/* 高さを揃えるための指定 **/
  margin: 0 auto;
}
  }
@media (min-width : 1024px) {
.popup_list li{
  width: 30.7%;
  margin-bottom: 40px;
  width:calc(100%/3);/* 横幅を3等分 */
  height:auto;
  display:flex;/* 高さを揃えるための指定 */
  flex-direction:column;/* 高さを揃えるための指定 **/
  margin: 0 auto;
}
}

  
.popup_list li a{
  display: block;
  width: 100%;
  height: 100%;
}
.popup_list li img{
  height: 200px;
  max-width: 200px;
	object-fit: cover;
  border-radius: 3px;
}

/* popup_content */
.popup_bg{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: 100vh;
  background: rgba(64,73,82,0.8);
  transition: 0.4s;
  z-index:999;
}
.popup_content{
  position: relative;	
}
.popup_box{		
  display: none;	
  position: fixed;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000;
  width: 50%;
  background: #fff;				
  padding: 20px;	
}
.popup_box .tit{
  text-align: center;
  margin: 5vw auto;
}
.popup_box .tit span{
  display: inline-block;
  color:#000000;
 font-size: clamp(15px, 3vw, 55px);
  line-height: 30px;
  font-weight: 100;
}
.popup_box img{
  width: 100%;
  border-radius: 3px;
 
}
.popup_box p{
  font-size: clamp(10px, 2vw, 45px);
  line-height: 1.8;
  max-width: 80%;
    margin: 0 auto;
}
/* popup_nav */
.popup_nav .prev{
  position:absolute;
  top:50%;
  left:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index:130;
}
.popup_nav .next{
  position:absolute;
  top:50%;
  right:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}
.popup_nav .prev.disabled,
.popup_nav .next.disabled{
  display: none;
}
/*--close btn--*/
.popup_close{
  width: 30px;
  height: 30px;
  cursor: pointer;
  position:absolute;
  top:20px;
  right:20px;
  z-index:120;
}  
.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #434c55;
  position: absolute;
  left: 50%;
  top: 50%;
}	
.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}	
.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}	
@media screen and (max-width : 768px) {		
  .popup_close{
    top:-10px;
    right:-10px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
  }
  .popup_close span {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 45%;
  }	
  .popup_close span:nth-child(1) {
    transform: translate(-50%, 50%) rotate(45deg);
  }	
  .popup_close span:nth-child(2) {
    transform: translate(-50%, 50%) rotate(-45deg);
  }	
}
@media screen and (max-width : 3000px) {
  .popup_box{
    width: 94%;
    
  }
  .popup_nav .prev{
    left:0.07%;
    width:20px;
  }
  .popup_nav .next{
    right:0.0%;
    width: 20px;
  }
}

@media(max-width:3000px) {
  
  .header{
    display: flex;
    float: inherit;
    position: fixed;
    width:  100%;
    max-height: 680px;
    z-index: 99;
  }
  
  .header h1 {
 
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  padding: 6% 6% ;
   font-size: clamp(20px, 4vw, 55px);
  line-height: 1;
}
 
  .header_works{
    display: none;
  }
  
   
  
   .works h2{
  position:relative;
  max-width: 300px;
  font-weight: 300;
  background-color: #EFEFF2;
  text-align:center;
  font-size: clamp(25px, 3vw, 55px);
  height: 50px;
  padding-top: 148px;
  margin: 0 auto;
}
 
  .contact h2  {
  position:relative;
  max-width: 300px;
  font-weight: 300;
  background-color: #EFEFF2;
  text-align:center;
  font-size: clamp(25px, 3vw, 55px);
  height: 170px;
  padding-top: 148px;
  margin: 0 auto;
}

  .works h3 {
    text-align: center;
    font-size: clamp(20px, 4vw, 55px);
    padding: 90px 50px 0 50px;
    font-weight: 200;}


  #HOME{
    width: 100%;
    margin: 0 auto;
    
    
  }
  /*humbuger*/
  #nav-drawer{
    padding: 6% 6% 0 0;
    text-align:right;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  #nav-open{
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 22px;
  }
  #nav-open span,#nav-open span:before,#nav-open span:after{
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #777;
    display: block;
    content:"";
  }
  #nav-open span:before{
    bottom:-8px;
  }
   #nav-open span:after{
    bottom:-16px;
  }
  
  #nav-close{
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 90%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    padding: 2% 2%; 
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0,0,0,0.55);
  }
  .nav_taitle{
    font-size: 2rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 45px;
  }
  
  #nav-content ul li{
    margin-bottom: 36px;
  }
  
  #nav-content ul li a{
    text-decoration: none;
    font-size: 1.5rem;
    font-weight:400;
    color: #333;
  }
  #nav-input:checked ~ #nav-close{
    display: block;
  }
  #nav-input:checked ~ #nav-content{
    transform: translateX(0%);
  }
  
  .header__navigation {
    display: none;
  }
  
 
  
  
  .works__painting , .works__book , .works__performance , .works__collage , .works__model , .works__amedemo , .works__music {
 position: relative;
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.works__painting::before, .works__book::before, .works__performance::before, .works__collage::before, .works__model::before, .works__amedemo::before, .works__music::before {
  content: "";
  display: flex;
  padding-top: 100%;
}
 
.works__painting img, .works__book img, .works__performance img, .works__collage img, .works__model img, .works__amedemo img, .works__music img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}
.works__painting div, .works__book div, .works__performance div, .works__collage div, .works__model div, .works__amedemo div, .works__music div {
  position: relative;
  width: 31%;
  background: #ffb6c1;
  margin: 1%;
}
.works__painting p, .works__book p, .works__performance p, .works__collage p, .works__model p, .works__amedemo p, .works__music p{
  color: #FFFFFF;
  font-weight: 700;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
  
  .footer nav{
    display: none;
  }
   .footer {
    height: 30px;
  background-color:#FFF;
    
}
  
  
  .contact{
  margin-bottom: 70px;
  font-size: clamp(15px, 1vw, 25px);
}
.contact a{
    text-decoration: none;
    color: #000000;
  }
.contact li {
  list-style-type: none;
}

.contact_background p  {
  padding: 60px 0 60px 0 ;
  font-size: clamp(15px, 2vw, 35px);
}

.contact_sns {
  padding-top: 50px;
  display: flex;
  margin: 0 auto 30px;
  max-width: 290px;
}


.contact_sns ul li {
  width: 40px;
  height: 40vw;
}

.contact_sns_line, .contact_sns_insta, .contact_sns_twitter,.contact_sns_note {
  width: 40px;
  margin: 0 12px 12px 12px;
  margin: 0 auto;
}

.contact_sns_youtube {
  width: 40px;
  margin: 0 12px 12px 12px;
  margin: 3px auto 0;
}

.contact_sns_tiktok{
  width: 30px;
  margin: 0 auto;
}
.contact_sns_note{
 width: 40px;
}



.contact_background {
  background-color: #FFF;
  margin: 0 auto;
}

  .footer_copyright{
    padding-bottom: 100px;
    padding-top: 100px;
    font-size: clamp(9px, 10vw, 11px);
  } 
  
  
}


@media(min-width:3000px) {
  


  .nav_taitle{
    display: none;
  }
  
  .header_works{
    margin: 0 auto;
  }

  .header_painting,.header_book,.header_performance,.header_collage,.header_model,.header_amedemo,.header_music{
  display: inline-block;
  padding: 5px 10px;
  border: solid 2.5px #6E6E6E;
  border-radius: 35px;
  text-decoration: none;
  color: #6E6E6E;
  transition: .4s;
}
.header_painting:hover,.header_book:hover,.header_performance:hover,.header_collage:hover,.header_model:hover,.header_amedemo:hover,.header_music:hover {
 background: #ffbf7f;
  color: #fff;
}
  
  .header h1 {
  max-width:  100%;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  padding: 2% 3% ;
   font-size: clamp(20px, 4vw, 55px);
  line-height: 1;   
}
  .header {
    float: inherit;
    width: 100%;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 1);
    position: sticky;
  top: 0;
  z-index: 999;
  }
  
  .header h1 {
    padding: 40px auto 0;
    font-weight: 500;
    font-size: 5rem;
    text-align: center;
  }

  .header__navigation ul li {
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 3rem;
    color: #333;
    font-weight: 200;
  }
 .header_works li {
   padding-top: 25px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
  }
  .header_works ul li a {
    text-decoration: none;
    font-size: 3rem;
    color: #333;
    font-weight: 200;
  }
 
  
 
 .works h2 {
    text-align: center;
    font-size:clamp(20px, 4vw, 55px);
   
    padding: 150px 50px 10px 50px;
   font-weight: 200;
  }
  .contact h2 {
    text-align: center;
    font-size:clamp(20px, 4vw, 55px);
   
    padding: 350px 50px 10px 50px;
   font-weight: 200;
  }
  .works h3 {
    text-align: center;
    font-size:clamp(20px, 4vw, 55px);
   
    padding: 150px 50px 0 50px;
   font-weight: 200;
  }
  
  
  
  .footer {
    height: 400px;
   
  background-color:#7f7878;
    fontsize: 1.4rem;
    color: #fff;
    position:relative;
}
  .footer_category{
    max-width: 1160px;
    display: flex;
    justify-content: space-around;
    margin: 30px auto 0;
  }
  .footer_works {
    max-width: 100%;
     margin-left:30%;
    padding-top: 20px;
  }
  .footer_works li {
    padding-top: 10px;
  }
.footer li {
  text-align: left;
}
.footer_category a{
  font-size: 3rem;
  text-decoration: none;
}
  .footer_category li{
  padding-top: 30px;
}

.footer_works a, .footer_category a, .footer_sns a {
  color: #EFEFF2;
  text-decoration: none;
}
.footer small {
  color: #FFF;
  display: block;
  padding-top: 50px;
}

.footer  {
  height: 50px auto;
}
 
.contact{
  margin-bottom: 70px;
  font-size: clamp(15px, 1vw, 25px);
}
  .contact {
    font-size: 5rem;
  }
.contact li {
  list-style-type: none;
}

  .contact_background p  {
  font-size: clamp(30px, 4vw, 50px);
     padding: 100px 40px;
    position: relative;
    color: #000;
    font-weight: 500;
    line-height: 1.5; 
}
  .contact a{
    text-decoration: none;
    color: #000000;
  }

.contact_sns {
  display: flex;
  margin: 0 auto 30px;
  max-width: 1160px;
}


.contact_sns ul li {
  width: 40px;
  height: 40vw;
}

.contact_sns_line, .contact_sns_insta, .contact_sns_twitter,.contact_sns_note {
  width: 90px;
  margin: 0 12px 12px 12px;
  margin: 0 auto;
}

.contact_sns_youtube {
  width: 90px;
  margin: 0 12px 12px 12px;
  margin: 3px auto 0;
}

.contact_sns_tiktok{
  width: 80px;
  margin: 0 auto;
}
.contact_sns_note{
 width: 90px;
}



.contact_background {
  background-color: #FFF;
  margin: 0 auto;
  height: 500px;
}
  
  
}




/*.works-wrapper{
  display: flex;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}*/






.square_contents {
  display: flex;
  flex-wrap: wrap;
  margin-right: 15%;
  
}
 
.square_contents a {
  display: block;
  position: relative;
  font-weight: 700;
  color: #FFF;
  font-size: clamp(3rem, 3vw, 4.5rem);
  width: 23%;
  margin: 1%;
  
}
@media(max-width:960px) {
  .square_contents a {
  display: block;
  position: relative;
  font-weight: 700;
  color: #FFF;
  font-size: clamp(3rem, 4vw, 5.5rem);
  width: 60%;
  margin: 2%;
}
}
 
.square_contents a::before {
  content: "";
  display: block;
  padding-top: 100%;
 
}
 
.square_contents p {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%,-50%);
 
}

.square_contents img {
  
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}


.main {
  background-color: #EFEFF2;
}
img {
  width: 100%;
}

