/* CSS Document */
img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}
body {
  color: #000000;
  /* お好みで */
  -webkit-text-size-adjust: 100%;
  /* 横向きにしたときにフォントサイズが変わらないように */
  line-height: 1.5em;
}
.wrapper {
  /* この要素で画面最大幅を限定します。 */
  max-width: 950px;
  box-sizing: border-box;
  margin: 0 auto;
}
.wrapper_inner {
  padding: 1.5rem;
}
a {
  color: #00a9b0;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  transition: 0.5s;
}

@media screen and (max-width: 1000px) {
	.wrapper {
		padding: 0 0.5rem;
	}
}

@media screen and (max-width: 736px) {
	.wrapper_inner {
  padding: 0.8rem;
}
}


/***************************
 ** flexible boxと子要素の関係
 * flexible box仕様には3段階あります。box,flexbox,flex
 * ブラウザによって実装段階がそれぞれ異なるので、注意すること
 *
 * 横並びのboxなのでクラス名を「flex_row」に変更
 */
.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- ie10 ---*/
  display: -webkit-flex; /*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify; /*--- Androidブラウザ ---*/
  -ms-flex-pack: justify; /*--- ie10 ---*/
  -webkit-justify-content: space-between; /*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch; /*--- Androidブラウザ ---*/
  -ms-flex-align: stretch; /*--- ie10 ---*/
  -webkit-align-items: stretch; /*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal; /*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row; /*--- ie10 ---*/
  -webkit-flex-direction: row; /*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
  /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
  /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap; /*--- ie10 ---*/
  -webkit-flex-wrap: nowrap; /*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row > * {
  /**** flexible box関連指定 ****/
  /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1; /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1; /*--- ie10 ---*/
  -webkit-flex: 1 1 auto; /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1; /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1; /*--- Androidブラウザ ---*/
  -ms-flex-order: 0; /*--- ie10 ---*/
  -webkit-order: 0; /*--- mac old safari ---*/
  order: 0;
}
@media screen and (max-width: 736px) {
  /***************************
 * スマホの場合にどうするかを記載するので接頭辞として、「sp_」を追加
 */
  .sp_flex_col {
    /* flexアイテムの並び方向 */
    -webkit-box-orient: vertical; /*--- Androidブラウザ 2つに分かれている ---*/
    -ms-flex-direction: column; /*--- ie10 ---*/
    -webkit-flex-direction: column; /*--- mac old safari ---*/
    flex-direction: column;
  }
  .sp_flex_col > * {
    width: 100%;
  }
  /***************************
 ** ここは参考です。クラス名など適切に置き換えてください。
 */
  .sp_flex_2row2col {
    /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
    -ms-flex-wrap: wrap; /*--- ie10 ---*/
    -webkit-flex-wrap: wrap; /*--- mac old safari ---*/
    flex-wrap: wrap;
  }
  .sp_flex_2row2col > * {
    width: 50%;
    box-sizing: border-box;
  }
}
/***************************
 ** PC・PS 表示非表示
 */
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media screen and (max-width: 736px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/***************************
 ** 共通
 */
strong {
  font-weight: 500;
  color: #00a9b0;
}
.ttl_h3 {
  border-left: solid 6px #00a9b0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding: 0.1rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #00a9b0;
}
.ttl_h3 span {
  text-decoration: underline;
  color: #333333;
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 1rem;
}
.ttl_h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
}
/*ラインマーカー風*/
.yellow {
  background: linear-gradient(transparent 50%, #ffff66 50%);
}
.red {
  color: #FF0004;
	font-weight: 500;
}
.green {
  color: #00a9b0;
}
.center_img {
  text-align: center;
}


@media screen and (max-width: 736px){
	.ttl_h3 {
  font-size: 1.1rem;
}
	.ttl_h3 span {
    margin-left: 0rem;
		font-size: 0.8rem;
}
	
	.ttl_h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
}


/***************************
 ** シャープヘッダー調整用
 */
.header_wrapper {
  max-width: 990px;
  margin: 0 auto;
}

.header_wrapper .header-top {
  border: none;
}

#container .footer-content {
  max-width: 1148px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .header_wrapper .menu-bar {
    top: auto;
  }
}


