/* CSS Document */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■   　デフォルト   　■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

html, body, div, span, iframe,article,figure,
p, a, img, small, dl, dt, dd, ol, ul, li,
h1, h2, h3, h4, h5,h6{
  border: 0;
  margin: 0;
  padding: 0;
  font-family: "elza", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-feature-settings: "palt";
  vertical-align: bottom;
}
html {
  scroll-behavior: smooth;
  background-color:#FFF0F0;

}

::selection {
  background:#ff7776;
  color:#FFFFFF;
}

::-moz-selection {
  background:#ff7776;
  color:#FFFFFF;
}

body {
  background: #FFF0F0;
}

html,body {
  line-height: 1;
  width: 100%;
  min-width: 1200px;
  height: 100%;
  min-height:950px;
  position: relative;
}
ol, ul {
  list-style: none;
}
a{
  outline:none;
  text-decoration:none;
  cursor: pointer;
  display: block;
  }
a img {
  border: none;
  border-style:none;
}

img{
  width: 100%;
  height: auto;
}

li{
  list-style:none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: '';
  display: table;
  clear: both;
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*common*/
header{
  width:calc(100% - 100px);
  position: relative;
  padding: 50px;
}
header.fixed{
  display: none;
  position:fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header h1{
  position: absolute;
  top: 50px;
  left: 50px;
}

header h1 a{
  font-size: 40px;
  letter-spacing: 0.02em;
}


header ul{
  position: absolute;
  top: 50px;
  right: 50px;
  display: flex;
  flex-wrap: wrap;
}
header ul li{
  padding-left: 95px;

}
header ul li a{
  font-size: 40px;
  letter-spacing: 0.02em;
}

.container{
  width: calc(100% - 100px);
  margin: 50px;
  display: grid;
  gap:50px;
  grid-template-rows: masonry;
}

@media (max-width:2600px) {
  .container{
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width:2000px) {
  .container{
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width:1550px) {
  .container{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width:1200px) {
  .container{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:768px) {
  .container{
    grid-template-columns: repeat(2, 1fr);
  }
}

.container .post{
  min-width:260px;
  height:0;
  padding-bottom: 100%;
  position: relative;
  animation-name:fadeInAnime;
  animation-duration:0.4s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}




.container .post a{
  width: 100%;
  height: 100%;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left:0;
  transition: 0.3s ease all;
}


.container .post a:hover{
  animation: poyopoyo 1s ease-out ;
}
@keyframes poyopoyo {
    15% {
        /* 落ちてきた衝撃で縦に少しつぶれる */
        transform: scale(0.9);
    }
    30% {
        /* つぶれた反動で一気に縦に伸びる */
        transform: scale(1.1);
    }
    45% {
        /* 伸びた反動で縦につぶれる */
        transform: scale(0.9);
    }
    60% {
        /* つぶれた反動で縦に少し伸びる */
        transform: scale(1.05);
    }
    75% {
        /* 伸びた反動でほんの少し縦につぶれる */
        transform: scale(1.01);
    }
    100% {
        /* 通常のサイズになる */
        transform: scale(1);
    }
}

.view-more-button,
.page-load-status{
  opacity: 0;
}

.about p{
  padding:100px 50px 0;
  font-size: 20px;
  line-height: 30px;
}

.about p a{
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.artlist_post{
  width:100%;
  height: calc(100% - 50px);
  position: relative;
}
.artlist_post .inner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation-name:fadeInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  animation-delay:0.5s;
  opacity:0;
}
.artlist_post .inner .cotent figure{
  width: 600px;
  height: 600px;
  display: block;
  background-image:;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 50px;
}
.artlist_post .inner .cotent p{
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}


.single_footer{
  width: 100%;
  height: 30px;
  position: relative;
  padding-bottom: 50px;
}
.single_footer a.close{
  font-size: 30px;
  text-align: center;
}


.nav-previous,
.nav-next{
  position: absolute;
  top: 0;
}
.nav-previous{
  left:50px;
}
.nav-next{
  right:50px;
}
.nav-previous a,
.nav-next a{
  font-size: 30px;
}
.nav-previous a{
  background: url(../images/icon_prev.png) no-repeat left top 2px;
  background-size: 22px;
  padding-left: 42px;
}
.nav-next a{
  background: url(../images/icon_next.png) no-repeat right top 2px;
  background-size: 22px;
  padding-right: 42px;
}



.pagetop{
  text-align: right;
  padding:50px;
}
.pagetop a{
  display: inline-block;
  text-align: right;
  background: url(../images/pagetop_icon.png) no-repeat left top 2px;
  background-size:28px;
  padding-left:55px;
  font-size: 40px;
}


