@charset "utf-8";


@media not screen and (max-width:767px){
  a.noneClick{
    cursor: default;
  }
  a.noneClick .text{
    cursor: text;
  }
}

/* imgMvArea heading */
.imgMvArea {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(/common/images/dummy/mv.png);
}
.imgMvArea .mvArea_inner {
  width: 500px;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  height: 270px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.imgMvArea .mv_heading {
  margin-bottom: 8px;
  font-size: 3.4rem;
  font-weight: bold;
}
@media not screen and (max-width:767px){
  .imgMvArea {
    min-height: 410px;
    background-size: auto 100%;
  }
  .imgMvArea .section-inner {
    position: relative;
    margin: auto;
  }
  .imgMvArea .mvArea_inner {
    position: absolute;
    top: calc(50% + 35px);
  }
}
@media screen and (max-width:767px){
  .imgMvArea {
    background-image: url(/common/images/dummy/mv_sp.png);
    padding: 56% 0 0;
    background-size: 100%;
    background-position: center top;
  }
  .imgMvArea .mvArea_inner {
    display: block;
    width: 100%;
    padding: 24px 0 0;
    border-radius: 0;
    height: auto;
  }
  .imgMvArea .mv_heading {
    font-size: 2.8rem;
    line-height: 28px;
    letter-spacing: 0.04rem;
  }
}

/* heading */
.cate_heading01 {
  position: relative;
  max-width: 100%;
  font-size: 34px;
  font-weight: bold;
  line-height: 48px;
  border-left: 8px solid #CCCCCC;
  padding-left: 25px;
}
.cate_heading01:before{
  content: '';
  position: absolute;
  height: 15px;
  width: 8px;
  background: #00C86B;
  left: -8px;
  top: 0;
}
@media screen and (max-width:767px) {
  .cate_heading01 {
    font-size: 28px;
    line-height: 39px;
    padding-left: 10px;
  }
  .cate_heading01:before{
    height: 22px;
  }
}

.cate_heading02 {
  max-width: 100%;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 4px solid #00C86B;
  text-align: center;
  line-height: 39px;
}
@media screen and (max-width:767px){
  .cate_heading02 {
    font-size: 2.4rem;
    line-height: 33px;
  }
}

.cate_heading03 {
  max-width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 33px;
}
.cate_heading03_wrap {
  width: 100%;
  padding: 32px 16px;
  background: #EDFFE8;
  border-radius: 8px;
}
@media screen and (max-width:767px) {
  .cate_heading03 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 16px;
  }
}

.cate_heading04 {
  max-width: 100%;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 3px solid #CCC;
  line-height: 27px;
}
.cate_heading04::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: #00C86B;
  bottom: -3px;
  left: 0;
}
@media screen and (max-width:767px) {
  .cate_heading04 {
    font-size: 18px;
    line-height: 24px;
  }
  .cate_heading04::before {
    width: 12%;
  }
}

.cate_heading05 {
  max-width: 100%;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 11px;
  line-height: 24px;
}
@media screen and (max-width:767px) {
  .cate_heading05 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}

/* img_box */
.img_box {
  display: flex;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 12px;
  box-shadow: 0px 4px 0px rgba(204, 204, 204, 1);
}
.img_box .img_area{
  width: 50%;
}
.img_box .img_area img{
  width: 100%;
}
.img_box .text_area {
  width: 50%;
  line-height: 24px;
}
.img_box .text_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 34%;
  padding: 12px 16px;
}
.img_box .text_block .title {
  font-weight: bold;
  margin-bottom: 4px;
}
.img_box .text_block .text {
  font-size: 1.6rem;
}
.img_box .link_btn {
  height: 22%;
}
.img_box .link_btn a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 40px 14px 16px;
  height: 100%;
  border-top: 1px solid #CCC;
  font-size: 1.6rem;
  font-weight: 500;
}
.img_box .link_btn a:last-child {
  border-radius: 0 0 8px 0;
}
.img_box .link_btn a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #00C86B;
  border-right: 2px solid #00C86B;
  transform: translateX(-25%) rotate(45deg);
}
@media not screen and (max-width:767px){
  .img_box .link_btn a:hover{
    box-shadow:none;
    position:relative;
    top:4px;
  }
}
@media screen and (max-width:767px){
  .img_box {
    flex-direction: column;
  }
  .img_box .img_area,
  .img_box .text_area {
    width: 100%;
  }
  .img_box .link_btn a:last-child {
    border-radius: 0 0 12px 12px;
  }
}

/* panelWrap */
.panelWrap .img_panel {
  background: #fff;
  height: 100%;
  border: 1px solid #CCC;
  border-radius: 12px;
  box-shadow: 0px 4px 0px rgba(204, 204, 204, 1);
  overflow: hidden;
}
.panelWrap .img_panel img{
  width: 100%;
}
.panelWrap .img_panel .text_block {
  padding: 16px 20px;
}
.panelWrap.layout-col4 .img_panel .text_block {
  padding: 16px;
}
.panelWrap .img_panel .text_block .title{
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
}
.panelWrap .img_panel .text_block .title._blank span {
  padding-right: 20px;
  background: url(/common/images/icon/icon_blank.svg) right center no-repeat;
}
.panelWrap .img_panel .text_block .text{
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
}
@media not screen and (max-width:767px){
  .panelWrap a:not(.noneClick) .img_panel:hover{
    box-shadow:none;
    position:relative;
    top:4px;
  }
}