/***************************
 ** fv
 */
#fv {
  margin-bottom: 3rem;
}

#fv h1 {
  text-align: center;
  margin-bottom:0;
  /*background-image: url("../img/pc/fv_bg.png");
  background-position: left top;*/
  padding: 0;
}

@media screen and (max-width: 736px) {
  #fv {
    margin-bottom: 1rem;
  }
  
	#fv h1 {
    text-align: center;
    margin-bottom:1rem;
    background-image:none;
    width: 100%;
  }
}


/***************************
 ** 相談ページリンクブロック
 */
.consultation {
  border: 1px solid #ccc;
  margin: 2rem 0 4rem;
  background: #fff;
}

.consultation_ttl {
  background: #f6f6f6;
  display: table;
  width: 100%;
}

.consultation_ttl_img {
  display: table-cell;
  padding: 0.5rem 0.5rem 0 1.5rem;
}

.consultation_ttl_text {
  display: table-cell;
  font-size: 1.75rem;
  font-weight: 500;
  vertical-align: middle;
  padding: 0.5rem;
  line-height: 1.4;
}

.consultation_ttl_sub {
  display: inline-block;
  color: #e6000d;
  font-size: 1.375rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #e6000d;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.consultation_detail {
  padding: 1.5rem;
}

.consultation_detail_ttl {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.8rem;
}

.consultation_list {
  margin-bottom: 1.5rem;
}

.consultation_list li {
  flex-basis: 32%;
  box-sizing: border-box;
  background: #f6f6f6;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

.consultation_list li:nth-child(2) {
  margin: 0 2%;
}

.consultation_list_ttl {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.consultation_list li p {
  font-size: 0.875rem;
}

.consultation_list li p:first-of-type {
  text-align: center;
  margin-bottom: 0.5rem;
}

.consultation_btn {
  display: block;
  text-align: center;
  background: #e6000d;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  line-height: 1.4;
  box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5);
}

.consultation_btn::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin-left: 0.5em;
}

@media screen and (max-width: 736px) {
  .consultation {
    margin: 1rem 0;
  }

  .consultation_ttl {
    display: block;
  }

  .consultation_ttl_img {
    display: block;
    padding: 0.5rem 0.5rem 0 0.5rem;
    text-align: center;
  }
  
  .consultation_ttl_img img {
    width: 30%;
  }

  .consultation_ttl_text {
    display: block;
    font-size: 1.25rem;
    padding: 0.8rem;
  }

  .consultation_ttl_sub {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .consultation_ttl_text br {
    display: none;
  }

  .consultation_detail {
    padding: 1rem;
  }

  .consultation_detail_ttl {
    font-size: 1.125rem;
  }
  
  .consultation_list {
    margin-bottom: 1rem;
  }

  .consultation_list li {
    flex-basis: auto;
    padding: 0.8rem;
  }
  
  .consultation_list li:not(:last-child) {
    margin-bottom: 0.8rem;
  }

  .consultation_list li:nth-child(2) {
    margin: 0 0 0.8rem;
  }

  .consultation_list_ttl {
    font-size: 1rem;
  }

  .consultation_btn {
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1rem;
  }

  .consultation_btn::after {
    width: 10px;
    height: 10px;
  }
}


/***************************
 ** オンラインセミナー申込
 */
#mini_cv {
    background: #f0f0f0;
    margin-bottom: 0;
    padding: 1rem 0;
}

#mini_cv .yvideo {
    max-width: 950px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
    border: 3px solid #e6000d;
    box-sizing: border-box;
}

#mini_cv h2 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0.5rem auto;
    display: block;
    line-height: 3rem;
}
#mini_cv h2 span {
    color: #fff;
    font-weight: 500;
    background: #e6000d;
    border-radius: 1.1rem;
    padding: 0.2rem 1rem;
    margin-right: 0.5rem;
	font-size: 1.4rem
}
#mini_cv p span {
    font-size: 120%;
    font-weight: 500;
}

