/* CSS Document */
img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
  width:100%;
  height:100%;
}
.wrapper {
  max-width: 990px;
  padding: 0 20px;
  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;
}

/* 上付き文字 */
sup {
  font-size: 0.6em;
	vertical-align: top;
}

/* ラインマーカー風 */
.yellow {
  background: linear-gradient(transparent 70%, #fc3 30%);
  font-weight: 500;
  font-size: 1.125em;
}

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

/***************************
 ** flexible boxと子要素の関係
 */
.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_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%;
  }
}


/***************************
 ** PC・PS 表示非表示
 */
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.sp_break {
  display: none;
}

@media screen and (max-width: 736px) {
  .pc_only {
    display: none;
  }
  
  .sp_only {
    display: block;
  }
  
  .sp_break {
    display: inline;
  }
  
  .pc_break {
    display: none;
  }
}

/***************************
 ** シャープヘッダー調整用
 */
.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 {
  text-align: center;
  margin-bottom:3rem;
  background: url("../img/pc/bg_fv.png") repeat-x;
  background-size: auto 100%;
}

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


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


/***************************
 ** section 共通
 */
/* 緑色・太字の見出し */
.sec_ttl {
  color: #00a9b0;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* 注釈 */
.note {
  font-size: 0.75rem;
  text-align: left;
  line-height: 1.6;
}


/***************************
 ** 卒FITとは？　
 */
#sfit {
  margin-bottom: 3rem;
}

#sfit .sec_ttl {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.sfit_inner {
  padding: 1.5rem;
  border: 2px solid #fc3;
}

.sfit_inner_ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sfit_inner_ttl span {
  display: inline-block;
  padding-left: 90px;
  background: url("../img/icon_exmark.png") no-repeat left center;
}

.sfit_inner p {
  line-height: 2;
}

@media screen and (max-width: 736px) {
  #sfit {
    margin-bottom: 2rem;
  }

  #sfit .sec_ttl {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .sfit_inner {
    padding: 0.8rem;
  }

  .sfit_inner_ttl {
    text-align: left;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .sfit_inner_ttl span {
    display: inline-block;
    padding-left: 0;
    padding-top: 55px;
    background: url("../img/icon_exmark.png") no-repeat center top;
    background-size: 44px 44px; 
  }

  .sfit_inner p {
    font-size: 0.875rem;
  }
}


/***************************
 ** 相談ページリンクブロック
 */
.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;
  }
}


/***************************
 ** 動画
 */
#fit_movie {
  margin-bottom: 5rem;
}

#fit_movie .sec_ttl {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.yvideo {
  text-align: center;
  margin: 2rem 0 0rem;
  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) {
  #fit_movie {
    margin-bottom: 2rem;
  }

  #fit_movie .sec_ttl {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .yvideo_box {
    padding-top: 56.25%;
    position: relative;
  }
  
  .yvideo_box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  
  .yvideo {
    margin: 1rem 0 0;
  }
}


/***************************
 ** 買取期間満了後はどうすればいいの？
 */
#after_fit {
  margin-bottom: 5rem;
}

#after_fit .sec_ttl:first-of-type {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.after_fit_ttl {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sfit_choices {
  margin-bottom: 5rem;
}

.choice_area {
  flex-basis: 48%;
  border: 3px solid #00a9b0;
  border-radius: 10px;
  background: #fc3;
  padding-bottom: 3rem;
  position: relative;
  box-sizing: border-box;
}

.choice_area:first-child {
  margin-right: 4%;
}

.choice_ttl {
  background: #00a9b0;
  padding: 0.8rem;
}

.choice_ttl img {
  height: 40px;
  width: auto;
}

.choice_area p {
  padding: 1rem 2rem;
  background: #fc3;
}

.choice_link {
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top: 2px solid #00a9b0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}

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

#after_fit .sec_ttl:last-of-type {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

#after_fit > p:last-of-type {
  line-height: 2;
}

@media screen and (max-width: 736px) {
  #after_fit {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }

  #after_fit .sec_ttl:first-of-type {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .after_fit_ttl {
    font-size: 1rem;
  }
  
  .sfit_choices {
    margin-bottom: 1rem;
  }

  .choice_area {
    flex-basis: auto;
    margin-bottom: 1.5rem;
  }

  .choice_area:first-child {
    margin-right: 0;
  }

  .choice_ttl {
    padding: 0.5rem;
  }

  .choice_ttl img {
    height: 36px;
    width: auto;
  }
  
  #after_fit .sec_ttl:last-of-type {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  #after_fit > p:last-of-type {
    line-height: 2;
    font-size: 0.8125rem;
  }
}


