@charset "UTF-8";


/* 変更の流れ */
#flow_btn {
	border: 1px solid #1D3879;
	border-radius: 5px;
	background: #fff;
	margin: 20px 0 0 0;

	text-decoration: none;
	color: #1D3879;
	font-size: 20px;
	font-weight: bold;
	padding: 15px;
	width: 100%;
	display: block;
	transition: 0.3s;
	box-sizing: border-box;
	cursor: pointer;
}
#flow_btn:hover{
	color: #fff;
	background: #1D3879;
}
#flow_btn::after{
	content: '＞';
  margin: 0 0 0 8px;
	float: right;
}


#close {
  position: absolute;
  top: 0;
  right: 5px;
  cursor: pointer;
	font-size: 22px;
}


#popup_wrapper {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	overflow: scroll;
	display: none;
	z-index: 99999999;
}

#popup_inner{
	width: 70%;
	max-width: 1000px;
  text-align: center;
  background: #E9EDF1;
  margin: 10% auto;
	padding: 4% 0 0;
  position: relative;
}
#popup h2{
	font-size: clamp(22px, 3vw, 34px);
	margin: 0 0 20px 0;
}
#popup h2 span{
	font-size: 1.5em;
}
#popup_info {
	font-size: 17px;
	text-decoration: underline;
	text-decoration-color: #eee;
	text-decoration-thickness: 5px;
	line-height: 1.4;
}

#popup > ul{
	width: 80%;
	margin: 50px auto 60px;
	padding: 0;
}

#popup  > ul > li{
  height: auto; /* 高さ固定をやめる */
  list-style: none;
  background: #fff;
  position: relative;
  padding: 10px 20px 0; /* 上に余白を追加 */
  margin: 60px 0 10px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: visible; /* はみ出し可 */
}

#popup > ul > li h3{
	color: #1D3879;
	font-size: clamp(18px, 3vw, 22px);
	line-height: 2;
	margin: 0;
}

.flow_no{
	font-size: 60px;
	color: #8E9BBC;
	font-weight: bold;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.flow_img{
  width: 30%;
  position: relative;
  top: -30px; /* 上にずらす */
  margin-bottom: -30px; /* 下余白を相殺 */
  z-index: 1;
}
.flow_txt{
  width: 70%;
	padding: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
	font-size: clamp(12px, 3vw, 17px);
	line-height: 1.6;
}
.flow_img img{
	width: 95%;
}
.triangle_flow {
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 25px solid #1D3879;
	margin: 0 auto;
}

.flow_txt > ul{
	margin: 1em 0 0;
	padding: 0;
}
.flow_txt > ul > li{
	display: inline-block;
	font-weight: bold;
	list-style: none;
	margin: 0 5px 0 0;
}
.flow_txt > ul > li a{
	font-size: clamp(14px, 3vw, 18px) !important;
	color: #333;
	background: #E9EDF1;
	text-decoration: none;
	padding: .2em 1em;
	border-radius: 20px;
	transition: 0.3s;
}
.flow_txt > ul > li a:hover{
	color: #fff;
	background: #1D3879;
}




@media screen and (max-width:1080px) {
	#popup_inner{
		width: 80%;
	}
	#popup > ul{
		width: 96%;
		margin: 30px auto 20px;
	}
	#popup > ul > li{
		padding: 20px 20px 10px 5px;
		margin: 30px 0 10px;
	}
	.triangle_flow {
		width: 0;
		height: 0;
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		border-top: 20px solid #1D3879;
	}
	.flow_txt {
		width: 60%;
    padding: 0 0 15px 0;
	}
	.flow_img{
		width: 40%;
		position: relative;
		top: 0; /* 上にずらす */
		margin-bottom: 0; /* 下余白を相殺 */
		z-index: 1;
	}
	.flow_no{
		font-size: 38px;
		position: absolute;
		top: -18px;
		left: 50%;
		transform: translateX(-50%);
	}
}



/* index.css との兼ね合い*/

.shindan input {
  display: inline-flex;
}



.shindan {
	margin: 0 auto;
	text-align: center;
	background: #DCE2E9;
	padding: 30px 0 25px;
	line-height: 1;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	}

	.shindan form {
		width: max-content;
		text-align: left;
		/* background: #ccc; */
		margin: 0 auto;
	}

	
.shindan label{
	color: #1D3879;
	font-weight: bold;
}
form span{
	font-size: 0.8em;
}