#mini_cv .yvideo_box {
    margin: 1rem 0;
}

#mini_cv .yvideo_box::before {
    content: "";
    background: url(../img/img_minicv_fukidashi.png) no-repeat;
    width: 140px;
    height: 156px;
    display: block;
    background-size: contain;
    left: 7rem;
    bottom: 19.5rem;
    position: absolute;
}

@media screen and (max-width: 736px) {
#mini_cv h2 {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin: 0 auto 0.5rem;
}

#mini_cv h2 span {
    font-size: 1rem;
    border-radius: 0.9rem;
}
#mini_cv .yvideo {
    width: 94%;
    padding: 0.5rem;
    border: 1px solid #e6000d;
}
#mini_cv .yvideo_box::before {
    width: 30vw;
    height: 44vw;
    left: -0.5rem;
    bottom: 7.5rem;
    z-index: 2;
}
#mini_cv p{
    box-sizing: border-box;
    margin-left: 38%;
    text-align: left;
    width: 62%;
    font-size: 90%;
    line-height: 150%;
}
	
}


/***************************
 ** 3年連続No.１　
 */
#intro {
    text-align: center;
    margin-bottom: 0;
}
@media screen and (max-width: 736px) {
  #intro {
    margin-bottom: 0;
		padding: 0;
  }
}

/***************************
 ** #main
 */
main {
  display: block;
  /* for ie10 */
}

/***************************
 ** section 共通
 */
section {
  margin-bottom: 6rem;
}
.sec_ttl {
  background-color: #e8f7f8;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px 10px 0 0;
}
.sec_ttl span {
  text-decoration: underline;
  color: #333333;
  font-weight: normal;
  margin-left: 100px;
}

