html{
  font-size: 62.5%;
}
body{
  font-family: "zen-old-mincho", sans-serif;
  /* font-weight:400 500 700 900; */
  color:#232321;
  font-size: 2.0rem;
  line-height: 1;
  position: relative;
}
body::before{
  content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../../image/heart.jpg)  no-repeat;
    background-size: cover;
    opacity: 0.2;
}
@media screen and (max-width:959px){
  body{
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
*,*::after,*::before{
  box-sizing:border-box;
}
main{
  display: block;

  overflow: hidden;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  text-decoration: none;
  color: #353434;
}
a:hover{
  /* opacity: 0.5; */
}
li{
  list-style-type: none;
}

figure{
  font-size: 0;
}
figcaption{
  font-size: 1.3rem;
  padding: 0 3%;
  text-align: right;

}

/* ------------------------------------------------------- */

     /* form要素の初期設定 */

/* ------------------------------------------------------- */
input, select, textarea,button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* IEのselect要素の右側に表示される矢印を無効にするためのCSS */
select::-ms-expand{
  display: none;
}

input:focus,
select:focus,
textarea:focus{
  outline:0;
}
