/*************************************
style.css
*************************************/

.f_ll {font-size: 140%}
.f_l {font-size: 120%}
.f_s {font-size: 90%;}

.f_bold {font-weight: bold;}

.sp_br {display: block;}
.pc_br {display: none;}

section {
    letter-spacing: .1rem;
}

section:not(:last-child) {
    margin: 1rem auto 4rem;
}

#main_content > .bg_img {
    background-image:url(/lp/er_challenge_10kw/common/imgs/bg.png);
    background-repeat:no-repeat;
    background-size:cover;
    padding: 2.5rem;
}

#main_content > .bg_img > .bg_white {
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.86) 100%);
    padding: 2rem 3rem;
    box-shadow: 6px 7px 15px -5px #3d3d3d;
}

.top_title {
    text-align: center;
}

.top_title h1 {
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: .3rem;
    color: #00578a;
    margin: 1rem 0;
    border-top: 2px solid #800000;
    border-bottom: 2px solid #800000; 
    padding: 1.8rem 0 2rem;
}

.top_title h2 {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .1rem;
}

.top_title h3 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: .2rem;
}

.main_title {
  max-width: 800px;
  margin: 5rem auto 5rem;
  text-align: center;
  color: #036eb8;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  letter-spacing: 0.2em;
  position: relative;
}

.main_title::before, .main_title::after {
	position: absolute;
	width: 30px;
	height: 30px;
	content: '';
}
.main_title::before {
	border-left: solid 2px;
	border-top: solid 2px;
	top: -1rem;
	left: 3rem;
}
.main_title::after {
	border-right: solid 2px;
	border-bottom: solid 2px;
	bottom: -1rem;
	right: 3rem;
}
.top_image {
  text-align: center;
}
.top_image img {
  max-width: 960px;
}

.main_message {
  max-width: 800px;
  margin: 1rem auto 4rem auto;
	font-size: 1.1rem;
}

.main_message dl {
    background-color: #deebf7;
    padding: 2rem;
}

.main_message dl dt {
    font-size: 1.2rem;
    border-bottom: 1px solid #036eb8;
    padding-bottom: .5rem;
}

.main_message dl dd {
    margin-top: 1rem;
}

.main_message dl dd ul {
    margin-left: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}

.main_message dl dd ul li {  
    position: relative;
    margin: .5rem 2.5rem .2rem 0rem;
    width: fit-content;
}

.main_message dl dd ul li::before {
    position: absolute;
    content: "◎";
    color: #036eb8;
    margin-right: .5rem;
    left: -1.5rem;
}

.main_message p {
	text-align: justify;
	line-height: 2.1rem;
	letter-spacing: .1rem;
    margin: 2rem 0;
}

@media screen and (orientation: portrait) and (max-width: 767px){
	
  .sp_br {display: none;}
  .pc_br {display: block;}
    
    section {
    max-width: 95%;
  margin: 1rem auto 1rem auto;
}
    
    #main_content > .bg_img {
    background-image:url(/lp/er_challenge_10kw/common/imgs/bg.png);
    background-repeat:no-repeat;
    background-size:cover;
    padding: 1.5rem;
}
    
    #main_content > .bg_img > .bg_white {
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.86) 100%);
    padding: 1rem;
}
    
    .top_title h1 {
    font-size: 1.6rem;
    letter-spacing: .2rem;
        padding: 1rem 0 1.2rem;
}

.top_title h2 {
    font-size: 1.1rem;
}
    
    .top_title h3 {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1rem;
}
    
  .main_title {
  margin: 2rem 0 2rem 0;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}
.main_title::before, .main_title::after {
	display: none;
}

.main_message {
    width: 96%;
    margin: 1rem auto 3rem auto;
  }
    
    .main_message dl {
    background-color: #deebf7;
    padding: 1rem;
}
    
    .main_message dl dd ul li {  
    margin: .2rem 0rem .2rem 0rem;
}
    
    .main_message dl dd:last-child ul li {  
    margin: .2rem 1.2rem .2rem 0rem;
}
		
.main_message p {
	line-height: 1.8rem;
	letter-spacing: .05rem;
}
    
}


/* content
============================ */

.content ul {
    width: fit-content;
    margin: 0 auto;
}

.content ul li {
    font-size: 1.2rem;
    text-indent: -1.5rem;
    margin: 1rem 0 1rem 1.5rem;
}

.content ul li::before {
    content: "●";
    margin-right: .5rem;
    color: #036eb8;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    
    .content ul li {
    font-size: 1.1rem;
    text-indent: -1.6rem;
    margin-left: 1.6rem;
}
    
}


/* sub_content
============================ */

.sub_content {
    border: 1px solid #800000;
    padding: .8rem 1.2rem;
    margin-bottom: 1rem;
}

.sub_content p {
    line-height: 1.9rem;
    margin: .5rem;
    text-align: justify;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
   .sub_content {
    padding: .5rem .8rem;
    margin-bottom: 1rem;
}
    
    .sub_content p {
    line-height: 1.7rem;
        letter-spacing: .05rem;
}
    
}



/* main_step
============================ */

.main_step {
	max-width: 960px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	margin: 6rem auto .5rem auto;
}
.main_step_title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #036eb8;
  margin-bottom: 1.8rem;
  letter-spacing: .1rem;
}
.main_step_title:before, .main_step_title:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
}
.main_step_title:before {
  margin-right: 1rem; /* 文字の右隣 */
}
.main_step_title:after {
  margin-left: 1rem; /* 文字の左隣 */
}


.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #87cefa;
  border-right: 0;
  margin: auto 1.5rem;	
}

.application > section {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}
.triangle_application {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 30px solid #036eb8;
  border-bottom: 0;
}



@media screen and (orientation: portrait) and (max-width: 767px){

.main_step {
	margin: 3rem 0rem 1rem;
}
.main_step_title {
	font-size: 1.2rem;
}
.main_step_title:before, .main_step_title:after {
  width: 5rem; /* 線の長さ */
}
	
.application > section {
	margin-bottom: 0rem;
}
 
.triangle {
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #87cefa;
  border-right: 0;
  margin: 0px auto 2px auto;	
  transform: rotate(90deg);
}
	
}

/* contact_banner
============================ */

@media screen and (orientation: portrait) and (max-width: 767px){

  .contact_banner .inner > p {
    padding: 2rem 0 0;
    font-size: 1.2rem;
  }

}


/* phone
============================ */
.contact_banner.phone .contact_txt {
  display: none;
}

.contact_banner.phone .phone_shibuya,
.contact_banner.phone .phone_kichijoji,
.contact_banner.phone .phone_ikebukuro {
  display: none;
}