@charset "utf-8";




/***********右上に文字の箱***********/
.white{
    width: 55%;
    height: fit-content;
    margin: 150px auto;
    padding-bottom: 0;
}

.white img{
    width: 95%;
}

/***********写真並べる設定***********/
.zone{
    padding: 50px;
}

.step{
    display: flex;
    justify-content: space-between;
}

/***********ホバー***********/
.hover {
    position: relative;
    width: 100%;
    height:100%;
    overflow: hidden;
  }
  .hover .hover-img {
    margin: 0;
    padding: 0;
  }
  .hover-img img {
    width: 100%;
    height: 100%;
    padding: 5px;
  }
  .hover .hover-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0,0,0,0.65);
    /*要素の大きさを0にしt表示させない*/
    transform: scale(0);
    /*ホバーの動き方*/
    transition: .35s ease-in-out;
  }
  .hover .hover-text .text1 {
    font-size: 15px;
    padding: 10px 20px;
  }
  .hover .hover-text .text2 {
    font-weight: 300;
    font-size: 16px;
    padding: 0 20px;
  }
  /*ホバーエフェクト*/
  .hover:hover .hover-text {
    /*要素の大きさを1にして表示*/
    transform: scale(1);
  }

/********************************************/

/****************レスポンシブ******************/

/********************************************/

@media screen and (max-width: 600px) {
    html {
        font-size: 75%;
    } 


/***********写真並べる設定***********/
.zone{
    padding: 50px 10px;
}    

.white{
    width: 95%;
    margin-top: 50px;
}    

h2{
  font-size: 45px;
}

}