@charset "UTF-8";

body{
  font-family:"Noto Sans JP","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic",  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", "Meiryo" , sans-serif;
}
.wcg-bg-blue {
  background-color: #064C89 !important;
}

.flex,ul.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
img{
  max-width:100%;
}

ol,ul{
  padding-left:0;
  list-style:none;
}

.bold{
  font-weight:bold;
}
.side-banner{
 max-width: 300px;
}

.article-title{
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.article-title .sub-title{
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}
.section-title-h2{
    font-size: 1.8rem;
    margin: 3rem 0 2rem 0;
    padding: 10px;
    border-bottom: 2px solid #004f91;
    border-left: 6px solid #004f91;
    background-color: #f2f7fb;
}
.section-sub-title-h3{
    font-size: 1.6rem;
    margin: 3rem 0 2rem 0;
    padding: 5px 10px;
    border-left: 6px solid #004f91;
}
.section-sub-title-h4{
    font-size: 1.4rem;
    margin: 3rem 0 2rem 0;
    padding: 5px 0;
    border-bottom: 2px solid #004f91;
    background-color: #FFFFFF;
}
section p{
    margin-top: 0;
    margin-bottom: 1rem;
    /*font-feature-settings: 'palt' 1;*/
    line-height: 1.7;
    text-align: justify;
}
section p > span.bold{
    background: linear-gradient(transparent 60%,#fec6d699 0);
    padding: 0 2px 2px;
}

.link-btn{
    display: inline-block;
    margin: 0 auto;
    padding: 10px 70px 10px 20px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    border-radius: 10px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    opacity:1.0;
    transition: 0.3s;
}
.link-btn:after{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right:20px;
  margin: auto;
  background-image:url(/common/webcg/images/v5/carinsurance/icon-circle-arrow-right.png);
  background-repeat:no-repeat;
  background-size:100%;
}

.btn-blue{
  background-color:#004f91;
  color:#ffffff;
}
.btn-orange{
  background-color:#fa8714;
  color:#ffffff;
}
.btn-red{
  background-color:#f44336;
  color:#ffffff;
}
.btn-green{
  background-color:#2cbc2a;
  color:#ffffff;
}
.btn-blue:hover,
.btn-orange:hover,
.btn-red:hover,
.btn-green:hover{
  color:#ffffff;
  opacity:0.8;
  transition: 0.3s;
}

.goto-top-btn{
    display: inline-block;
    margin: 20px auto;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    opacity:1.0;
    transition: 0.3s;
}



/*BREADCRUMB*/
.breadcrumb{

}
.breadcrumb ol li{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.breadcrumb ol li:not(.current):after, .breadcrumb span.delimiter:after{
  content: "";
  border: 1px solid #000;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: -1px;
  bottom: 0px;
  right: -3px;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-top: medium none;
  border-left: medium none;
}
.breadcrumb ol li.no-breadcrumb:after{
  content: none;
}
.breadcrumb ol li.current{
  padding-left: 10px;
  cursor: default;
  font-size:14px;
}
.breadcrumb ol li a{
  font-size: 13px;
  padding: 0 10px;
  text-decoration: underline;
}
.breadcrumb ol li a:visited{
  color: #004F91 !important;
}
.breadcrumb ol li a:hover{
  color: #004F91 !important;
  text-decoration: underline;
}
.breadcrumb ol li a:first-child{
  padding-left: 0;
}
.breadcrumb ol li a span{
  font-size:14px;
}


/*IN ARTICLE LIST*/
.list-with-title{
    border: 1px solid #004f91;
    padding: 15px;
}
.list-with-title .list-title{
    display: block;
    margin: 0 0 10px 5px;
    font-size: 1.2rem;
    color: #004f91;
    font-weight: bold;
}
.list-with-title ul.list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-with-title ul.list li{
    position:relative;
    display: block;
    margin-bottom: 5px;
    padding-left: 25px;
}
.list-with-title ul.list li:last-child{
    margin-bottom: 0;
}
.list-with-title ul.list li:before{
    content: '';
    position: absolute;
    left: 10px;
    top: 4px;
    width: 8px;
    height: 14px;
    border: solid #004f91;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*TABLE(SCROLLABLE)20230706*/
.scrollable-table-box{
  width:100%;
  overflow-x:scroll;
  margin:30px 0;
  padding-bottom: 20px;
}
.scrollable-table-box table td{
  font-size: 0.8rem;
  border: 1px solid #dddddd;
  padding: 10px;
  vertical-align: middle;
  line-height: 1.4;
}
.scrollable-table-box table td:first-child{
    background-color: #eeeeee;
    position:sticky;
    left:0;
    font-weight:bold;
}
.scrollable-table-box table td:first-child:before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border-left: 1px solid #ddd;
}
.scrollable-table-box table td.text-center{
  text-align: center;
}
.scrollable-table-box table tr:first-child td{
  background-color:#faeeee;
  font-weight:bold;
}
.scrollable-table-box table.headerless tr:first-child td:first-child{
  background-color:#eeeeee;
  font-weight:bold;
}
.scrollable-table-box table.headerless tr td.item {
    font-weight: normal;
    background-color: #ffffff;
}

/*TABLE(100%)*/
.table-full-width{
  width:100%;
}
.table-full-width td{
  font-size: 0.8rem;
  border: 1px solid #dddddd;
  padding: 10px;
  vertical-align: middle;
  line-height: 1.4;
}
.table-full-width td.text-center{
  text-align: center;
}
.table-full-width tr td:first-child{
  background-color:#eeeeee;
  font-weight:bold;
}
.table-full-width tr td.item {
    font-weight: normal;
    background-color: #ffffff;
}
.table-full-width tr:first-child td{
  background-color:#faeeee;
  font-weight:bold;
}
.table-full-width.headerless tr:first-child td{
  background-color:#ffffff;
  font-weight:normal;
}
.table-full-width.headerless tr:first-child td:first-child{
  background-color:#eeeeee;
  font-weight:bold;
}








/*INDEX*/
.index-block{
    border: 1px solid #d7edff;
    background-color: #eef7ff;
    padding: 1rem;
}
.index-block.empty{
    border: none;
    background-color: #FFFFFF;
    padding: 0;
    margin-bottom: 0;
 }
.index-block.in-section{
  border-color: #eaeaea;
  background-color: #fafafa;
}
.index-block .index-header{
  font-weight: bold;
}
.index-list{
  list-style:none;
  margin-bottom: 0;
}
.index-list li{
  margin: 10px 0;
}
.index-list li a{
  text-decoration:none;
  color: #333;
}
.index-list li a:hover{
  text-decoration:underline;
  color: #333;
}
.index-list li.index-h2{

}
.index-list li.index-h3{
  margin-left:15px;
}
.index-list li.index-h4{
  margin-left:30px;
}

/*(PC) SIDE COLMN KAKAKU BANNER*/
.kakaku-banner-btn{
    display: inline-block;
    width:100%;
    margin: 0 auto;
    padding: 30px 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -1px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.kakaku-banner-btn .sub-label{
  font-size: 14px;;
  margin-bottom: 5px;
  letter-spacing: 0;
}

/*YOUTUBE EMBED IFRAME RESPONSIVE*/
.video-container{
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-container iframe{
  width: 100%;
  height: 100%;
}


/*BOTTOM STICKER BUTTON*/
.sp-bottom-sticker{
    display:block;
    position: fixed;
    bottom: 0px;
    width: 100vw;
    background-color: #004f91;
    padding: 10px;
    border-top: 1px solid #004f91;
    z-index: 100;
}
.sp-bottom-sticker-btn{
    display: inline-block;
    margin: 0 auto;
    padding: 10px 40px 10px 10px;
    min-width:calc(100vw - 40px);
    text-decoration: none;
    font-size: 4vw;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -1px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.sp-bottom-sticker-btn:after{
  content: "";
  border: 4px solid #fff;
  border-top-color: rgb(255, 255, 255);
  border-top-style: solid;
  border-top-width: 4px;
  border-left-color: rgb(255, 255, 255);
  border-left-style: solid;
  border-left-width: 4px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  position: absolute;
  top: -1px;
  bottom: 0px;
  right: 15px;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-top: medium none;
  border-left: medium none;
}
.sp-bottom-sticker-btn .sub-label{
  font-size: 2.6vw;
  margin-bottom: 5px;
  letter-spacing: 0;
}

.sp-bottom-sticker-img{
    display:block;
    position: fixed;
    bottom: 0px;
    width: 100vw;
    background-color: rgba(100, 100, 100, 0.4);;
    z-index: 100;
}
.sp-bottom-sticker-img a{
    display: inline-block;
    margin: 0 auto;
    /*min-width: calc(100vw - 40px);*/
    max-width:640px; 
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/*--------------------------------------------
 FOOTER
----------------------------------------------*/
#footer {
  min-height: 200px;
  color: #fff;
}
.footer-menu{
  width: 243.75px;
  min-height: 280px;
  float: left;
  margin-right: 35px;
  margin-top: 25px;
}
.footer-menu.last{
  margin-right: 0;
}

.footer-menu .menu-title {
  display: block;
  font-size: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 1px;
}
.footer-menu .menu li>a.menu-link{
  text-decoration:none;
  font-size: 13px;
  color: #FFF;
}
.footer-menu .menu li>a.menu-link:hover{
  text-decoration: underline;
}
.footer-bottom {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);	
}
.footer-bottom span{
  font-size: 12px;
}







@media (min-width: 1400px) {
  .navbar-brand{
    font-size: 1.8rem;
  }
}
@media (max-width: 1399px) {
  .kakaku-banner-btn{
    font-size:20px;
  }
  .kakaku-banner-btn .sub-label{
    font-size:12px;
  }
}
@media (min-width: 1200px) {
  .navbar-brand{
    font-size: 1.8rem;
  }
}
@media (max-width: 1199px) {
  .kakaku-banner-btn{
    font-size:16px;
    padding: 30px 15px;
  }
  .kakaku-banner-btn .sub-label{
    font-size:10px;
  }
}
@media (min-width: 992px) {
  .navbar-brand{
    font-size: 1.6rem;
  }


  
  /*BOTTOM STICKER BUTTON（only mobile）*/
  .sp-bottom-sticker,.sp-bottom-sticker-img{
    display:none;
  }
}
@media (max-width: 991px) {


}
@media (min-width: 768px) {
  .navbar-brand{
    font-size: 1.4rem;
  }
  #subColumn{
    position: relative;
    padding-bottom:50px;
  }
  #subColumn #subColumnInner{
        position: sticky;
        top:10px;
        
  }
  .author-profile {
      padding: 40px;
      background-color: #F6F6F6;
  }
  .author-profile .photo {
      width: 150px;
      margin-right: 20px;
  }
  .author-profile .photo img {
      display: block;
      margin: 0 auto;
  }
  .author-profile .text {
      flex: 1;
      width: calc(100% - 170px);
  }
  .author-profile .text p.author-title {
      width: auto !important;
      font-size: 12px;
  }
  .author-profile .text h5 {
      font-size: 20px;
      margin-bottom: 15px;
  }
  .author-profile .text p {
      width: auto !important;
      text-align: justify;
  }
  .author-profile .text p:last-child {
      margin-bottom: 0;
  }
  .author-profile .backnumber {
      margin-top: 10px;
  }
  .author-profile .backnumber .archive-list.link-text:last-child {
      margin-bottom: 0;
  }
  .author-profile .text .backnumber a:hover {
      text-decoration: underline;
  }
  /*Comment Block*/
  .comment-block {
      padding: 20px;
      background-color: #FFFFFF;
  }
  .comment-block.img-left .photo {
      margin-right: 20px;
  }
  .comment-block.img-right .photo {
      margin-left: 20px;
  }
  .comment-block .photo img {
      display: block;
      margin: 0 auto;
      border-radius:50%;
  }
  .comment-block .text {
      position:relative;
      flex: 1;
  }
  .comment-block .text p.name {
      width: auto !important;
      color: #9f5f00;
      font-size: 20px;
      margin-bottom: 5px;
  }
  .comment-block.img-right .text p.name {
      text-align:right;
  }
  .comment-block .text .comment-body {
      background-color:#ffeedd;
      display: inline-block;
      position: relative; 
      padding: 17px 13px;
      border-radius: 12px;
  }
  .comment-block .text .comment-body.user {
    background-color:#e1f5dd;
  }
  .comment-block.img-left .text .comment-body:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #ffeedd;
  }
  .comment-block.img-right .text .comment-body:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    right: -24px;
    border: 12px solid transparent;
    border-left: 12px solid #ffeedd;
  }
  .comment-block.img-left .text .comment-body.user:after,
  .comment-block.img-right .text .comment-body.user:after{
    display:none;
  }
  .comment-block .text p {
      width: auto !important;
      font-feature-settings: 'palt' 1;
      text-align: justify;
  }
  .comment-block .text p:last-child{
    margin-bottom: 0;
  }


  
  .sp-bottom-sticker-btn{
  font-size: 4vw;
  }
  .sp-bottom-sticker-btn .sub-label{
  font-size: 2vw;
  }

}
@media (max-width: 767px) {
  /*title*/
  .section-title-h2{
      font-size: 1.6rem;
  }
  .section-sub-title-h3{
      font-size: 1.4rem;
  }
  .section-sub-title-h4{
      font-size: 1.2rem;
  }
  .article-title{
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
  }
  .article-title .sub-title{
      display: inline-block;
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
  }
  /*BREADCRUMB*/
  .breadcrumb ol{
    margin-bottom: 0;
  }
  /*AUTHOR PROFILE*/
  .author-profile{
    margin: 30px 15px;
    padding: 18px;
    background-color: #efefef;
  }
  .author-profile .photo{
      width: 90px;
      margin-right: 15px;
  }
  .author-profile .photo img{
    display: block;
    margin: 0 auto;
  }
  .author-profile .text{
    display: inline-block;
    width: -webkit-calc(100% - 110px) ;
    width: calc(100% - 110px) ;
  }
  .author-profile .text p {
    line-height: 1.4;
  }  
  .author-profile .text p:last-child {
      margin-bottom: 0;
  }
  .author-profile .text div{
      font-size: 13px;
      margin-bottom: 10px;
  }
  .author-profile .backnumber {
      font-size: 13px;
      margin-top: 3px;
  }

  /*Comment Block*/
  .comment-block {
      padding: 20px 0;
      background-color: #FFFFFF;
  }
  .comment-block.img-left .photo {
      margin-right: 20px;
  }
  .comment-block.img-right .photo {
      margin-left: 20px;
  }
  .comment-block .photo img {
      display: block;
      margin: 0 auto;
      border-radius:50%;
  }
  .comment-block .text {
      position:relative;
      flex: 1;
  }
  .comment-block.img-right .text {
  }
  .comment-block .text p.name {
      width: auto !important;
      color: #9f5f00;
      font-size: 20px;
      margin-bottom: 5px;
  }
  .comment-block.img-right .text p.name {
      text-align:right;
  }
  .comment-block .text .comment-body {
      background-color:#ffeedd;
      display: inline-block;
      position: relative; 
      padding: 17px 13px;
      border-radius: 12px;
  }
  .comment-block .text .comment-body.user {
    background-color:#e1f5dd;
  }
  .comment-block.img-left .text .comment-body:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #ffeedd;
  }
  .comment-block.img-right .text .comment-body:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    right: -24px;
    border: 12px solid transparent;
    border-left: 12px solid #ffeedd;
  }
  .comment-block.img-left .text .comment-body.user:after,
  .comment-block.img-right .text .comment-body.user:after{
    display:none;
  }
  .comment-block .text p {
      width: auto !important;
      font-feature-settings: 'palt' 1;
      text-align: justify;
  }
  .comment-block .text p:last-child{
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .navbar-brand{
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .navbar-brand{
    font-size: 1.1rem;
  }

  .comment-block.img-left .text .comment-body:after,
  .comment-block.img-right .text .comment-body:after{
    content: "";
    display: inline-block;
    position: absolute;
    top: -22px;
    left: 50%;
    right:auto;
    border: 12px solid transparent;
    border-bottom: 12px solid #ffeedd;
    transform: translateX(-50%);
  }
  /*)*/
  .comment-block.img-right .text p.name{
    text-align: left;
  }
  
  .comment-block.img-left .text .comment-body.user:after,
  .comment-block.img-right .text .comment-body.user:after{
    display:none;
  }

}

/*AD BANNER 20231212*/
.ad-banner{
  position:relative;
  margin:3rem auto;
}
.ad-banner-link{
  display:inline-block;
  position:relative;
  margin:0 auto;
  left:50%;
  transform: translateX(-50%);
}
.ad-banner-link::after{
  content:'AD';
  display:block;
  position:absolute;
  top: 1px;
  right: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 2px;
  color: #bcbcbc;
  font-size: 11px;
}
.ad-banner-link .ad-banner-img{
  max-width:100%;
  margin:0 auto;
}
@media (min-width: 992px) {
  .ad-banner.sp{
    display:none;
  }

  .link-btn > .sp-only{
    display:none;
  }
}
@media (max-width: 991px) {
  .ad-banner.pc{
    display:none;
  }
  .link-btn{
    width:100%;
  }
}

