@charset "UTF-8";
p {
  line-height: 1.8; }

.box {
  width: 15%;
  padding: 2px 0px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  color: #3B3838;
  background-color: #FFCF37;
  float: left;
  border-radius: 5px; }
  @media screen and (max-width: 500px) {
    .box {
      width: 12%;
      width: auto;
      padding: 2px 20px;
      font-size: 16px !important; } }
  .box_ver01 {
    float: none;
    display: inline-block;
    margin-bottom: 0;
    margin: 10px 0; }
  .box_ver02 {
    width: auto; }

.box1 {
  width: 30%;
  padding: 2px 1px 1px 2px;
  text-align: center;
  margin-bottom: 0px;
  margin-right: 10px;
  background-color: #FFCF37;
  float: left;
  border-radius: 5px; }
  @media screen and (max-width: 500px) {
    .box1 {
      width: 90px;
      float: none;
      display: inline-block;
      margin-right: 0; } }
  .box1_ver01 {
    width: 25%; }
    @media screen and (max-width: 500px) {
      .box1_ver01 {
        width: 90px; } }

.box2 {
  padding: 2px 0px;
  text-align: left;
  font-size: 18px;
  color: #3B3838;
  background-color: #FFFFFF;
  margin: 0 auto; }
  .box2_ver01 {
    line-height: 1.3; }
    @media screen and (min-width: 501px) {
      .box2_ver01 {
        display: inline-block; } }

.box3 {
  padding: 2px 1px 2px 2px;
  text-align: left;
  background-color: #FFFBF1; }
  @media screen and (max-width: 500px) {
    .box3 {
      display: inline; } }

.box4 {
  width: 20%;
  padding: 2px 1px 1px 2px;
  text-align: center;
  margin-bottom: 0px;
  margin-right: 10px;
  background-color: #FFCF37;
  float: left;
  border-radius: 5px; }

.p1 {
  font-size: 23px;
  color: #3B3838;
  margin-bottom: 15px; }

.p2 {
  font-size: 23px;
  color: #3B3838;
  padding-left: 2.4em;
  margin-bottom: 10px;
  text-indent: -2.4em; }
  @media screen and (max-width: 500px) {
    .p2 {
      padding-left: 0;
      text-indent: 0;
      line-height: 1.3; } }

.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  border-radius: 20px;
  padding: 12px 20px;
  min-width: 120px;
  max-width: 100%;
  color: #3B3838;
  font-size: 16px;
  background: #FFFBF1;
  border: solid 3px #999999;
  box-sizing: border-box; }
  @media screen and (max-width: 500px) {
    .balloon1-left {
      font-size: 14px !important;
      border: solid 1px #999999 !important;
      padding: 10px !important; } }
  .balloon1-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #FFFBF1;
    z-index: 2; }
  .balloon1-left:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid #999999;
    z-index: 1; }
    @media screen and (max-width: 500px) {
      .balloon1-left:after {
        left: -28px !important; } }

.balloon1-left p {
  margin: 0;
  padding: 0; }

.acbox {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */ }

.acbox label {
  width: 270px;
  height: 40px;
  font-size: 19px;
  /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: left;
  background: #E2F0D9;
  /* ラベルの背景色 */
  position: relative;
  display: block;
  padding: 8px;
  border-radius: 0px;
  /* ラベルの角の丸み */
  cursor: pointer;
  color: #3B3838; }

.acbox label:hover {
  background: #F1F8EC;
  /* ラベルにマウスを乗せた時の背景色 */ }

.acbox input {
  display: none; }

.acbox label:after {
  color: #3B3838;
  content: "学習内容を表示 ▼";
  /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 65px;
  margin-top: -13px; }

.acbox input:checked ~ label::after {
  content: "学習内容を閉じる ▲";
  /* ラベルをクリックした後のアイコン */ }

.acbox div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s;
  /* 開閉スピードの設定 */ }

.acbox input:checked ~ div {
  height: auto;
  padding: 0px;
  /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #fff;
  /* 開いた部分の背景色 */
  opacity: 1; }

.acbox input:checked ~ label {
  background: #E2F0D9;
  /* クリック後のラベルの背景色 */ }

.acbox-under {
  font-size: 19px;
  /* 開いた部分の文字サイズ */
  color: #000000;
  /* 開いた部分の文字色 */ }
  @media screen and (max-width: 500px) {
    .acbox-under {
      font-size: 16px; } }