.left_area {
  margin-right: 1rem;
}
.right_area {
  margin-left: 1rem;
}
h3.sub_ttl {
  background-color: #330000;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 0.8rem 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 736px) {
  section {
    margin-bottom: 3rem;
  }
	
	.sec_ttl {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
	.sec_ttl span {
  margin-left: 18%;
		font-size: 0.8rem;
}
  
  .left_area {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .right_area {
    margin-left: 0;
		margin-bottom: 1rem;
  }
 
  h3.sub_ttl {
    padding: 0.3rem;
    font-size: 1.2rem;
  }
}

/***************************
 ** 理由
 */
#reason_ttl {
  padding: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.reason {
  border: #cccccc 1px solid;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.reason_block {
  margin-bottom: 2rem;
}

@media screen and (max-width: 736px) {
  #reason_ttl {
    padding: 1rem 0.5rem;
    margin-bottom: 0;
  }
	.reason {
  margin-bottom: 1rem;
  }
	.reason_block {
  margin-bottom: 1rem;
}
}

/***************************
 ** イラスト+吹き出し
 */
.point {
  border: #ffd74c 1px solid;
  border-radius: 10px;
  margin: 0 auto 2rem;
  background-image: url("../img/point_bg.png");
  width: 94%;
}
.point_block {
  padding: 1.5rem;
}
.point_left {
  box-sizing: border-box;
  flex-basis: 20%;
  text-align: center;
}
.point_right {
  flex-basis: 76%;
}
.point_balloon {
  margin-bottom: 1rem;
}
.point_txt {
  margin-left: 2rem;
}
.link_txt {
  text-align: right;
}
.link_txt a {
  text-decoration: underline;
  color: #00a9b0;
}

@media screen and (max-width: 736px) {
	.point {
  width: 100%;
}
  .point_block {
    padding: 1rem;
  }
  .point_left {
    margin-right: 0;
    text-align: center;
    margin-bottom: 1rem;
  }
	.point_balloon {
  margin-bottom: 0rem;
}
	.point_txt {
  margin-left: 0rem;
}
	.link_txt {
 font-size: 0.8rem;
}
.link_txt a {
	font-size: 0.8rem; 
}	
}

/***************************
 ** .sec01　理由1
 */
.sec01 .right_area {
  margin-bottom: 2rem;
}
.sec01 .reason p {
  margin-bottom: 1rem;
}
@media screen and (max-width: 736px) {
	.sec01 .right_area {
  margin-bottom: 1rem;
}
	.sec01 .reason p {
  margin-bottom: 0.5rem;
}
}

/***************************
 ** .sec02　理由2
 */
.sec02 .sec_txt {
  margin-bottom: 2rem;
}
.flow {
		margin-bottom: 1rem;
}
.flow img {
		margin-bottom: 0.5rem;
}
.flow:nth-child(2){
	margin: 0 1rem;
}

@media screen and (max-width: 736px) {
	.sec02 .sec_txt {
  margin-bottom: 1rem;
}
	.flow {
		text-align: center;
		margin-bottom: 1rem;
	}
	.flow_txt{
		font-size: 0.8rem;
	}
	.flow img{
		width: 80%;
}
	.flow:nth-child(2){
	margin: 0 0 1rem 0;
}
}

/***************************
 ** .sec04
 */
.sec04 .note01 {
  margin: 0 auto 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
}
.sec04 .note02 p {
  margin-bottom: 0.5rem;
}	
.sec04 .ttl_h3 {
  margin-bottom: 0.5rem;
}
.sec04 .left_txt {
  margin-bottom: 2rem;
}
.lineup {
  margin-bottom: 3rem;
  text-align: center;
}
.recommend_btn {
  text-align: center;
  margin-bottom: 5rem;
}

@media screen and (max-width: 736px) {
	.sec04 .left_txt {
  margin-bottom: 1rem;
}
	.lineup {
  margin-bottom: 2rem;
}
.recommend_btn {
  margin-bottom: 3rem;
}
	.comment {
		font-size: 0.8rem;
		text-align: center;
	}
.sec04 .note02 {
  margin: 0 auto 1rem;
}	
}

/***************************
 ** youtube 埋め込み
 */
.yvideo {
  text-align: center;
  margin: 2rem 0 6rem;
  position: relative;
  width: 100%;
}
.yvideo_ttl {
  margin-bottom: 1.5rem;
}
.yvideo .note {
  text-align: center;
  font-size: 80%;
  line-height: 1.53;
}
@media screen and (max-width: 736px) {
  .yvideo_box {
    padding-top: 56.25%;
    position: relative;
  }
  .yvideo_box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .yvideo {
    margin: 2rem 0 4rem;
  }
}

/***************************
 ** .sec05　理由5
 */
.sec05 .ttl_h3 {
  margin-bottom: 0.5rem;
}
.sec05 .right_txt {
  margin-bottom: 2rem;
}
.large_txt {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 736px) {
}

/***************************
 ** .sec06 理由6
 */
.sec06 .note {
  margin: 0 auto 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
}
.sec06 .point_txt {
  font-size: 0.8rem;
	line-height: 1.5;
}

@media screen and (max-width: 736px) {
	.sec06 .left_area{
		margin-bottom: 0;
	}
	
	.sec06 .note {
  margin: 0 auto 1rem;
}
  }

/***************************
 ** QA
 */
#qa {
  text-align: center;
  margin-bottom: 0;
}
.qa_ttl {
  background: -moz-linear-gradient(to bottom, #FFF, #FFF 70%, #dadadb 70%, #dadadb);
  background: -webkit-linear-gradient(to bottom, #FFF, #FFF 70%, #dadadb 70%, #dadadb);
  background: linear-gradient(to bottom, #FFF, #FFF 70%, #dadadb 70%, #dadadb);
}
.qa_bg {
  background: -moz-linear-gradient(to bottom, #dadadb, #f0f0f0);
  background: -webkit-linear-gradient(to bottom, #dadadb, #f0f0f0);
  background: linear-gradient(to bottom, #dadadb, #f0f0f0);
}
.qa_bg .wrapper {
  padding: 0 0.5rem 2rem;
}
.qa_block {
  border: #cccccc solid 1px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  border-radius: 10px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 736px) {
.qa_bg .wrapper {
  padding: 0 0.5rem 1rem;
}
}

/*QAのアコーディオン*/
.panel-head {
  position: relative;
  font-size: 1.4rem;
  text-align: left;
  padding: 1rem;
  text-indent: 54px;
  line-height: 2.2;
}
.panel-head:before {
  position: absolute;
  left: 0;
  content: "";
  display: inline-block;
  width: 72px;
  height: 50px;
  background: url("../img/q_icon.png") no-repeat;
  /*background-size:contain;*/
  background-position: 12px 0;
}
/*下矢印↓*/
.panel-head:after {
  content: "";
  position: absolute;
  border-right: 4px solid #00a9b0;
  border-bottom: 4px solid #00a9b0;
  width: 13px;
  top: 26px;
  right: 20px;
  height: 13px;
  transform: rotate(45deg);
}
/*上矢印↑*/
.panel-head.ac:after {
  content: "";
  position: absolute;
  border-left: 4px solid #00a9b0;
  border-top: 4px solid #00a9b0;
  border-right: 0;
  border-bottom: 0;
  width: 13px;
  top: 30px;
  right: 20px;
  height: 13px;
  transform: rotate(45deg);
}
.qa-answer {
  display: none;
  text-align: left;
}

@media screen and (max-width: 736px) {
.panel-head {
  position: relative;
  font-size: 1rem;
  text-align: left;
  padding: 1rem 2.2rem;
  line-height: 1.2;
	text-indent: 0;
}
	
.panel-head:before {
   position: absolute;
  left: 0;
	top: 25%;
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  background: url("../img/q_icon.png") no-repeat;
  background-size:25px 25px;
  background-position: 5px 0;
}	

	/*下矢印↓*/
.panel-head:after {
  content: "";
  position: absolute;
  border-right: 4px solid #00a9b0;
  border-bottom: 4px solid #00a9b0;
  width: 9px;
  top: 33%;
  right: 14px;
  height: 9px;
  transform: rotate(45deg);
}
/*上矢印↑*/
.panel-head.ac:after {
  content: "";
  position: absolute;
  border-left: 4px solid #00a9b0;
  border-top: 4px solid #00a9b0;
  border-right: 0;
  border-bottom: 0;
  width: 9px;
  top: 40%;
  right: 14px;
  height: 9px;
  transform: rotate(45deg);
}
}

/*アコーディオン内　Answerの内容*/
.answer_list {
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}
.answer_list .line_txt {
  text-decoration: underline;
}
.answer_list li {
  padding-left: 48px;
  background: left top no-repeat;
  background-size: 30px auto;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.answer_list li:nth-child(1) {
  background-image: url("../img/a_icon.png");
  background-size: 22px 23px;
}
@media screen and (max-width: 736px) {
  #qa {
    padding: 0;
    margin-bottom: 0;
  }
	.answer_list {
  font-size: 0.8rem;
  line-height: 2.2;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
	.answer_list li {
  padding-left: 1.5rem;
   line-height: 1.2;
}
	.answer_list li:nth-child(1) {
  background-image: url("../img/a_icon.png");
  background-size: 16px 16px;
		line-height: 1.5;
}
}

/***************************
 ** VOC
 */
#voc {
  text-align: center;
  margin-bottom: 0;
  background-image: url("../img/voc_bg.png");
  background-position: center top;
	background-repeat: no-repeat;
	background-color: #eef8fd;
	padding: 3rem 0 2rem 0;
}

.voc_ttl {
	font-weight: 500;
	font-size: 2rem;
	color: #000;
	margin-bottom: 2.5rem;
}
.voc_block {
  border: #cccccc solid 1px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
	text-align: left;
}
.voc_photo .left_area{
	flex-basis: 40%;
	margin-bottom: 1.5rem;
}
.voc_h4{
	font-size: 1.4rem;
	color: #00a9b0;
	font-weight: 500;
	border-bottom: 1px dotted #00a9b0;
	margin-bottom: 1rem;
	line-height: 1.5;
}
.voc_h5{
	font-size: 1.1rem;
	color: #00a9b0;
	font-weight: 500;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}
.voc_photo .right_area{
	flex-basis: 60%;
}
.voc_txt{
	margin-bottom: 1rem;
}

@media screen and (max-width: 736px) {
#voc {
	padding: 1.5rem 0 1rem 0;
}
.voc_ttl {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	}	
.voc_h4{
	font-size: 1.2rem;
}
	.voc_name {
		font-size: 0.8rem;
	}	
}

/***************************
 ** オンラインセミナー
 */
#online {
  text-align: center;
  margin-bottom: 0;
	background-color: #f0f0f0;
	padding: 3rem 0 2rem 0;
}
.online_block {
  border: #cccccc solid 1px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
	text-align: left;
}
.online_date{
	margin-bottom: 2rem;
}
.online_txt{
	margin-bottom: 1rem;
}

.online_note {
  text-align: center;
  font-size: 0.8rem;
}
.schedule {
	margin-bottom: 1rem;
}
.schedule dt {
	flex-basis: 20%;
}
.schedule dd{
  flex-basis: 80%;
}

.online_btn {
  text-align: center;
}

.online_btn a {
  /*display: inline-block;
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 5px;
  background: #e6000d;
  color: #fff;
  font-weight: 500;
  position: relative;*/
  display: inline-block;
  font-size: 1.25rem;
  padding: 1em 1.5em;
  background: #e6000d;
  color: #fff;
  font-weight: 500;
  border-radius: 3em;
  font-weight: 500;
}

.online_btn a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin-left: 0.5em;
}

.online_btn a br {
  display: none;
}

@media screen and (max-width: 736px) {
	#online {
    padding: 2rem 0 1.5rem 0;
  }
   .online_date{
    margin-bottom: 0;
  }
  .online_date .right_area{
    margin-bottom: 0;
  }	
    .online_date .right_area .ttl_h3{
    margin-bottom: 0.5rem;
  }

  .online_btn a {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.0625rem;
    padding: 0.5em 1.5em;
    position: relative;
  }
  .online_btn a br {
    display: inline;
  }
}


/***************************
 ** cvを常に固定
 */
#cv_fix {
  position: fixed;
  right: 0;
  top: 0;
  width: 30%;
  height: 80px;
  line-height: 65px;
  text-align: center;
  z-index: 999;
  margin-bottom: 2rem;
  /*padding-bottom: 140px;*/
}

@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop, #cv_fix {
    right: 20%;
  } /* IE11 */
}

