

/*-- PC版表示CSS  --*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial','Courier','メイリオ',sans-serif;
}
.header {
  margin-bottom: 40px;
  background-color:#fff;/*-- 背景色1  --*/
  background-repeat: no-repeat;
  background-position:50% 50%;
  background-size:cover;
  padding:0px;
  color:#fff;
}
.wrapper {
  width: 77%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.main {
  width: calc(100% - 200px);
  background-color: #fff;
}
.sidebar {
  width: 25%;
  height: auto;
}
}
.widget:last-child {
  margin-bottom: 0;
}
.widget--sticky {
  position: sticky;
  top: 100px;
}
.footer {
  padding:10px;
  margin-top: 30px;
  text-align:center;
  background-color:#1c9c7c;/*-- 背景色2  --*/
  background-repeat: no-repeat;
  background-position:50% 50%;
  background-size:cover;
  color:#fff;
}

img {
  width: 100%;
  }
  

h2 {
   color: #1c9c7c;/*-- h2色変更  --*/
   }

/*-- 講師テーブル  --*/

.my-parts {
  border-collapse: collapse;
  border: 0px solid rgba(0,0,0,.1);
  table-layout: fixed;
  width: 100%;
}
.my-parts th, .my-parts td {
  border: 0px solid rgba(0,0,0,.1);
  padding: .6em;
  text-align: left;
  background: #fff;
}
.my-parts th {
  background: #fff;
  color: #000;
  font-weight: bold;
}
.my-parts th:first-child {
  width: 120px;
}


/*-- フォーム吹き出し  --*/

  .fukidashi {
  background: #cc3300;/*-- 背景色1  --*/
  padding: .4em .8em .3em;
  margin: 0 0 1em;
  text-align: center;
  color: #fff;/*-- 文字色  --*/
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.fukidashi::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #cc3300;/*-- 背景色2  --*/
  width: 0;
  height: 0;
}
.cp_point {
	position: relative;
	margin: 40px 0 30px;
	padding: 25px 20px 15px 40px;
	border: 1px dotted #cc3300;
	background-color: #fff;
	border-radius: 8px;
}
.cp_point::before {
	position: absolute;
	top: -1em;
	left: 1em;
	content: attr(title);
	padding: .4em 1em 0 1em;
	font-size: 90%;
	font-weight: bold;
	color: #fff;
	height: 27px;
	background-color: #cc3300;
	border-radius: 4px;
}
.cp_point::after {
	position: absolute;
	font-size: 18px;
	color: #fff;
	line-height: 25px;
	text-align: center;
}
.cp_point li {
	position: relative;
	list-style-type: none;
}
.cp_point li::before {
	position: absolute;
	top: .25em;
	left: -1em;
	font-family: FontAwesome;
	content: "";
	color: #333;
}

/*-- スマホ版表示CSS  --*/


@media(max-width:750px){
.wrapper {
  width: 94%;
  margin: 0 auto;
  display: block;
  justify-content: space-between;
}
.main {
  width: auto;
  background-color: #fff;/*-- スマホメイン背景色  --*/
}
.sidebar {
  width: auto;
  height: auto;
}
  }