@charset "uft-8";


  
  /*画像を出現させるアニメーションCSS*/
  
  .flipLeft{
  animation-name: flipLeft;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  perspective-origin: left center;
  opacity: 0;
  }
  
  @keyframes flipLeft{
    from {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
      opacity: 0;
    }
  
    to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    }
  }
  

  .Event {
    background-color: #f8f8f8;
    padding-top: 25px;
    padding-bottom: 10px;
  }
  .Event h2{
    font-size: 22px;
    text-align: center;
  }
  .Event h2::after{
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .item-list {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .item-list li {
    text-align: center;
    flex-shrink: 0;
    width: 700px;
    margin: 0 auto;
  }
  .item-list li:first-child{
    margin: 0 auto;
  }
  .item-list dl {
    margin-top: 20px;
  }
  .item-list dt {
    font-weight: bold;
  }
  
  .item-list .denden {
    font-weight: bold;
    margin-top: 15px;
  }
  .item-list .denden a:hover {
    color: #FD6DBF;
  }
  
  .item-list dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: -15px;
    margin-left: 0;
  }
  .item-list .price {
    font-weight: bold;
    margin-top: 15px;
  }


  #modal-container {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    
  }

  #modal-container > div {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    
  }

  #modal-container > div> img {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 30px);
  }
  img.popup {
    cursor: pointer;
  }

  .wrap {
    width: 90%;
    margin: 0 auto;
  }
  
  .demo01 {
    margin: 0 auto;
  }
  
  .item {
    width: 200px;
  }
  
  .item img {
    width: 100%;
    margin-top: 25px;
  }
  

  .title-text {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .title-text h1 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 25px;
  }
  .title-text h1::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin: 20px auto 20px auto;
  }


.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .item-list {
    margin-top: 20px;
    row-gap: 40px;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .item-list li {
    width: 220px;
    margin-left: 30px;
  }
}