/***************************
 ** 選択肢1(相対・自由契約)・2(自家消費)
 */

/* 選択肢エリア共通 */
.choice_detail_area_inner {
  background: #daf5f7;
}

.choice_detail_area_ttl {
  text-align: center;
  padding: 1.5rem;
  background: #00a9b0;
}

.choice_detail_area_sub_ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  background: #fc3;
  padding: 1rem;
}

.recommend_area {
  border: 2px solid #00a9b0;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 2rem;
}

.recommend_area_ttl {
  background: #00a9b0;
  padding: 1rem 1.5rem;
}

.recommend_area_contents {
  padding: 1.5rem;
}

.recommend_area .recommend_area_contents p {
  text-align: center;
}

.recommend_area .recommend_area_contents .note {
  margin-bottom: 1rem;
}

.recommend_area .recommend_area_contents .note,
.recommend_area .recommend_area_contents p:last-of-type {
  text-align: left;
}

/* 選択肢1(相対・自由契約) */
#choice_detail_area1,
#choice_detail_area2 {
  padding-top: 80px;
  margin-top: -80px;
  margin-bottom: 3rem;
}

.choice_detail_area1_first {
  padding: 3rem 0 0;
  text-align: center;
}

.choice_detail_area1_first p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.next {
  text-align: center;
}

.next img {
  width: 200px;
  height: auto;
}

.recommend_area .recommend_area_contents p {
  text-align: center;
}

.expensive {
  padding-bottom: 2rem;
  background: url("../img/bg_choice_01.png") no-repeat center top;
  background-size: auto 100%;
}

.expensive p {
  margin-bottom: 1rem;
}

.expensive p a,
.old_price a {
  color: #000;
  text-decoration: underline;
}

.old_price {
  margin-bottom: 1rem;
}

.unit_price_ttl {
  text-align: center;
  margin-bottom: 0.5rem;
}

.unit_price_table {
  margin-bottom: 1rem;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
  font-size: 1.125rem;
  text-align: center;
}

.unit_price_table tr th,
.unit_price_table tr td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0.5rem;
}

.unit_price_table tr th {
  background: #f0f0f0;
  vertical-align: middle;
}

.unit_price_table tr th:last-child {
  background: #fbd9db;
}

.unit_price_table tr td span {
  font-size: 1.2em;
  font-weight: 500;
}

.unit_price_table tr td:last-child {
  background: #fdeced;
}

.choice_detail_area1_latter > p:last-of-type {
  text-align: center;
}

/* 選択肢2(自家消費) */
#choice_detail_area2 .wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#choice_detail_area2 .wrapper > p {
  margin-bottom: 2rem;
  line-height: 2;
}

#choice_detail_area2 .img {
  text-align: center;
}

.paragraph_l {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}

#choice_detail_area2 .recommend_area_contents .note {
  text-align: center;
  margin-top: 1rem;
}

#choice_detail_area2 .recommend_area_contents .sec_ttl {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hems {
  border-radius: 10px;
  padding: 2rem;
  background: #ffe0e0;
  background: linear-gradient(to bottom,  #ffe0e0 0%,#ffffff 10%);
  margin-bottom: 2rem;
}

.hems_ttl {
  text-align: center;
  margin-bottom: 1rem;
}

.hems > p:not(:last-of-type) {
  margin-bottom: 2rem;
  line-height: 2;
}

.pc_energy_saving {
  margin-bottom: 2rem;
  background: url("../img/pc/img_hems_02.png") no-repeat;
  background-size: 100% auto;
  padding-left: 28%;
  padding-right: 10%;
}

.pc_energy_saving_ttl {
  margin-bottom: 1rem;
}

.pc_energy_saving p {
  font-size: 0.875rem;
}

.pc_energy_saving p span {
  font-size: 1.2em;
  color: #c93;
  font-weight: 500;
}

.summary {
  border: 3px solid #00a9b0;
  border-radius: 10px;
  background: #fff;
  padding: 0 2rem;
  position: relative;
}

