@charset "utf-8";
/******************************
// MV
******************************/	
.bl_mv picture > img {
  width: 100%;
}
@media (min-width: 768px){
  .bl_mv{
    min-width: 1024px;
  }
}
@media (max-width: 767.98px) {
  .ly-mv .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
/******************************
// H2
******************************/	
.heading_img{
  text-align: center;	
}
@media (max-width: 767.98px){
  .heading_img picture > img {
    width: 60%;
  }
}
.heading_white{
  text-align: center;
  color: var(--color_white);
  font-weight: 700;
  font-size: clamp(1.5rem, 0.71rem + 3.05vw, 3rem);
}
.heading_arrow{
  text-align: center;
  color: var(--color_mainblue);
  position: relative;
  font-weight: 600;
  font-size: clamp(1.313rem, 0.885rem + 1.65vw, 2.125rem);
}
.heading_arrow::before{
  content: '';
  border-style: solid;
  border-color: var(--color_mainblue) transparent transparent transparent;
  position: absolute;
}
.heading_arrow::after{
  content: '';
  position: absolute;
}
@media (min-width: 768px){
  .heading_arrow{
    padding-bottom: 10px;
  }
  .heading_arrow::before{
    border-width: 20px 20px 0 20px;
    bottom: -20px;
    left: calc(50% - 20px);
  }
  .heading_arrow::after{
    width: 230px;
    height: 3px;
    bottom: 0;
    left: calc(50% - 115px);
    border-bottom: solid 3px var(--color_mainblue);   
  }	
}
@media (max-width: 767.98px){
  .heading_arrow{
    padding-bottom: 7px;  
  }
  .heading_arrow::before{
    border-width: 10px 10px 0 10px;
    bottom: -10px;
    left: calc(50% - 10px);
  }
  .heading_arrow::after{
    width: 134px;
    height: 3px;
    bottom: 0;
    left: calc(50% - 67px);
    position: absolute;
    border-bottom: solid 3px var(--color_mainblue); 	
  }
}
/******************************
// H3
******************************/	
.heading_line{
  padding: 0 0 10px 16px;	
  color: var(--color_text);	
  font-size: clamp(1.125rem, 0.598rem + 2.04vw, 2.125rem);
}
@media (min-width: 768px){
  .heading_line{
    margin: 40px 0 40px;
    border-left: solid 3px var(--color_campaign);
    border-bottom: solid 3px var(--color_campaign);  
  }
}
@media (max-width: 767.98px){
  .heading_line{
    margin: 20px 0 20px;
    border-left: solid 2px var(--color_campaign);
    border-bottom: solid 2px var(--color_campaign);  
  }
}
/******************************
//テキスト
******************************/	
  p{
    color: var(--color_text);	
    font-size: clamp(0.75rem, 0.552rem + 0.76vw, 1.125rem);
  }
/******************************
//JAF会員の詳細はこちらをチェック
******************************/		
.arrow_link{
  display: block;
  font-weight: 700;	
  text-align: center;
  font-size: clamp(0.875rem, 0.151rem + 2.8vw, 2.25rem);
}
.arrow_s{
  display: inline;
  border-bottom: solid 2px var(--color_mainblue);
}
a.arrow_s{
  color: var(--color_mainblue);
}
a:hover.arrow_s {
  text-decoration: none;
}
.arrow_s span{
  position: relative;
}
.arrow_s span:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color_mainblue) transparent transparent transparent;
  position: absolute;
  margin: auto;
  text-decoration: underline;
}
@media (min-width: 768px){
  .arrow_s{
    padding-right: 3rem;
  }	
  .arrow_s span:before {
    border-width: 30px 20px 0 20px;
    bottom: 5px;
    right: -45px;
  }	
}
@media (max-width: 767.98px){
  .arrow_s{
    padding-right: 1.5rem;
  }		
  .arrow_s span:before {
    border-width: 10px 6px 0 6px;
    bottom: 2px;
    right: -16px;
  }	
}
/******************************
//()数字リスト
******************************/
.number_list{
  padding-inline-start: 0;
  list-style: none;
  counter-reset: number;
}
.number_list li {
  position: relative;
  color: var(--color_text);		
  font-size: clamp(0.75rem, 0.552rem + 0.76vw, 1.125rem);	
}
.number_list li::before{
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  text-align: center;
  font-size: clamp(0.75rem, 0.552rem + 0.76vw, 1.125rem);	
}
@media (min-width: 768px){
  .number_list li {
    padding-left: 1.7rem;
  }
  .number_list li::before{
    top: 0;
    left: -12px;
  }	
}
@media (max-width: 767.98px){
  .number_list li {
    padding-left: 1.3rem;  
  }
  .number_list li::before{
    top: 0;
    left: -8px;
  }	
}
/******************************
//ドットリスト
******************************/	
.bullet-list{
margin-left: -0.4rem;
}
.bullet-list li{
  list-style: none;
  position: relative;	
  color: var(--color_text);
  font-size: clamp(0.75rem, 0.552rem + 0.76vw, 1.125rem);
}
.bullet-list li:before{
  content: '・';	
  position: absolute;
  font-weight: 800;
  line-height: 1.1;
}
@media (min-width: 768px){
  .bullet-list li{
    padding-left: 1.5rem;	  
  }	
  .bullet-list li:before{
    top: 6px;
    left: 2px;
  }	
}
@media (max-width: 767.98px){
  .bullet-list li{
    padding-left: 1rem;	  
  }
  .bullet-list li:before{
    top: 4px;
    left: 2px;
  }	
}
/******************************
// 備考
******************************/
.hp_Anno,
.hp_Anno-half,
.bl_AnnoList li,
.bl_AnnoNumber li{
  font-size: clamp(0.688rem, 0.507rem + 0.66vw, 1rem);
  font-weight: 400;	
}
.hp_Anno{
  padding-left: 1rem;
  text-indent: -1rem;
}
.hp_Anno-half{
  padding-left: 0.51rem;
}
.hp_Anno:before,
.hp_Anno-half:before,
.bl_AnnoList li:before{
  content: '※';
  font-size: clamp(0.688rem, 0.507rem + 0.66vw, 1rem);		
}
.bl_AnnoList li{
  position: relative;
  padding-left: 1rem;
}
.bl_AnnoList li:before{
  position: absolute;
  top:0;
  left: -1px;
}