.under1 {
  background: linear-gradient(transparent 78%, #FDB2D2 70%); }
  .under1_ver01 {
    background: linear-gradient(transparent 90%, #FFCF37 80%); }

.maru {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 10px;
  flex-flow: column;
  vertical-align: top;
  background-color: #FFCF37;
  margin-right: 10px; }

.maru2 {
  display: inline-flex;
  margin-bottom: 10px;
  justify-content: start;
  flex-flow: column;
  vertical-align: top;
  background-color: #FFFFFF; }

/* 円の大きさ */
.size_normal {
  width: 30px;
  height: 30px; }
  @media screen and (max-width: 500px) {
    .size_normal {
      width: 25px;
      height: 25px; } }

/* 円の大きさ */
.size_normal2 {
  width: 500px;
  height: 30px; }
  @media screen and (max-width: 500px) {
    .size_normal2 {
      width: auto; } }

/* 文字の大きさ */
.letter1 {
  font-size: 1em;
  line-height: 1.5em; }

/* 文字の大きさ */
.letter2 {
  font-size: 24px;
  line-height: 1.5em; }

/* 円と文字の色 */
.text1 {
  color: #3B3838; }

/* 円と文字の色 */
.text2 {
  color: #3B3838; }

.mb20 {
  margin-bottom: 20px !important; }

@media screen and (max-width: 500px) {
  h1 {
    line-height: 3; }
  img {
    width: 100%; }
  table {
    width: 100%;
    margin-left: 0 !important; }
  .mt10_SP {
    margin-top: 10px; }
  .mt20_SP {
    margin-top: 20px; }
  .mb10_SP {
    margin-bottom: 10px; }
  .mb20_SP {
    margin-bottom: 20px; }
  .fs20 {
    font-size: 20px !important; }
  .fs19 {
    font-size: 19px !important; }
  .fs16 {
    font-size: 16px !important; }
  .fs14 {
    font-size: 14px !important; }
  .wauto {
    width: auto !important; }
  .w50p {
    width: 50% !important; }
  .rtt90 {
    transform: rotate(90deg); } }

@media screen and (min-width: 501px) {
  .d_none_PC {
    display: none; } }

@media screen and (max-width: 500px) {
  .d_none_SP {
    display: none; } }

@media screen and (max-width: 500px) {
  .table01 {
    width: 100%; } }

@media screen and (max-width: 500px) {
  .table01__tr01 {
    display: flex;
    flex-direction: column; } }

@media screen and (min-width: 501px) {
  .table01__td01 {
    position: relative;
    top: -20px;
    right: 50px; } }

@media screen and (max-width: 500px) {
  .table01__td02 {
    width: 35%; } }

@media screen and (max-width: 500px) {
  .table01__td03 img {
    width: auto; } }

@media screen and (max-width: 500px) {
  .table01__td04 {
    width: 30%; } }

@media screen and (max-width: 500px) {
  .table01__td05 {
    text-align: right; } }

@media screen and (max-width: 500px) {
  .table01__td06 {
    font-size: 18px !important; } }

@media screen and (max-width: 500px) {
  .table01__td07 {
    text-indent: -2em;
    padding-left: 2em; } }

@media screen and (max-width: 500px) {
  .table01__td08 {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px; }
    .table01__td08 img {
      width: auto; } }

@media screen and (max-width: 500px) {
  .table01__td09 {
    width: 100%; } }

@media screen and (max-width: 500px) {
  .table02 tbody {
    display: flex;
    flex-direction: column; }
  .table02__tr01 {
    display: flex;
    flex-direction: column; }
  .table02__tr02 {
    display: flex;
    flex-direction: column;
    border-bottom: none !important; }
  .table02__td01 {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-left: none !important;
    border-bottom: 2px dashed #FFCF37; }
    .table02__td01:last-child {
      border-bottom: none; } }

@media screen and (max-width: 500px) {
  .ul01 {
    padding-left: 1em;
    line-height: 1.8; }
    .ul01_ver01 {
      font-size: 18px !important; } }

@media screen and (max-width: 500px) {
  .ul02 {
    padding-left: 2em; } }

@media screen and (max-width: 500px) {
  .ul03 {
    line-height: 1.8; } }

@media screen and (max-width: 500px) {
  .ttl01 {
    margin: 10px 0;
    display: block; } }

@media screen and (min-width: 501px) {
  .ttl01_ver01 {
    display: block; } }

@media screen and (max-width: 500px) {
  .ttl02 {
    border-left: 6px solid #ffcf36;
    padding-left: 10px;
    display: block;
    line-height: 1.2; } }

@media screen and (max-width: 500px) {
  .flex01 {
    display: flex;
    flex-direction: column; }
    .flex01 > td {
      width: 100% !important;
      margin-bottom: 10px; } }

@media screen and (max-width: 500px) {
  .flex02 {
    display: flex; } }

@media screen and (max-width: 500px) {
  .flex03 {
    display: flex;
    flex-direction: column; }
    .flex03 > td {
      width: 100% !important;
      margin-bottom: 10px;
      border: none !important; } }

.dl01 {
  display: flex;
  border: 2px solid #999;
  border-bottom: none; }
  @media screen and (max-width: 500px) {
    .dl01 {
      flex-direction: column; } }
  @media screen and (min-width: 501px) {
    .dl01_ver01 {
      width: 60%;
      margin: 0 auto; } }
  .dl01__wrap01 {
    display: flex;
    margin: 0;
    border-bottom: 2px solid #999; }
  .dl01__wrap03 {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0; }
  .dl01__item01 {
    padding: 10px;
    border-bottom: 2px solid #999; }
  .dl01__ttl01, .dl01__ttl02 {
    flex: 0 0 auto;
    align-self: center;
    font-weight: bold;
    color: #3B3838; }
  .dl01__ttl01 {
    width: 100%;
    border-bottom: 2px solid #999;
    text-align: center;
    padding: 10px;
    background-color: #fff8dc;
    box-sizing: border-box; }
    @media screen and (min-width: 501px) {
      .dl01__ttl01 {
        width: auto;
        align-self: stretch;
        display: flex;
        align-items: center;
        border-right: 2px solid #999; } }
    @media screen and (max-width: 500px) {
      .dl01__ttl01_ver01 {
        text-align: left;
        font-size: 18px; } }
  .dl01__ttl02 {
    flex-basis: 7em;
    padding: 10px;
    box-sizing: border-box; }
    .dl01__ttl02_ver01 {
      flex-basis: 6em; }
  .dl01__date01 {
    margin: 0;
    width: 100%; }
  .dl01__date02 {
    border-left: 2px solid #999;
    margin: 0;
    padding: 10px;
    box-sizing: border-box; }
    .dl01__date02 ul {
      margin: 0; }

.dl02 {
  display: flex;
  border: 2px solid #999;
  border-bottom: none;
  flex-direction: column;
  width: 80%;
  margin: 0 auto; }
  @media screen and (max-width: 500px) {
    .dl02 {
      width: auto; } }
  .dl02__wrap01 {
    display: flex;
    margin: 0;
    border-bottom: 2px solid #999; }
    @media screen and (max-width: 500px) {
      .dl02__wrap01 {
        display: block; } }
  @media screen and (max-width: 500px) {
    .dl02__wrap03 {
      border-bottom: 2px solid #FFCF37;
      padding-bottom: 5px; } }
  .dl02__ttl01, .dl02__ttl02 {
    flex: 0 0 auto;
    align-self: center;
    font-weight: bold;
    color: #3B3838; }
  .dl02__ttl01 {
    width: 100%;
    border-bottom: 2px solid #999;
    padding: 10px;
    background-color: #fff8dc;
    box-sizing: border-box;
    font-size: 18px; }
  .dl02__ttl02 {
    flex-basis: 12em;
    padding: 10px;
    box-sizing: border-box; }
  .dl02__date01 {
    margin: 0; }
  .dl02__date02 {
    border-left: 2px solid #999;
    margin: 0;
    padding: 10px;
    box-sizing: border-box; }
    @media screen and (min-width: 501px) {
      .dl02__date02 {
        padding-left: 0; } }
    @media screen and (max-width: 500px) {
      .dl02__date02 {
        border-left: none; }
        .dl02__date02 ul {
          margin: 0; }
          .dl02__date02 ul li {
            margin-bottom: 10px; }
            .dl02__date02 ul li:last-child {
              margin-bottom: 0; } }
  .dl02__txt01 {
    font-size: 18px; }

@media screen and (max-width: 500px) {
  .font3_c {
    width: 50px; } }

/*# sourceMappingURL=a.css.map */