/* panelWrap */
.panelWrap .text_panel{
  background: #fff;
  height: 100%;
  border: 1px solid #CCC;
  border-radius: 12px;
  box-shadow: 0px 4px 0px rgba(204, 204, 204, 1);
  overflow: hidden;
}
.panelWrap .text_panel .title{
  background: #EDFFE8;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  padding: 15px;
  min-height: 85px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-flow: column;
}
.panelWrap .text_panel .text{
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
}
.panelWrap .text_panel.icon_pdf .text{
  position: relative;
  padding: 15px 40px 15px 15px;
}
.panelWrap .text_panel.icon_pdf .text::after {
  position: absolute;
  content: '';
  width: 19px;
  height: 22px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/common/images/icon/icon_blank.svg) no-repeat;
}
@media not screen and (max-width:767px){
  .panelWrap .text_panel:hover{
    box-shadow:none;
    position:relative;
    top:4px;
  }
}

/* labelBox */
.labelBox{
  margin-bottom: 8px;
}
.labelBox .label {
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid;
  border-radius: 2px;
  font-size: 12px;
  font-weight: bold;
  background: #fff;
  margin-right: 5px;
}
.labelBox .icon_webok {
  color: #fff;
  background: #038535;
  border-color:#038535;
}

/* contact */
#contact .section-inner{
  padding: 80px 0;
  max-width: 1025px;
  margin: 0 auto;
}
#contact .layout-col1,
#contact .layout-col2 {
  background: #fff;
  padding: 40px 32px;
  border: 1px solid #CCC;
  border-radius: 8px;
  text-align: center;
}
#contact .item {
  padding-left: 24px;
  border-left: 1px solid #CCC;
  text-align: center;
}
#contact .item:first-child {
  padding-left: 0;
  border-left: none;
}
#contact .item .title{
  font-size: 24px;
  font-weight: bold;
}
#contact .item .tel {
  margin-top: 24px;
}
#contact .item .tel a{
  padding-left: 35px;
  background: url(/common/images/icon/icon_tel_bkline.svg) left bottom no-repeat;
  color: #038535;
  font-size: 28px;
  font-weight: bold;
}
#contact .item .date{
  margin-top: 16px;
  font-size: 16px;
}
#contact .item .notes_text {
  margin-top: 16px;
  text-align: left;
}
#contact .item .normal_btn {
  margin-top: 24px;
}
#contact .item .normal_btn a{
  padding: 8px 30px;
  max-width: 325px;
  background-position: right 12px center;
}
#contact .item.tempo{
  width: 100%;
  border-left: none;
  border-top: 1px solid #CCC;
  padding-top: 32px;
  margin-top: 32px;
}
@media not screen and (max-width:767px){
  #contact .item .tel a{
      pointer-events: none;
  }
}
@media screen and (max-width:767px){
  #contact .section-inner{
    padding: 60px 3.3%;
  }
  #contact .layout-col2 {
    padding: 32px 15px;
  }
  #contact .layout-col2 .item {
    padding: 32px 0 32px;
    border-top: 1px solid #CCC;;
    border-left: none;
    text-align: center;
  }
  #contact .layout-col2 .item:nth-child(-n+2) {
    margin-top: 0;
  }
  #contact .layout-col2 .item:first-child {
    padding-top: 0;
    border-top: none;
  }
  #contact .layout-col2 .item:last-child {
    padding-bottom: 0;
  }
  #contact .item .title{
    font-size: 20px;
  }
  #contact .item .tel a{
    text-decoration: underline;
  }
  #contact .item .tel,
  #contact .item .normal_btn {
    margin-top: 16px;
  }
  #contact .item .notes_text {
    padding-left: 1em;
  }
  #contact .item .normal_btn a{
    max-width: 295px;
  }
  #contact .item.tempo{
    margin-top: 0px;
  }
}

/* textbox */
.textbox_red .title {
  padding: 15px 0;
  background: #D80C18;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 27px;
}
.textbox_red .title .icon {
  position: relative;
  padding-left: 48px;
}
.textbox_red .title .icon::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  background-image:url(/common/images/icon/icon_bestinterestrate.svg);
}
.textbox_red .text_block {
  padding: 16px 20px;
  background: #FFF7F7;
  border-radius: 0 0 8px 8px;
}
.textbox_red .text {
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}
.textbox_red .text .text_b {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
}
@media screen and (max-width:767px){
  .textbox_red .title {
    font-size: 18px;
  }
  .textbox_red .text .text_b {
    font-size: 16px;
  }
}


/* card */
.normal_card {
  padding: 24px;
  background: #fff;
  border: 1px solid #DBEBD6;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
.normal_card .text{
  margin-top: 8px;
}
.normal_card .text:first-child{
  margin-top: 0;
}
.normal_card .text .line {
  background: linear-gradient(transparent 60%, #ECFCDF 30%);
}