.bl_AnnoNumber{
  padding-inline-start: 0;
  list-style: none;
  counter-reset: number;
}
.bl_AnnoNumber li {
  position: relative;
}
.bl_AnnoNumber li::before{
  counter-increment: number;
  content: "※" counter(number);
  position: absolute;
  font-size: clamp(0.688rem, 0.507rem + 0.66vw, 1rem);	
}
@media (min-width: 768px){
  .bl_AnnoNumber,
  .bl_AnnoList{
    margin: 1rem 0 0 0;	
  }	
  .bl_AnnoNumber li {
    padding-left: 2rem;
  }
  .bl_AnnoNumber li::before{
    top: 0;
    left: 0;
  }	
}
@media (max-width: 767.98px){
  .bl_AnnoNumber,
  .bl_AnnoList{
    margin: 0.5rem 0 0 0;	  
  }
  .bl_AnnoNumber li {
    padding-left: 1.3rem;
  }	
  .bl_AnnoNumber li::before{
    top: 0;
    left: 0;
  }	
}

.hp_ss_txt{
 font-size: clamp(0.688rem, 0.507rem + 0.66vw, 1rem);	
}
/******************************
//１等…ポイント
******************************/
.bl_roundCorner{
  text-align: center;
}
.bl_roundCorner dt{
  background-color: var(--color_campaign);
  color: var(--color_white);
}
.bl_roundCorner dd{
  color: var(--color_campaign);
}
.bl_roundCorner dt,
.bl_roundCorner dd{
  font-weight: bold;  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: clamp(1.125rem, 0.532rem + 2.29vw, 2.25rem);
}	
.numEmph{
  font-size: clamp(1.875rem, 0.887rem + 3.82vw, 3.75rem);	
  font-weight: 700;
  font-family: futura-pt, sans-serif;
  font-style: normal;	
}
@media (min-width: 768px){
  .bl_roundCorner{
    margin: 40px 0 40px;
  }	
  .bl_roundCorner dt,
  .bl_roundCorner dd{
    border: solid 4px var(--color_campaign);  
  }
  .numEmph{
    line-height: 1;
    padding-right: 0.5rem;  
  }
  .point{
    padding-right: 1.5rem;
  }
}
@media (max-width: 767.98px){
  .bl_roundCorner{
    margin: 20px 0 20px;
  }		
  .bl_roundCorner dt,
  .bl_roundCorner dd{
    border: solid 2px var(--color_campaign);  
  }
  .bl_roundCorner dd{
    padding: 5px;
  }
  .numEmph{
    line-height: 1.2;  
  }	
}	
/******************************
// 特徴見出し
******************************/
.bl_headFeat{
  display: flex;
  align-items: center;
}
.bl_FeatTit h3{
  line-height: 1.2;
  color: var(--color_white);
  font-size: clamp(1.125rem, 0.474rem + 2.37vw, 2.25rem);
  font-weight: 700;
}
.features01{
  letter-spacing:0.1em;
}
.features02{
  letter-spacing:0.2em;
}
@media (min-width: 768px){
  .bl_headFeat{
    margin: 0 0 40px;
	padding-top: 80px;	
  }	
  .bl_FeatIcon{
    width: 130px;
  }	
  .bl_FeatTit{
    width: 810px;
    padding-left: 10px;
  } 	
}		
@media (max-width: 767.98px) {
  .bl_headFeat{
    margin: 0 0 20px;
	padding-top: 40px;	
  }	
  .bl_FeatIcon{
    width: 16%;
    overflow: hidden;
  }
  .bl_FeatTit{
    width: 83%;
    padding-left: 1%;  
  } 
}
.features01 .hp_Anno{
  padding-left: 0rem;
}
/******************************
//特徴2　利用できる対象範囲が広い
******************************/
.bl_Ifmember{
  background-color: var(--color_white);  	
}
@media (min-width: 768px){
  .bl_Ifmember{
    width: 950px;
    border: var(--color_subblue) 4px solid;
  }
  .ly_triangle .bl_Ifmember{
      margin: 0 0 40px;
  }
  .ly_triangle .bl_Ifmember:last-child{
      margin: 0 0 80px;	
  }		
}
@media (max-width: 767.98px) {
  .bl_Ifmember{
    width: 100%;
    border: var(--color_subblue) 2px solid;
  }
  .ly_triangle .bl_Ifmember{
      margin: 0 0 20px;
  }
  .ly_triangle .bl_Ifmember:last-child{
      margin: 0 0 40px;	
  }	
}
.bl_Ifcontents{
  position: relative;
}
@media (min-width: 768px){
  .bl_Ifcontents{
    padding: 50px 70px 50px 90px;
  }
}
@media (max-width: 767.98px) {
  .bl_Ifcontents{
    padding: 20px 20px 20px 25px;
  } 
}
.bl_Ifcontents::after{
  content: "";
  position: absolute;
  background-color: var(--color_subblue);
}
.bl_Ifcontents::before{
  position: absolute;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; 
  color: var(--color_white);
  z-index: 1;
  line-height: 1.5;
  font-size: clamp(1.375rem, 0.289rem + 4.2vw, 3.438rem);	
}
@media (min-width: 768px){
  .bl_Ifcontents::after{
    width:130px;
    height: 130px;
    top: -4px;
    left: -4px;  
    clip-path: polygon(0 0, 0 135px, 135px 0);
  }
  .bl_Ifcontents::before{
    top: -10px;
    left: 15px;
    z-index: 1;
  }
}	
@media (max-width: 767.98px) {
   .bl_Ifcontents::after{
    width: 50px;
    height: 50px;
    top: -2px;
    left: -2px;  
    clip-path: polygon(0 0, 0 50px, 50px 0);
  }
  .bl_Ifcontents::before{
    top: -5px;
    left: 7px;
  }
}	
.bl_Ifcontents.if1::before{
  content: "1";
}
.bl_Ifcontents.if2::before{
  content: "2";
}
.bl_Ifcontents.if3::before{
  content: "3";
}
.bl_Ifcontents .bl_row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.bl_Ifcontents .bl_col_text .hp_txt{
  font-size: clamp(0.875rem, 0.546rem + 1.27vw, 1.5rem);
  color: var(--color_mainblue);
  font-weight: 700;
}
@media (min-width: 768px){
  .bl_Ifcontents .bl_row .bl_col_text{
    width: 440px;
  }	
  .bl_Ifcontents .bl_row .bl_col_img{
    width: 270px;
  }	
}
@media (max-width: 767.98px) {
  .bl_Ifcontents .bl_row .bl_col_text{
    width: 60%;
  }
  .bl_Ifcontents .bl_row .bl_col_img{
    width: 38%;
  }
  .bl_Ifcontents .bl_col_text .hp_txt{
    line-height: 1.2;  
  }
}
.bl_Checkcontents{
	text-align: center;
}
/******************************
//要チェック自動車保険に加入中の方必見！／会員特典
******************************/		
.hp_lead{
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.927rem + 0.76vw, 1.5rem);	
}
.hp_copy,
.hp_copy-plan{
  text-align: center;
  line-height: 1.3;
  font-size: clamp(1.125rem, 0.598rem + 2.04vw, 2.125rem);	
}
.hp_copy{
  font-weight: 500;
}
.hp_copy-plan{
  font-weight: 700;
}
/******************************
//料金
******************************/		
.bl_plan{
  background-color: var(--color_white);
}
@media (min-width: 768px){
  .bl_plan{
    padding: 25px;
  }
}
@media (max-width: 767.98px){
  .bl_plan{
    padding: 18px;
  }
}
/******************************
// ご入会までの流れ
******************************/
.bl_step_txt{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .bl_step_txt div{
    width: 32%;
  }
  .bl_step_txt div:nth-child(1) {
    padding: 0 0 0 1%;
  }
  .bl_step_txt div:nth-child(2) {
    padding: 0 0 0 1%;
  }
}
.bl_step_txt div p{
  font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
  font-weight: 500;
  color: var(--color_mainblue);;

}
@media (min-width: 768px) {
  .bl_step_txt div p {
    text-align: center;
    line-height: 1.4; 
   }
}
@media (max-width: 767.98px) {
  .bl_step_txt{
    margin-top: 15px;
  }
  .bl_step_txt div{
    width: 32%;
  }
  .bl_step_txt div:nth-child(2) {
    padding: 0 1% 0 1%;
  }  
}
/******************************
// 本キャンペーンのお問い合わせ先
******************************/

.bl_address{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: clamp(0.75rem, 0.552rem + 0.76vw, 1.125rem);
}
.bl_address dt{
  position: relative;
}
.bl_address dt::after{
  content: '：';
  position: absolute;
}
@media (min-width: 768px) {
  .bl_address dt{
    width: 10%;
  }
  .bl_address dd{
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .bl_address dt{
    width: 18%;
  }
  .bl_address dd{
    width: 82%;
  } 
}