.cv_block {}
.cv_list {
  display: flex;
  justify-content: flex-end;
}

.cv_list li:first-child img {
  max-width: 160px;
  margin: 0 0.2rem;
}

.cv_list li img {
  max-width: 104px;
  margin: 0 0.2rem;
}

@media screen and (max-width: 736px) {
  #cv_fix {
    width: 100%;
    height: auto;
    line-height: 1.2;
    right: 0;
  }
  
  .cv_list {
    flex-wrap: wrap;
  }
  
  .cv_list li {
    position: relative;
  }
  
  .cv_list li::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-width: 3px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    right: -2px;
    top: 45%;
  }
  
  .cv_list li a {
    display: block;
    padding: 1rem 0.3rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
  }
  
  .cv_list li a span img {
    display: none;
  }
  
  .cv_list li:nth-child(1) {
    flex-basis: 100%;
    background: #e6000d;
  }
  
  .cv_list li:nth-child(1) a {
    padding: 1rem;
    text-align: center;
  }
  
  .cv_list li:nth-child(1) a span::after {
    content: "シャープに相談する(Zoom・電話・メール)";
    font-size: 1rem;
  }

  .cv_list li:nth-child(2) {
    flex-basis: 100%;
    background: #fee100;
  }
  
  .cv_list li:nth-child(2) a span::after {
    content: "よくあるご質問";
  }
  
  .cv_list li:nth-child(2) a {
    color: #000;
  }
  
   .cv_list li:nth-child(3) {
    display: none;
  }
  
 
  /*.cv_list li:nth-child(4) {
    flex-basis: 33.333%;
    background: #fee100;
  }
  
  .cv_list li:nth-child(4) a {
    color: #000;
  }
  
  .cv_list li:nth-child(4) a span::after {
    content: "よくあるご質問";
  }*/
}
@media screen and (max-width: 375px) {
  .cv_list li a {
    font-size: 0.625rem;
  }
}
/*@media screen and (max-width: 320px) {
  .cv_list li a {
    letter-spacing: 0;
  }
}*/


