@charset "utf-8";
* {
    margin: 0;
    padding: 0;
  }
body{
    background-color: whitesmoke;
    background-repeat: no-repeat;
}
/* イベント情報 */
.event-top{
    font-size: 5em;
    text-align: center;
}
.event{
    /* safari対応 */
    display:-webkit-box;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;  
    justify-content: space-around;
}
.eventbox{
    /* safari対応 */
    width: 40%;
    text-align: center;
    padding: 1em;
}
/*商品を二列で並べる*/
.list{
    padding: 0;
    margin: 0;
    /* safari対応 */
    display:-webkit-box;
    display:-ms-flexbox;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
}
.item{
    background-color:beige;
    color: white;
    margin: 5px;
    width: calc(50% - 10px);
}
a{
    clear: both;
    text-decoration: none;
    font-size: 30px;
}
div{
    clear: both;
}
  /* トップへ戻る */
#page_top{
      transform: scale(2,2);
      width: 50px;
      height: 50px;
      position: fixed;
      right: 50px;
      bottom: -100px;
      left: auto;
      background: #00A4AC;
      opacity: 0.6;
      border-radius: 50%;
    }
#page_top a{
      position: relative;
      display: block;
      width: 50px;
      height: 50px;
      text-decoration: none;
    }
#page_top a::before{
      font-weight: 900;
      content: '\f102';
      font-size: 25px;
      color: #fff;
      position: absolute;
      width: 25px;
      height: 25px;
      top: -5px;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      text-align: center;
    }
.menu{
    margin :20px;
    font-size: 2em;
    /* text-shadow: 0em 0em 0.1em  black; */
    color: black;
    border-bottom: 2px solid #00A5BF;
}
.text{
    color: black;
    font-size: 1em;
    padding: 0 10em;
    padding-left: 2em;
}
.text2{
    color: black;
    font-size: 20px;         /*textとフォントサイズが異なる*/
    padding: 0 10em;
    padding-left: 2em;
}
p{
    margin: 10;
    padding: 100;
}
/* 画像右寄せ */
.main-images{
    width: 10em;
    height: 10em;
    object-fit: cover;  /*縦横比維持したままトリミング*/
    float:right;
    border-radius: 25% 10%;
    padding: 0 50px 30px 0;
}
.images{
    border-radius: 25% 10%;
    padding: 50px 0 0 50px;
}
/*マスターの画像*/
.images2{
    padding: 25px 0 0 25px;
    width: 400px;
    height: 400px;
}
.transform{
    margin: 6em 0 0 0;
    transform: scale(1.2);
}