.summary_ttl {
  position: absolute;
  left: 2rem;
  top: -10px;
}

.summary_ttl span {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #00a9b0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.summary_contents {
  padding-top: 1rem;
}

.summary_contents p {
  flex-basis: 48%;
}

.summary_contents p:first-child {
  text-align: left;
  padding-top: 2.5rem;
}

@media screen and (max-width: 736px) {
  /* 選択肢エリア共通 */
  .choice_detail_area_ttl {
    padding: 1rem;
  }
  
  .choice_detail_area_ttl img {
    max-height: 35px;
    width: auto;
  }

  .choice_detail_area_sub_ttl {
    font-size: 1.1875rem;
    padding: 0.5rem;
    line-height: 1.4;
  }

  .recommend_area {
    margin-bottom: 1rem;
  }

  .recommend_area_ttl {
    padding: 0.8rem;
  }

  .recommend_area_contents {
    padding: 0.8rem;
  }

  /* 選択肢1(相対・自由契約) */
  #choice_detail_area1,
  #choice_detail_area2 {
    padding-top: 100px;
    margin-top: -100px;
  }
  
  .choice_detail_area1_first {
    padding: 1rem;
  }

  .choice_detail_area1_first p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .next img {
    width: 150px;
    height: auto;
  }
  
  .expensive p a,
  .old_price {
    font-size: 0.75rem;
  }
  
  .unit_price_ttl {
    margin-top: 0.5rem;
  }

  .unit_price_table {
    font-size: 0.875rem;
  }

  .unit_price_table tr th,
  .unit_price_table tr td {
    padding: 0.3rem;
  }
  
  /* 選択肢2(自家消費) */
  #choice_detail_area2 .wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #choice_detail_area2 .wrapper > p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .paragraph_l {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  #choice_detail_area2 .recommend_area_contents .note {
    margin-top: 0.8rem;
  }

  #choice_detail_area2 .recommend_area_contents .sec_ttl {
    font-size: 0.875rem;
    margin-bottom: 0.8rem;
  }
  
  .plus img {
    width: 20%;
  }

  .hems {
    padding: 0.8rem;
    margin-bottom: 2rem;
  }

  .hems_ttl img {
    width: 85%;
  }

  .hems > p:not(:last-of-type) {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .sp_energy_saving_ttl {
    margin-bottom: 1rem;
  }

  .sp_energy_saving p {
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  
  .sp_energy_saving p span {
    font-size: 1.2em;
    color: #c93;
    font-weight: 500;
  }

  .summary {
    padding: 0 1rem;
  }

  .summary_ttl {
    left: 1rem;
  }

  .summary_ttl span {
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }

  .summary_contents {
    padding-top: 0em;
  }

  .summary_contents p {
    flex-basis: 48%;
    text-align: center;
  }

  .summary_contents p:first-child {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .summary_contents p img {
    width: 70%;
  }
  
  .recommend_area .recommend_area_contents p:last-of-type {
    font-size: 0.875rem;
  }
}


/***************************
 ** 蓄電池導入のメリット
 */

/* メリット説明エリア共通 */
#battery_merit {
  margin-bottom: 5rem;
}

.battery_merit_ttl {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  background: #00a9b0;
  margin-bottom: 1.5rem;
}

@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .battery_merit_ttl { padding-top: 1.5rem; } /* IE11 */
}

.battery_merit_detail {
  border: 2px solid #00a9b0;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.battery_merit_detail_ttl {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem;
  background: #e8f7f8;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  color: #00a9b0;
  margin-bottom: 1.5rem;
}

.battery_merit_detail_ttl .number {
  display: inline-block;
  line-height: 1;
  width: 1em;
  height: 1em;
  padding: 6px;
  background: #00a9b0;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin-right: 0.8em;
}

.battery_merit_detail_ttl .first {
  display: inline-block;
  font-size: 0.8em;
  padding: 30px 20px 6px;
  background: url("../img/icon_crown.png") no-repeat center top;
  background-size: contain;
  color: #fff;
}

.battery_merit_detail_inner {
  padding: 0 2rem 2rem;
}

.battery_merit_detail_inner > p {
  margin-bottom: 1rem;
}

.battery_merit_detail_inner .img {
  text-align: center;
}