/***************************
 ** ポップアップ
 */
#pop_up {
  background: #fff;
}
.prifile_window {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px;
}
.profile_frame {
  border: 3px solid #00a9b0;
  padding: 25px;
  border-radius: 10px;
}
.base_info {
  margin-bottom: 2rem;
}
.activity {
  margin-bottom: 0;
}
.activity_ttl {
  background: #00a9b0;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.activity_list dt {
  font-weight: 500;
  font-size: 1.1rem;
  color: #00a9b0;
  margin-bottom: 0.8rem;
}
.activity_list dd {
  line-height: 2;
  margin-bottom: 1.8rem;
  margin-left: 1rem;
}
.activity_list dd:last-child {
  margin-bottom: 0;
}
.activity_list span.ex {
	background-color: #00a9b0;
	color: #fff;
	border-radius: 20px;
	font-size: 0.9rem;
	padding: 0.2rem 0.8rem;
	margin-right: 0.3rem;
	font-weight: normal;
}
.number_li{
	margin: 0 0 1.5rem 1.5rem;
	line-height: 1.8;
}
.number_li li {
	margin-bottom: 1rem;
}
#pop_up .note {
	font-size: 0.75rem;
	margin-left: 2rem;
}

@media screen and (max-width: 736px) {
  .prifile_window {
    padding: 1rem;
  }
  .profile_frame {
    ;
    padding: 1rem;
  }
  .base_info {
    margin-bottom: 1rem;
  }
  .profile_img {
    flex-basis: auto;
    width: 42%;
    margin: 0 auto 0.8rem;
  }
  .greeting {
    flex-basis: auto;
  }
  .greeting_ttl {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .greeting p {
    font-size: 0.75rem;
  }
  .activity_ttl {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.3rem 0.5rem;
  }
  .activity_list dt {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .activity_list dd {
    margin-bottom: 1rem;
    font-size: 0.75rem;
		margin-left: 0;
  }
	#pop_up .note {
	margin-left: 0.5rem;
}
}

/***************************
 ** 2021.01.25 okamura 追記
 */

 .seminar_time {
  display:block;
  padding-left:1em;
}

/***************************
 ** 関連コンテンツ
 */
.related_contents {
  background: #ffffff;
  padding: 2rem 0;
}

.related_contents_ttl {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.related_contents_list li {
  display: inline-block;
  margin-right: 1.2rem;
}

.related_contents_list li img {
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}

@media screen and (max-width: 736px) {
  .related_contents {
    padding: 1rem 0;
  }

  .related_contents_ttl {
    font-size: 1rem;
    text-align: center;
  }

  .related_contents_list li {
    display: block;
    margin-right: 0;
    text-align: center;
  }
  
  .related_contents_list li:not(:last-child) {
    margin-bottom: 1rem;
  }
}


/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 7%;
  max-width: 60px;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
  -ms-filter: "alpha(opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  /*box-shadow: 0 0 4px rgba(0, 0, 0, .3);*/
  z-index: 120;
  /*padding-bottom: 140px;*/
}

/*@media screen and (max-width: 736px) {
.rev_top {
	 bottom: 120px;
	}
}*/