.font01 {
font-family:'メイリオ', 'Meiryo', sans-serif;
font-size: 28px; 
}

.font02 {
font-family:'メイリオ', 'Meiryo', sans-serif;
font-size: 15px; 
}

.font03 {
font-family:'メイリオ', 'Meiryo', sans-serif;
font-size: 18px; 
}

/* カルーセル全体 */
.c_sel {
  /* 水平方向中央寄せ */
  display: flex;
  justify-content: center;
}
/* カルーセル内容 */
.cont {
  /* 下の.slideも同じサイズ */
  width: 830px;
  height: 467px;
  overflow: hidden;
  position: relative;
  padding: 0;
  list-style: none;
}
/* スライド切り換え用ラジオボタンは常に非表示 */
.s_sel {
  display: none;
}
/* 各スライド */
.sl {
  /* 上の.containsも同じサイズ */
  width: 830px;
  height: 467px;
  position: absolute;
  /* スライドの初期値は選択されていないので透明にしておく */
  opacity: 0;
}
/* 前へ次へボタン */
.s_btn {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  /* 縦中央から20px上の位置 */
  top: 50%;
  margin-top: -20px;
  /* 上辺と右辺のみ幅5pxの枠線 */
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fdfdfd;
  cursor: pointer;
  /* 普段はボタンはやや薄くする */
  opacity: 0.5;
  /* スライドよりも前面にする */
  z-index: 3;
}
/* ホバー時にボタンを強調 */
.s_btn:hover {
  opacity: 1;
}
/* 前へボタン */
.s_prv {
  left: 15px;
  /* 上辺と右辺の枠線を回転して"＜"にする */
  transform: rotate(-135deg);
}
/* 次へボタン */
.s_nxt {
  right: 15px;
  /* 上辺と右辺の枠線を回転して"＞"にする */
  transform: rotate(45deg);
}
/* スライド移動ボタンエリア */
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
/* スライド移動の各ボタン */
.btn_m {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 100%;
  cursor: pointer;
  /* 普段はやや薄くする */
  opacity: 0.5;
  /* スライドより前面にする */
  z-index: 2;
}
/* ホバー時はやや明るくする */
.btn_m:hover {
  opacity: 0.75;
}
/* スライド移動ボタンの色 */
.btn_m {
  background-color: #fdfdfd;
}
/* 1番目のスライド選択時 */
/* 1番目のスライドの透明度を0にして表示する */
.s_sel:nth-of-type(1):checked ~ .sl:nth-of-type(1) {
  opacity: 1;
}
/* スライド移動ボタンの1個目を明るくする */
/* （今選択されていることが分かるように） */
.s_sel:nth-of-type(1):checked ~ .move_controler .btn_m:nth-of-type(1) {
  opacity: 1;
}
.s_sel:nth-of-type(2):checked ~ .sl:nth-of-type(2) {
  opacity: 1;
}
/* 2番目のスライド選択時（1番目のスライドと同じことをする） */
.s_sel:nth-of-type(2):checked ~ .move_controler .btn_m:nth-of-type(2) {
  opacity: 1;
}
/* 3番目のスライド選択時 */
.s_sel:nth-of-type(3):checked ~ .sl:nth-of-type(3) {
  opacity: 1;
}
.s_sel:nth-of-type(3):checked ~ .move_controler
  .btn_m:nth-of-type(3) {
  opacity: 1;
}
/* 4番目のスライド選択時 */
.s_sel:nth-of-type(4):checked ~ .sl:nth-of-type(4) {
  opacity: 1;
}
.s_sel:nth-of-type(4):checked
  ~ .move_controler
  .btn_m:nth-of-type(4) {
  opacity: 1;
}
/* 5番目のスライド選択時 */
.s_sel:nth-of-type(5):checked ~ .sl:nth-of-type(5) {
  opacity: 1;
}
.s_sel:nth-of-type(5):checked
  ~ .move_controler
  .btn_m:nth-of-type(5) {
  opacity: 1;
}
/* 6番目のスライド選択時 */
.s_sel:nth-of-type(6):checked ~ .sl:nth-of-type(6) {
  opacity: 1;
}
.s_sel:nth-of-type(6):checked
  ~ .move_controler
  .btn_m:nth-of-type(6) {
  opacity: 1;
}