/* 1.災害時も安心して自宅で過ごせる */
.detail_ttl_01 {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
}

.battery_merit_detail1 .note {
  margin-bottom: 2rem;
}

.detail_ttl_02 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  background: #e8f7f8;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.detail_ttl_02 span {
  font-size: 1em;
}

.evacuation_at_home {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #00a9b0;
  background: #f9fbfc;
}

.evacuation_at_home .sec_ttl {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.evacuation_at_home p {
  line-height: 2;
}

.evacuation_at_home p:last-child {
  font-size: 0.875rem;
}

/* 2.業界初！AI雷注意報連携 */
.battery_merit_detail2 {
  margin-bottom: 3rem;
}

.battery_merit_detail2 .battery_merit_detail_ttl {
  display: table;
  box-sizing: border-box;
  width: 100%;
}

.battery_merit_detail2 .battery_merit_detail_ttl > span {
  display: table-cell;
  vertical-align: middle;
}

.cocoro_logo {
  text-align: right;
}

.cocoro_logo img {
  max-height: 56px;
  width: auto;
}

.ai_img,
.ai_text {
  flex-basis: 48%;
}

.ai_img {
  margin-right: 4%;
}

.ai_text p:first-child {
  line-height: 2;
  margin-bottom: 1em;
}

.ai_text p:last-child {
  font-size: 0.875rem;
}

/* シャープの家庭用蓄電池システム */
.storage_battery_system {
  margin-bottom: 4rem;
  text-align: center;
}

.storage_battery_system > p:first-child {
  margin-bottom: 2rem;
}

.lineup_text {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.lineup_ttl {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.btn_area {
  margin: 1.5rem 0;
}

.red_btn {
  display: inline-block;
  font-size: 1.25rem;
  padding: 1em 1.5em;
  background: #e6000d;
  color: #fff;
  font-weight: 500;
  border-radius: 3em;
}

.red_btn::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;
}

.system_select {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 2rem;
}

.system_select > .sec_ttl {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.system_detail {
  flex-basis: 48%;
}

.system_detail:first-child {
  margin-right: 4%;
}

.system_detail .sec_ttl {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.system_detail p {
  text-align: left;
}

@media screen and (max-width: 736px) {
  /* メリット説明エリア共通 */
  #battery_merit {
    margin-bottom: 3rem;
  }

  .battery_merit_ttl {
    font-size: 1.1875rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .battery_merit_detail {
    margin-bottom: 1rem;
  }

  .battery_merit_detail_ttl {
    font-size: 1.1875rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }

  .battery_merit_detail_ttl .number {
    margin-right: 0.3em;
  }
  
  .battery_merit_detail_ttl .first {
    margin-bottom: 0.5rem;
  }

  .battery_merit_detail_inner {
    padding: 0 0.8rem 1rem;
  }

  /* 1.災害時も安心して自宅で過ごせる */
  .detail_ttl_01 {
    font-size: 1rem;
  }

  .detail_ttl_02 {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .evacuation_at_home {
    padding: 1rem 0.8rem;
  }

  .evacuation_at_home .sec_ttl {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .evacuation_at_home p {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
  
  .evacuation_at_home p:last-child {
    font-size: 0.75rem;
  }

  /* 2.業界初！AI雷注意報連携 */
  .battery_merit_detail2 {
    margin-bottom: 2rem;
  }
  
  .battery_merit_detail2 .battery_merit_detail_ttl {
    display: block;
  }

  .battery_merit_detail2 .battery_merit_detail_ttl > span {
    display: block;
  }

  .cocoro_logo {
    text-align: left;
  }

  .cocoro_logo img {
    max-height: 43px;
    margin: 0.5rem 0 0 3rem;
  }

  .ai_img,
  .ai_text {
    flex-basis: auto;
  }

  .ai_img {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .ai_text p:first-child {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .ai_text p:last-child {
    font-size: 0.75rem;
  }

  /* シャープの家庭用蓄電池システム */
  .storage_battery_system {
    margin-bottom: 3rem;
  }
  
  .lineup_text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .lineup_ttl {
    font-size: 1rem;
  }

  .btn_area {
    margin: 1rem 0 3rem;
  }

  .red_btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.0625rem;
    padding: 0.5em 1.5em;
    position: relative
  }

  .red_btn::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    margin-top: -6px;
  }

  .system_select {
    padding: 1rem 0.8rem;
  }

  .system_select > .sec_ttl {
    font-size: 1.0625rem;
  }

  .system_detail {
    flex-basis: auto;
  }

  .system_detail:first-child {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .system_detail .sec_ttl {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}


/***************************
 ** QA
 */
#qa_anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

#qa {
  background: linear-gradient(to bottom, #dadadb, #f0f0f0);
  padding: 3rem 0 2rem;
}

#qa .sec_ttl {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.qa_block {
  border: #ccc solid 1px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  border-radius: 10px;
  margin-bottom: 1rem;
}

/*QAのアコーディオン*/
.panel-head {
  position: relative;
  font-size: 1.4rem;
  padding: 1.5rem 2rem 1.5rem 4.5rem;
  line-height: 1.6;
  cursor: pointer;
  background: url("../img/q_icon.png") no-repeat 1rem 1rem;
}

/*下矢印↓*/
.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;
}

/*アコーディオン内　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;
}

.answer_num_list {
  padding-left: 1.5em;
  margin-top: 1em;
}

.answer_num_list li {
  margin-bottom: 0.8em;
}

#chikudenchi {
  padding-top: 80px;
  margin-top: -80px;
}

@media screen and (max-width: 736px) {
  #qa_anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
  
  #qa {
    padding: 2rem 0;
  }

  #qa .sec_ttl {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .qa_block {
    margin-bottom: 0.5rem;
  }
  
  .panel-head {
    font-size: 1rem;
    padding: 1rem 2.2rem 1.2rem 3rem;
    line-height: 1.2;
    text-indent: 0;
    background-position: 0.5rem 1rem;
    background-size: 2rem 2rem;
  }

    /*下矢印↓*/
  .panel-head:after {
    width: 9px;
    top: 33%;
    right: 14px;
    height: 9px;
  }
  
  /*上矢印↑*/
  .panel-head.ac:after {
    width: 9px;
    top: 40%;
    right: 14px;
    height: 9px;
  }
  
	.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;
  }
  
  #chikudenchi {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/***************************
 ** オンラインセミナー
 */
#online {
  margin-bottom: 0;
	padding-bottom: 2rem;
}

.online_ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background: #00a9b0;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .online_ttl { padding-top: 2rem; } /* IE11 */
}

.online_block {
  border: #ccc solid 1px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  padding: 2rem;
}

.online_date{
	margin-bottom: 2rem;
}

.online_date > div {
	flex-basis: 48%;
}

.left_area {
  margin-right: 4%;
}

.online_ttl_s {
  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;
}

.online_txt{
	margin-bottom: 1rem;
}

.online_btn,
.online_btn a {
  text-align: center;
}

.online_btn a br {
  display: none;
}

@media screen and (max-width: 736px) {
  #online {
    padding-bottom: 2rem;
  }
  
  .online_ttl {
    font-size: 1.1875rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .online_block {
    padding: 0.8rem;
  }

  .online_date > div {
    flex-basis: auto;
  }

  .left_area {
    margin-right: 0;
  }

  .online_ttl_s {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  
  .online_txt{
    font-size: 0.8125rem;
  }
  
  .schedule_table {
    font-size: 0.8125rem;
  }
  
  .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;
  }
}*/


/***************************
 ** 関連コンテンツ
 */
.related_contents {
  background: #f0f0f0;
  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;
  }
}


/***************************
 ** 他社買取価格ポップアップ
 */
#pop_up {
  background: #fff;
}
.price_window {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px;
}
.price_frame {
  border: 3px solid #00a9b0;
  padding: 25px;
  border-radius: 10px;
}

.price_ttl {
  text-align: center;
  background: #00a9b0;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.price_table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin-bottom: 0.5rem;
}

.price_table tr th,
.price_table tr td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0.5rem;
}

.price_table tr th {
  background: #f0f0f0;
}

@media screen and (max-width: 736px) {
  .price_window {
    padding: 1rem;
  }
  .price_frame {
    padding: 1rem;
  }
  
  .price_ttl {
    font-size: 1rem;
  }

  .price_table tr th,
  .price_table tr td {
    padding: 0.3rem;
    font-size: 0.75rem;
  }
}

/***************************
 ** #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;
  z-index: 120;
}