@charset "UTF-8";

*{
  box-sizing: border-box;
  user-select: none;
  cursor: pointer;
}

body {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-family: "MyFont";
}

@font-face {
  font-family: "MyFont";
  src: url(../MyFont/FlopDesignFONT.woff) format('woff');
}

.wrap {
  overflow: hidden;
}

.toppage {
  width: 100%;
  height: 100vh;
  background-image: url(../img/background-40pc.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

p {
  color: #555;
}
p.top-txt {
  font-size: 14px;
  line-height: 1.8;
  padding-top: 30px;
}

img.topLogo {
  width: 200px;
  padding: 20px 0;
}

.info-txtbox {
  margin: 0 auto;
  border: #B6DCED 3px solid;
  background-color: #F4D96B ;
  width: 600px;
  padding: 10px;
}
p.info-txt-tittle {
  font-size: 24px;
  margin-bottom: 10px;
}
p.info-txt {
  font-size: 14px;
  line-height: 1.3;
}
p.mail {
  font-size: 11px;
  margin-top: 15px;
}



@media  screen and (max-width: 480px) {

  .toppage {
    width: 100%;
    height: 100vh;
    background-image: url(../img/background-40pc.png);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  p.top-txt {
    font-size: 12px;
    line-height: 1.8;
    padding-top: 30px;
  }
  
  img.topLogo {
    width: 200px;
    padding: 20px 0;
  }
  
  .info-txtbox {
    margin: 0 auto;
    width: 350px;
    padding: 10px;
  }
  p.info-txt-tittle {
    font-size: 20px;
    margin-bottom: 10px;
  }
  p.info-txt {
    text-align: justify;
    font-size: 12px;
    line-height: 1.5;
  }
  p.mail {
    font-size: 10px;
    margin-top: 15px;
  }
}