/* select box */
.select_box {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.select_box::after {
	position: absolute;
	right: 15px;
	width: 14px;
	height: 14px;
	background-color: #1D3879;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: '';
	pointer-events: none;
}

.select_box select {
	appearance: none;
	min-width: 230px;
	padding: 15px 10px;
	border: none;
	background-color: #fff;
	color: #333;
	font-size: 18px;
	cursor: pointer;
	margin: 0 0 0 6px;
}


/* inputo box */
.shindan input {
	width: 150px;
	padding: 15px 10px;
	border: none;
	background-color: #fff;
	color: #333;
	font-size: clamp(20px, 3vw, 22px);
	cursor: pointer;
}
#usage {
	width: 80px;
}



.shindan button{
	cursor: pointer;
	background: #E87E15;
	color: #fff;
	font-size: 21px;
	font-weight: bold;
	border-radius: 20px;
	border: none;
	padding: 10px 40px;
	line-height: 1.0;
}
.shindan button:hover{
	background: #FFA41C;
	transition: 0.3s;
}


/* ----------result--------- */

.kekka{
	width: 80%;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.4;
}

.kekka > h2{
	font-size: clamp(38px, 3vw, 40px);
	font-weight: bold;
	padding: .2em 0;
	margin: 0;
	text-align: center;
}
.kekka > h2 span{
	font-size: 17px;
	width: max-content;
	color: #fff;
	background: #727171;
	padding: 5px 15px 3px;
	margin: 0 auto 10px;
	font-weight: bold;
	display: block;
	border-radius: 5px;
}

.now{
	font-weight: bold;
	font-size: 1.4em;
}

.fairPrice{
	width: 100%;
	margin: 10px 0;
	padding: 10px 0;
	background: #FFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.fairPrice > div {
	font-weight: bold;
	text-align: left;
	align-items: baseline;
}
.fairPrice > div:last-of-type {
	color: #22AC38;
	font-size: clamp(28px, 3vw, 32px);
	margin: 0 0 0 20px;
	display: flex;
}

.fairPrice > div:last-of-type span {
	color: #333;
	font-size: 17px;
}



.saving{
	width: max-content;
	margin: 20px auto 40px;
	font-weight: bold;
	
}
.saving dl{
	display: flex;
	flex-wrap: wrap;
	margin: 5px 0;
}
.saving dt {
	width:3em;
}
.saving dd {
	width: 10em;
	text-align: right;
	white-space: nowrap;
}
.saving span {
	font-weight: normal;
}

.saving dl dd strong{
	font-size: 1.2em;
	color: #22AC38;
}


.safe {
	margin: 10px auto;
	padding: 20px;
	background: #FFF;
}
.safe span{
	font-weight: bold;
	margin: 0 0 0.5em 0;
	font-size: 1.2em;
	display: block;
}


.act {
	position: relative;
	font-weight: bold;
	padding: 10px 0;
	margin: auto 0;
	color: #fff;
	background: #727171;
	text-align: left;
	display: inline-block;
}

.act::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 25px 15px 0 15px;
	border-style: solid;
	border-color: #727171 transparent transparent transparent;
}

.act{
	display: flex;
	justify-content: center;
	line-height: 1.4;
}
.act > div{
  display: flex;
  align-items: center;
  justify-content: center;
}
.act > div img{
	width: 100%;
	margin: 0 15px 0 0;
}


.triangle_down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 15px solid #6C7EA8;
	margin: 15px auto;
}



.shindanWrap{
	width: auto;
	margin: 40px auto;
}

#pageIndex .shindanWrap{
	width: 80%;
	margin: 40px auto;
}


