@charset "UTF-8";
/* CSS Document */
/*body*/
/*title*/
.namae {
  border-bottom: 2px solid #000000;
  border-left: 10px solid #000000;
  max-width: 100%;
  padding-top: 3px;
}
.simsuke {
  display: inline-block;
  font-family: "oohitalic";
  font-size: 2rem;
  margin-left: 10px;
}
.shimura {
  box-sizing: border-box;
  display: inline-block;
  font-family: "oohitalic", sans-serif;
  font-size: 1.5rem;
  margin-left: 5px;
  margin-top: auto;
  margin-bottom: 5px;
}
@media (max-width: 750px) {
  .shimura {
    font-size: 1.4rem;
  }
}
@media (max-width: 450px) {
  .shimura {
    font-size: 1.1rem;
  }
}
.shunsuke {
  box-sizing: border-box;
  display: inline-block;
  font-family: fot-tsukumin-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 5px;
  margin-top: 3px;
}
/*img*/
.jigazou {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/*text*/
.about_text {
  font-family: fot-tsukumin-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media (max-width:450px) {
  .about_text {
    font-size: 0.8rem;
    }}
  .nnn {
    text-decoration: underline;
  }
  .accbox {
    padding: 0;
    max-width: 400px; /*最大幅*/
  }
  /*ラベル*/
  .accbox label {
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.5s;
  }
  /*チェックは隠す*/
  .accbox input {
    display: none;
  }
  /*中身を非表示にしておく*/
  .accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  /*クリックで中身表示*/
  .cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    opacity: 1;
  }