@charset "utf-8";

/* index.html用の設定 */

/* home 設定 */
.topimg img {
  display: block;
  width: 70%;
  margin: 0 auto;
}

/* Fonte について */
.fonte {
  width: calc(100% - 32px);
  margin: 32px auto;
  max-width: 800px;
}
.fonte h1 {
  text-align: center;
  padding-bottom: 32px;
}
.fonte h3 {
  padding-bottom: 14px;
}
.fonte img {
  display: block;
  width: 40%;
  margin: 16px auto;
  border-radius: 25px;
}
.fonte section + section {
  margin-top: 20px;
}

  
/* 表示画面設定 PC */
@media(min-width:600px) {
  /* Fonte について */
  .fonte section {
    display: flex;
  }
  .fonte .desc {
    width: 70%;
  }
  .fonte .pic {
    width: 30%;
  }
  .fonte img {
    width: calc(100% - 32px);
    height: auto;
    margin-top: 0;
  }
  .fonte section:nth-child(odd) {
    flex-direction: row-reverse;
  }

}