.shindanCta {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.shindanCta > div{
  width: 48%;
  box-sizing: border-box;
  margin: 0 0;
}
    @media screen and (max-width:768px) {
      .shindanCta > div { width: 100%; margin: 0 0 20px 0;}
    }

.shindanCta > div > div.tel,.shindanCta > div > div.mail {
	border-radius: 4px;
	text-align: center;
	height: 55px;
}
.shindanCta > div > div.tel a,.shindanCta > div > div.mail a {
	display: block;
	text-decoration: none;
	padding: 15px 0;
	line-height: 1.0;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}
.shindanCta > div > div.tel {
	position: relative;
	overflow: hidden;
	background: #FFA41C;
	cursor: pointer;
	font-size: 26px;
	font-weight: bold;
}
.shindanCta > div > div.tel a {
	color: #000;
}
.shindanCta > div > div.tel a:hover {
	background: #FF8F00;
}

.shindanCta > div > div.mail {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: #28c400;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
}
.shindanCta > div > div.mail a {
	color: #fff;
}
.shindanCta > div > div.mail a:hover {
	background: #2ddc00;
}

.shindanCta > div > div.notice{
	font-size: 12px;
	margin: 10px 0 0 0;
}


.shindanCta_icon_tel {
	display: inline-block;
	line-height: 1.0;
	width: 30px;
	height: 30px;
	margin: 0 0 0 0;
	padding: 0;
	background: url(../img/i_freedial_bk.svg) no-repeat center center;
	background-size: contain;
}
.shindanCta_icon_mail {
	display: inline-block;
	line-height: 1.0;
	width: 30px;
	height: 28px;
	margin: 0 0 0 0;
	background: url(../img/i_mail.svg) no-repeat center center;
	background-size: contain;
}


/* popupCta */
.popupCta {
  background: #DDE1EB;
  border-bottom: 5px solid #1D3879;
  padding: 0 0 10px 0;
 }
.popupCta > .ctaTit{
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: clamp(20px, 3vw, 20px);
  background: #1D3879;
  padding: 15px 0;
}
.popupCta > .cta_triangle{
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #1D3879;
  margin: 0 auto;
}

.popupCta > .cta_apart{
  text-align: right;
  font-size: clamp( 12px, 3vw, 14px);
}
.popupCta > .cta_apart a{
  color: #1D3879;
  text-decoration: none;
}
.popupCta > .cta_apart a:hover{
  text-decoration: underline;
}



.popupCta > .ctaSet {
	width: 800px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px auto 20px;
}
.popupCta > .ctaSet > div{
  width: 48%;
  box-sizing: border-box;
  margin: 15px 0 0;
}
    @media screen and (max-width:767px) {
			.popupCta > .ctaSet{ width: 90%;}
      .popupCta > .ctaSet > div { width: 100%;}
    }

.popupCta > .ctaSet > div.tel,
.popupCta > .ctaSet > div.mail {
  border-radius: 4px;
  text-align: center;
}
.popupCta > .ctaSet > div.tel a,
.popupCta > .ctaSet > div.mail a {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  line-height: 1.0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.popupCta > .ctaSet > div.tel {
  position: relative;
  overflow: hidden;
  background: #FFA41C;
  cursor: pointer;
  font-size: 26px;
  font-weight: bold;
}
.popupCta > .ctaSet > div.tel a {
  color: #000;
}
.popupCta > .ctaSet > div.tel a:hover {
  background: #FF8F00;
}

.popupCta > .ctaSet > div.mail {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #28c400;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.popupCta > .ctaSet > div.mail a {
  color: #fff;
}
.popupCta > .ctaSet > div.mail a:hover {
  background: #2ddc00;
}

.popupCta > .ctaSet > div.tel::before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%);
  -webkit-animation: shine 5s infinite;
  animation: shine 5s infinite;
}
.popupCta > .ctaSet > div.mail::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%);
  -webkit-animation: shine 5s infinite;
  animation: shine 5s infinite;
}


.popupCta > .ctaOpen{
  font-size: clamp(14px, 3vw, 17px);
  color: #1D3879;
  display: block;
  margin: 10px auto;
  text-align: center;
}


.popupCta_i_tel{
  display: inline-block;
  line-height: 1.0;
  width: 49px;
  height: 25px;
  margin: 0 0 0 0;
  padding: 0;
  background: url(../img/i_freedial_bk.svg) no-repeat center center;
  background-size: contain;
}
.popupCta_i_mail{
  display: inline-block;
  line-height: 1.0;
  width: 44px;
  height: 25px;
  margin: 0 0 0 0;
  background: url(../img/i_mail.svg) no-repeat center center;
  background-size: contain;
}




.info{
	font-size: 12px;
	margin: 10px 0;
}



