@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);

  /* SP */
@media screen and (max-width: 766px) {
	rt {
	  position: relative;
	  top: 0.5em;
	  transform: translateY(0.5em);
	}
div#container {
  width: 100%; /* 全体の幅を指定 */
}
div#main {
  width: 100%; /* メインコンテンツの幅を指定 */
  float: center; /* 右にフロート */
}
div#sub {
  width: 100%; /* サブコンテンツの幅を指定 */
  float: center; /* 左にフロート */
}
}

  /* PC */
  @media screen and (min-width: 767px) {
	rt {
	  position: relative;
	  top: 0.5em;
	  transform: translateY(0.5em);
	}
div#container {
  width: 100%; /* 全体の幅を指定 */
}
div#main {
  width: 70%; /* メインコンテンツの幅を指定 */
  float: right; /* 右にフロート */
}
div#sub {
  width: 30%; /* サブコンテンツの幅を指定 */
  float: left; /* 左にフロート */
}
}


