@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 100px 0;
}
a {
  text-decoration-line: none;
}
a:hover{
  opacity: 0.5;
}

@media only screen and (max-width: 767px){
section {
  padding: 50px 0;
}}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-blue-grada{
  font-weight: 900;
  background: linear-gradient(to top, #2874b7, #37cbd2);
  -webkit-background-clip: text;
  color: transparent;
}
.text-big{
  font-size: 2rem;
}
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-yellow{
  color: #fbd73d;
}
.text-blue{
  color: #00737f;
}
.text-white{
  color: #fff;
}
.yellow-marker{
  background:linear-gradient(transparent 70%, #fbd73d 70%);
  display: inline-block;
}
@media only screen and (max-width: 767px){
  .text-big{
  font-size: 1.55rem;
}
.yellow-marker{
  background:linear-gradient(transparent 86%, #fbd73d 86%);
  display: inline-block;
}}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl_box{
  text-align: center;
  padding-bottom: 50px;
}
.ttl-before{
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.ttl-text{
  font-weight: 900;
  font-size: 2.3rem;
}
.ttl-gray{
  color: #b1b1b1;
}
.ttl-white{
  color: #fff;
  border-bottom: 3px solid #fff;
}
.ttl-text-sub{
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
.ttl-text{
  font-size: 1.5rem;
}
.ttl-before{
  font-size: 1rem;
}
.ttl_box{
  padding-bottom: 30px;
}
.ttl-text-sub{
  font-size: 1.1rem;
}}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta{
    background-image: repeating-linear-gradient(300deg, #444444, #444444 20px, #3b3b3b 20px, #3b3b3b 40px);
    position: relative;
}
.cta-ttl{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6%;
}
.cta_box{
  background-color: #fff;
  border-radius: 30px;
  padding: 2em 0.5em;
  margin-top: 2em;
}
.cta_button_box{
  display: flex;
  justify-content: center;
}
.cta_text_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_tel{
  font-size: 2rem;
}
.cta_tel a{
  color: #333;
}

@media only screen and (max-width: 1399px) {
  .cta_box{
  margin-top: 0;
}}
@media only screen and (max-width: 1199px) {
  .cta{
    padding: 80px 0;
}
  .cta_button{
    width:35%;
}
  .cta_tel{
  font-size: 1.5rem;
}}
@media only screen and (max-width: 991px) {
  .cta{
    padding: 80px 0 30px;
}
  .cta_box{
  margin-top: 1em;
}
  .cta-ttl h2{
    width:140%;
}
  .cta-ttl{
  transform: translateX(-70%);
}
  .cta_button{
    width:45%;
}}

@media only screen and (max-width: 767px){
.cta{
    padding: 50px 0;
}
  .cta-ttl{
  position: static;
  transform: unset;
}
.cta-ttl h2{
    width:100%;
}
.cta_box{
  padding: 1em 0.5em;
}
.cta_button_box{
    flex-direction: column;
    align-items: center;
}
.cta_button{
    width:75%;
    margin: 0.25em 0;
}
.cta_text_box{
  display: flex;
  flex-direction: column;
}}

/*ボタンアニメーション*/
.reflection{
display:inline-block;
position:relative;
overflow:hidden;
border-radius: 50px;
}
 
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}
 
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.reflection:hover{
  opacity: 0.8;
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header{
  background-color: #1c1c1c;
}
#Header p{
  margin-bottom: 0;
}
.h_cta_img{
  width: 15em;
  padding: 1em 0.5em;
}
.h_tel_text{
  font-size: 1.5rem;
}
.h_tel a{
  color: #fff;
}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  background-image: url(../images/fv-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 50px;
}
.fv_text{
  width: 60%;
}

@media only screen and (max-width: 767px){
  .fv {
  background-image: none;
  padding: 0;
}}

/*-----------------------------------------------------
かんたんフォーム
-------------------------------------------------------*/
.fv-form{
  background-color: #3b3b3b;
}
.balloon-fvform {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0.25em 1em;
    border-radius: 50px;
    background-color: #fff;
    color: #333;
    font-size: 3rem;
    width: 50%;
    margin: 0 auto 1em;
}
.balloon-fvform::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.balloon-fvform_text{
  margin-bottom: 0;
  font-weight: 900;
}

.fv-form .container{
  background-color: #fff;
  border-radius: 20px;
  border: 7px solid #ffd477;
  padding: 30px 0;
}
.fv-form .btn{
  background-color: #2b84bc;
  border-color: #2b84bc;
  padding: 0.5em 4em;
}
.fv-form label{
  font-weight: bold;
}

@media only screen and (max-width: 1199px){
.fv-form .col-lg-3{
  padding: 0;
}}

@media only screen and (max-width: 991px){
.fv-form label{
  margin-bottom: 0.5em;
}}

@media only screen and (max-width: 767px){
 .balloon-fvform {
    padding: 0.25em 1em;
    border-radius: 50px;
    font-size: 2rem;
    width: 80%;
    margin: 0 auto 1em;
}
.fv-form {
  padding: 20px;
}
.fv-form .container{
  padding: 30px 20px;
}}

/*-----------------------------------------------------
成功事例
-------------------------------------------------------*/
.balloon-case {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0.25em 1em;
    border-radius: 50px;
    background-color: #333333;
    color: #ffffff;
    font-size: 1.5rem;
    width: 60%;
    margin: 0 auto 2em;
}
.balloon-case::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #333333;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.balloon-case_text{
  margin-bottom: 0;
  font-weight: 900;
}
.case-box{
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 991px){
 .balloon-case {
    width: 80%;
}}

@media only screen and (max-width: 767px){
  .balloon-case {
    padding: 0.25em 1em;
    width: 100%;
    margin: 0 auto 2em;
    text-align: center;
    font-size: 1.1rem;
}
.case-box{
  display: block;
}}


/*-----------------------------------------------------
実際にどんな電気をうる
-------------------------------------------------------*/
.about{
  background-color: #dedede;
}
.about-ttl-before{
  font-weight: bold;
  font-size: 2rem;
}
.about-ttl{
  font-size: 4rem;
}
.about-ttl-after{
  font-weight: bold;
  font-size: 1.5rem;
}
.about-pic{
  width: 80%;
}
@media only screen and (max-width: 991px){
.about-pic{
  width: 100%;
}}
@media only screen and (max-width: 767px){
.about-ttl-before{
  font-weight: bold;
  font-size: 1.2rem;
}
.about-ttl{
  font-size: 2.5rem;
}
.about-ttl-after{
  font-size: 1rem;
}}


/*-----------------------------------------------------
こんな悩みを持った方におすすめ
-------------------------------------------------------*/
.nayami_list{
  background-color: #333;
  padding: 0.5em;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  margin: 0.5em 0;
}
@media only screen and (max-width: 991px){
  .nayami_list{
  font-size: 0.8rem;
}}
@media only screen and (max-width: 767px){
  .nayami_ttl{
  font-size: 1.3rem;
}}

/*-----------------------------------------------------
選ばれる理由
-------------------------------------------------------*/
.reason_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason_content01{
  background-color: #444444;
}
.reason_bg01{
  background-color: #444444;
  padding: 1em;
}
.reason_content02{
  background-color: #585858;
}
.reason_bg02{
  background-color: #585858;
  padding: 1em;
}
.reason_text_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #333;
  padding: 1em 0.5em;
  height: 8em;
  font-size: 1.2rem;
  border-radius: 20px;
}
.reason_text_box02{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #333;
  padding: 0.2em 0.5em;
  height: 8em;
  font-size: 1.2rem;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px){
  .reason_text_box{
  font-size: 1rem;
}
.reason_text_box02{
  font-size: 1rem;
}}
@media only screen and (max-width: 991px){
  .reason_text_box{
  font-size: 0.85rem;
}
.reason_text_box02{
  font-size: 0.85rem;
}}
@media only screen and (max-width: 767px){
  .reason_box{
  display: flex;
  flex-direction: column; 
}
  .reason_pic{
  width: 100vw;
}}

/*-----------------------------------------------------
サポート体制は万全
-------------------------------------------------------*/

/*タイトル部分
-------------------------------------------------------*/

.balloon-service {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0.25em 1em;
    border-radius: 50px;
    background-color: #333333;
    color: #ffffff;
    font-size: 1.5rem;
    width: 55%;
    margin: 1em auto;
}
.balloon-service::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #333333;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.balloon-service_text{
  margin-bottom: 0;
  font-weight: 900;
}
@media only screen and (max-width: 991px){
 .balloon-service {
    width: 82%;
}}
@media only screen and (max-width: 767px){
  .balloon-service {
    width: 85%;
    font-size: 1.1rem;
}}

/*本文
-------------------------------------------------------*/
.service_list{
  flex-wrap: wrap;
}
.service_content{
  width: 33.33%;
}
@media only screen and (max-width: 767px){
  .service_content{
  width: 50%;
}}

/*-----------------------------------------------------
代理店開始までの流れ
-------------------------------------------------------*/
.step_list{
  flex-wrap: wrap;
}
.step_content{
  width: 25%;
}
@media only screen and (max-width: 767px){
  .step_content{
  width: 50%;
}}


/*-----------------------------------------------------
他社との比較
-------------------------------------------------------*/
.bosyu{
  background-color: #dedede;
}
.bosyu table{
  width: 80%;
}
.bosyu td{
  padding: 1em 0.5em;
  font-weight: bold;
  font-size: 1.5rem;
}
.bosyu_bg_black{
  background-color: #444444;
  color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.bosyu_bg_white{
  background-color: #fff;
  color: #444444;
  border: 2px solid #444444;
  padding-left: 2em !important;
}

@media only screen and (max-width: 767px){
  .bosyu td{
  font-size: 1rem;
}}

/*-----------------------------------------------------
よくある質問
-------------------------------------------------------*/
.question{
  background-color: #dedede;
}
.qa-box{
  background-color: #fff;
  padding: 2em;
}
.q-color{
  font-size: 2rem;
  font-weight: bold;
  color: #3b3b3b;
  margin-right: 0.5em;
}
.a-color{
  font-size: 1.8rem;
  font-weight: bold;
  color: #3b3b3b;
  margin-right: 0.5em;
}
.q_text{
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
}
.a_text{
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.bullet-text01 {
    padding-left: 1em;
    text-indent: -2.5em;
    display: block;
}
.bullet-text02 {
    padding-left: 1.5em;
    text-indent: -1.65em;
    display: block;
}
.accordion-button{
  background-color: #fff !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #828282;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-btn-focus-box-shadow:none;
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-padding-y: 1.5rem;
}
.accordion-body {
    padding-bottom: 1.5rem;
    background-color: #eeeeee;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 20px;
}
.accordion-flush .accordion-item {
    border-radius: 20px;
}
.accordion-button::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b3b3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b3b3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
@media only screen and (max-width: 991px){
.q-color{
  font-size: 1.8rem;
}
.a-color{
  font-size: 1.3rem;
}
.q_text{
  font-size: 0.9rem;
}
.a_text{
  font-size: 0.9rem;
  color: #333;
}
.accordion-header {
    padding-left: 0.5em;
}
.accordion {
--bs-accordion-body-padding-x: 1.8rem;
}}

/*-----------------------------------------------------
form
-------------------------------------------------------*/
.form{
  background-color: #515151;
}
.form .ttl_box{
  color: #fff;
}
.form .container{
  background-color: #fff;
  border-radius: 40px;
  padding: 3em 0;
}
.form .btn{
  background-color: #2b84bc;
  border-color: #2b84bc;
  padding: 0.5em 4em;
}
.form label{
  font-weight: bold;
}
.text-bg-danger{
  background-color: #2b84bc !important;
  border-radius: 0 !important;
  font-size: 1rem;
  margin-right: 0.5em;
}
.text-bg-light{
  background-color: #fff !important;
  border: 2px solid #2b84bc;
  color: #00989e !important;
  border-radius: 0 !important;
  font-size: 1rem;
  margin-right: 0.5em;  
}
.p-privacy__ttl a{
  color: #333;
  text-decoration-line: none;
}
@media only screen and (max-width: 1199px){
.form .col-lg-3{
  padding: 0;
}}
@media only screen and (max-width: 991px){
.form .container{
  padding: 2em;
}
.form label{
  margin-bottom: 0.5em;
}}
@media only screen and (max-width: 767px){
.form .container{
  width: 90%;
  border-radius: 20px;
}
.p-privacy__ttl{
  font-size: 1rem !important;
}}



/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #333333;
  padding: 3em 2em 7em;
}
.company-box{
  display: flex;
}

@media only screen and (max-width: 767px){
  .company-box{
  display: block;
}}


/* 追従 */
.fix-navi p {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px){
.fix-navi{
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.navi_box{
  font-weight: bold;
  color: #fff;
  width: 100%;
  padding: 1em;
}
.navi_download{
  background-color: #0033bed9;
}
.navi_line{
  background-color: #00a23bd9;
}
.fix-navi a {
  color: #fff !important;
}
.fix-navi p {
  margin-bottom: 0 !important;
}
.navi_cta{
  width: 80%;
  margin: 0 auto;
}}

@media only screen and (max-width: 767px){
  .scroll-up{
    bottom: 125px;
}}

/*-----------------------------------------------------
サンクスページ
-------------------------------------------------------*/
#thks{
  background-color: #ececec;
  margin: 0;
}
.thanks-box{
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 1em;
  border-radius: 20px;
}
.thanks-ttl{
  text-align: center;
}
.thanks-text{
  text-align: center;
  font-size: 0.85rem;
}
.thanks-download{
padding-bottom: 2em;
}

a.btn_02 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 20px;
  width: 50%;
  margin: auto;
  padding: 1rem 0.5rem;
  font-weight: bold;
  border: 2px solid #27acd9;
  background: #27acd9;
  color: #fff;
  transition: 0.5s;
}
a.btn_02:hover {
  color: #27acd9;
  background: #fff;
}
.thanks-btn{
  text-align: center;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
    border-radius: 20px;
    margin: 0 auto;
}