.col_red{	color: #E60012;}
.col_orange{	color: #F39800;}
.col_green{	color: #22AC38;}
.col_bk{ color: #000;}








@media screen and (max-width:1080px) {

	.shindan{
		width: 100%;
	}
	#pageIndex .shindanWrap{
	width: 90%;
}
	.kekka {
		width: 90%;
	}

	.fairPrice,.act{	
		width: 100%;
		margin: 0 auto;
		/* padding: 3% 2%; */
		padding: 0.5em 0.5em;
		box-sizing: border-box;
	}

	.act > div img{
		width: 60%;
	}
	#popup_inner{
		width: 90%;
	}
	.safe {
	width: 80%;
	}
	
}











/* 旧診断バナー */
.shindanArea {
  position: relative;
  background: #076bb0;
  border-radius: 25px;
  line-height: 0.5;
  margin: 60px auto 30px;
  padding: 20px 50px;
  z-index: 0;
}

.shindanArea .shindanTitle{
  display: flex;
  margin: 0 0 0 0;
  align-items: baseline;
  justify-content: baseline;
}

.shindanArea .point {
  font-size: 2.4rem;
  border-radius: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  padding: 5px 12px 2px;
  background: #efea3a;
  height: max-content;

  display: flex;
  align-items: baseline;
  justify-content: baseline;
}

.shindanArea .point span{ font-size: 0.6em;}

.goTitle{ width: 80%;}

.goTitle img{
  max-width: 430px;
  height: auto;
  margin: 0 0 0 0;
}
.goImg{
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 175px;
    height: 180px;
    background:url(https://www.propane-npo.com/renewal/img/index/shindan_figure.png) no-repeat;
    background-size:100% auto;
    z-index: -1;
}

    @media (min-width: 768px) and (max-width: 1079px) {
      .shindanArea .shindanTitle{ display: block;}
      .shindanArea .point {
        font-size: 2.0rem;
        width: max-content;
        display: block;
      }

      .goImg{
        bottom: 25px;
        right: 20px;
        width: 150px;
        height: 160px;
      }
      .goTitle{ width: 65%;}

    }
    @media screen and (max-width:767px) {
			.shindanArea { 
				width:85%;
				margin: 0 auto;
			}
      .shindanArea .shindanTitle{
				display: block;
			}
      .shindanArea .point {
        width: max-content;
        display: block;
      } 
      .shindanArea .point {
				font-size: 2.2rem;
			}
      .goImg{
        bottom: 80px;
        right: 20px;
        width: 150px;
        height: 175px;
      }
      .goTitle{ width: 80%;}
    }
    @media screen and (max-width:580px) {
     
      .goImg{
        bottom: 65px;
        right: 20px;
        width: 150px;
        height: 190px;
      }
      .goTitle{ width: 70%;}

    }
    @media screen and (max-width:450px) {
      .shindanArea .point {
        font-size:2rem;
        padding: 5px 10px;
        margin: 0 0 5px 0;
      }
      .goImg{
        right: 10px;
        width: 150px;
        height: 200px;
      }
    }



.shindanArea .bnrShindanBox form {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.shindanArea .bnrShindanBox .selectBox01, .shindanArea .bnrShindanBox .selectBox02,
.shindanArea .bnrShindanBox .selectBox02_Apa {
  width: 49%;
}
.shindanArea .bnrShindanBox .selectBox01 select {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  background: url(https://www.propane-npo.com/img/bt/arrow4.png) right 50% no-repeat, #FFF;
  background-size: 25px, 100%;
  border-radius: 4px;
  border: 1px solid #aabac7;
  color: #333;
  
}
.shindanArea .bnrShindanBox .selectBox02 input {
  width: 100%;
  color: #FFF;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 3px 20px;
  border: 3px solid #fff;
  background: url(https://www.propane-npo.com/img/bt/next.png) right 50% no-repeat, linear-gradient(to bottom, #e55927 100%, #e55927 100%);
  background-size: 30px, 100%;
  border-radius: 30px;
}

.selectBoxWrap{
  position: relative;
}

.shindanArea .bnrShindanBox .selectBox02 input:hover {
  background: url(https://www.propane-npo.com/img/bt/next.png) right 50% no-repeat, linear-gradient(to bottom, #ff7070 0%, #ff7070 100%);
  background-size: 30px, 100%;
}


/* アパート用 */
.shindanArea .bnrShindanBox .selectBox02_Apa input {
  width: 100%;
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  background: url(https://www.propane-npo.com/img/bt/find.png) right 50% no-repeat, linear-gradient(to bottom, #3c6ef0 0%, #3c6ef0 100%);
  background-size: 30px, 100%;
  border-radius: 5px;
}
.shindanArea .bnrShindanBox .selectBox02_Apa input:hover {
  background: url(https://www.propane-npo.com/img/bt/find.png) right 50% no-repeat, linear-gradient(to bottom, #7598F4 0%, #7598F4 100%);
  background-size: 30px, 100%;
}


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

  .shindanArea {
	  margin: 40px auto;
  	padding: 20px 20px;
	}
  
  .shindanArea .bnrShindanBox .selectBox02{
    border-radius: 18px;
  }

  .shindanArea .bnrShindanBox form {
    display: block;
  }
  .shindanArea .bnrShindanBox .selectBox01 select {
    font-size: 1.5rem;
  }

	.shindanArea .bnrShindanBox .selectBox02 input {
    font-size: 1.8rem;
  }
  .shindanArea .bnrShindanBox .selectBox01,
	.shindanArea .bnrShindanBox .selectBox02,
  .shindanArea .bnrShindanBox .selectBox02_Apa {
    width: 100%;
  }
  .shindanArea .bnrShindanBox .selectBox02 {
    margin-top: 7px;
  }

  .shindanArea .bnrShindanBox .selectBox02_Apa {
    margin-top: 10px;
  }
	
}