@charset "UTF-8";
/* 下層ページ共通 ===========================*/

/* ページタイトル */
.page_head{
  background: url(../img/headttl_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.page_head_ttl{
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 150px;
}
@media screen and (max-width: 767px){
  .page_head_ttl{
    font-size: 25px;
    min-height: 100px;
  }
}

/* パンくずリスト */
.pankuzu{
  display: flex;
  font-size: 14px;
  gap: 10px 10px;
  margin: 10px 0 0;
}
.pankuzu li:not(:last-of-type){
  position: relative;
  padding: 0 20px 0 0;
}
.pankuzu li:not(:last-of-type)::after{
  position: absolute;
  content: '\03e';
  top: 0;
  right: 0;
}
.pankuzu li a{
  color: #222;
}
.pankuzu li a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 767px){
  .pankuzu{
    font-size: 12px;
    gap: 7px 7px;
    margin: 7px 0 0;
  }
  .pankuzu li:not(:last-of-type){
    padding: 0 14px 0 0;
  }
}
/* 見出し */
.page_ttl_dec{
  width: fit-content;
  margin: 0 auto;
  font-size: 27px;
  font-weight: bold;
  position: relative;
  line-height: 1.5;
  min-height: 70px;
  padding: 22px 60px;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.page_ttl_dec::after{
  position: absolute;
  content: '';
  background: url(../img/img-ichipen.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 127px;
  height: 70px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px){
  .page_ttl_dec{
    font-size: 23px;
    min-height: 55px;
    padding: 14px 5px 14px 42px;
    margin-bottom: 30px
  }
  .page_ttl_dec::after{
    width: 100px;
    height: 55px;
  }
}

.page_ttl_dec2{
  background: #2D4781;
  color: #FFF;
  font-weight: bold;
  padding: 7px 10px 7px 40px;
  position: relative;
  margin: 50px 0 30px;
  line-height: 1.5;
}
.page_ttl_dec2::after{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/icon-gavel.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top: 8px;
  left: 15px;
}
@media screen and (max-width: 767px){
  .page_ttl_dec2{
    padding: 10px 10px 10px 40px;
    margin: 30px 0 20px;
  }
}

.point_con{
  font-size: 13px;
  background: #F3F5F9;
  border: 1px solid #C4D1ED;
  padding: 17px 20px;
  margin: 30px 0 0;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 767px){
  .point_con{
    margin: 20px 0 0;
  }
}

.txt_bold{
  font-weight: bold;
}

/*===================================*/

/* ご相談の流れ ===========================*/
.soudan_flow{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.soudan_flow_heading{
  background: #AD0149;
  color: #FFF;
  font-weight: bold;
  line-height: 1.5;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 10px;
}
.soudan_flow_txt{
  width: calc(100% - 130px);
}
.soudan_flow_line{
  width: 100%;
  height: 1px;
  background: #9EB7E5;
  margin: 30px 0;
}
@media screen and (max-width: 767px){
  .soudan_flow{
    gap: 15px;
  }
  .soudan_flow_txt{
    width: 100%;
  }
  .soudan_flow_line{
    margin: 20px 0 25px;
  }
}
.soudan_flow .cta_item_btn_tel,
.soudan_flow .cta_item_btn_net{
  font-size: 22px;
  min-height: 70px;
}
.soudan_flow .cta_item_icon{
  width: 4vw;
  max-width: 40px;
}
.soudan_flow .cta_item_iconlink{
  margin: 0 0 0 1.5vw;
  width: 20px;
}
.soudan_flow .cta_item_txt{
  font-size: 14px;
}
@media screen and (max-width: 767px){
  .soudan_flow .cta_item_btn_tel,
  .soudan_flow .cta_item_btn_net{
    min-height: 65px;
  }
  .soudan_flow .cta_item_icon{
    width: 10vw;
    max-width: 30px;
  }
  .soudan_flow .cta_item_iconlink{
    width: 18px;
  }
}
/*===================================*/

/* よくある質問 ===========================*/
.faq_list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq_question{
  position: relative;
  cursor: pointer;
  padding: 20px 33px 20px 20px;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #4F70B7;
  border-radius: 10px;
  line-height: 1.5;
}
.faq_question::before{
  position: absolute;
  content: "+";
  display: table;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  color: #4F70B7;
  transition: .3s all;
}
.faq_question.active::before{
  transform: rotate(180deg);
  content: "−";
}
.faq_question_ttl{
  position: relative;
  padding: 0 0 0 35px;
}
.faq_question_ttl::before{
  position: absolute;
  content:"Q.";
  top: 0;
  left: 0;
  color: #4F70B7;
}
.faq_answer{
  padding: 20px;
}
.faq_answer_txt{
  position: relative;
  padding: 0 0 0 35px;
}
.faq_answer_txt::before{
  position: absolute;
  content:"A.";
  top: 7px;
  left: 0;
  color: #AD0149;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.answer-a{ /* 初期設定 */
  display: none;
}
@media screen and (max-width: 767px){
  .faq_list{
    gap: 20px;
  }
  .faq_question{
    padding: 15px 30px 15px 15px;
    font-size: 18px;
  }
  .faq_question::before{
    right: 15px;
  }
  .faq_question_ttl{
    padding: 0 0 0 30px;
  }
  .faq_answer{
    padding: 15px;
  }
  .faq_answer_txt{
    padding: 0 0 0 30px;
  }
  .faq_answer_txt::before{
    top: 5px;
    font-size: 18px;
  }
}
/*===================================*/

/* アクセス ===========================*/
.access_con{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.access_img,
.access_info{
  width: 50%;
}
.access_info{
  padding: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access_gmap{
  width: 100%;
}
@media screen and (max-width: 767px){
  .access_img,
  .access_info{
    width: 100%;
  }
  .access_info{
    padding: 0;
    justify-content: flex-start;
  }
  .access_gmap{
    height: 300px;
  }
}
/*===================================*/

/* コラム - お知らせ ===========================*/
.pagenation{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pagenation p{
  font-size: 20px;
  font-weight: bold;
  color: #2D4781;
  background: #E7EBF4;
  line-height: 1;
  border-radius: 5px;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenation p:hover{
  background: #9EB7E5;
}
.pagenation p.cooo{
  color: #FFF;
  background: #2D4781;
}
@media screen and (max-width: 767px){
  .pagenation{
    gap: 15px;
  }
  .pagenation p{
    font-size: 18px;
    width: 35px;
    height: 40px;
  }
}

.article_date{
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 767px){
  .article_date{
    font-size: 12px;
  }
}

.article_ttl{
  font-size: 27px;
  font-weight: bold;
  position: relative;
  line-height: 1.5;
  min-height: 70px;
  padding: 22px 60px;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.article_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/img-ichipen.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 127px;
  height: 70px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px){
  .article_ttl{
    font-size: 23px;
    min-height: 55px;
    padding: 14px 5px 14px 42px;
    margin-bottom: 30px
  }
  .article_ttl::after{
    width: 100px;
    height: 55px;
  }
}

.single_con h2{
  line-height: 1.5;
  font-size: 20px;
  color: #2D4781;
  font-weight: bold;
  padding: 0 15px 5px;
  border-bottom: 3px solid #9EB7E5;
  margin: 50px 0 30px;
}
.single_con h3{
  width: fit-content;
  line-height: 1.5;
  font-size: 18px;
  color: #2D4781;
  font-weight: bold;
  border: 2px solid #4F70B7;
  padding: 5px 20px;
  margin: 40px 0 20px;
}
.single_con h4{
  line-height: 1.5;
  font-size: 18px;
  color: #AD0149;
  font-weight: bold;
  margin: 35px 0 15px;
}
.single_con p{
  margin-bottom: 15px;
}
@media screen and (max-width: 767px){
  .single_con h2{
    font-size: 18px;
    padding: 0 10px 5px;
    margin: 30px 0 25px;
  }
  .single_con h3{
    font-size: 16px;
    padding: 5px 15px;
    margin: 30px 0 20px;
  }
  .single_con h4{
    font-size: 16px;
    margin: 25px 0 15px;
  }
}

.supervisor{
  border-radius: 10px;
  border: 1px solid #4F70B7;
  padding: 20px;
}
.supervisor_ttl{
  font-size: 18px;
  font-weight: bold;
  color: #2D4781;
  line-height: 1;
  padding: 0 5px 10px;
  border-bottom: 1px solid #4F70B7;
  margin-bottom: 20px;
}
.supervisor_info{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
.supervisor_img{
  background: #E7EBF4;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.supervisor_txt{
  width: calc(100% - 145px);
}
@media screen and (max-width: 767px){
  .supervisor{
    padding: 15px;
  }
  .supervisor_ttl{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .supervisor_info{
    align-items: flex-start;
    gap: 15px;
  }
  .supervisor_img{
    width: 90px;
    height: 90px;
    margin: 10px 0 0;
  }
  .supervisor_txt{
    width: calc(100% - 105px);
  }
}
@media screen and (max-width: 430px){
  .supervisor_info{
    justify-content: center;
  }
  .supervisor_txt{
    width: 100%;
  }
}
/*===================================*/

/* 各種相談 ===========================*/
.soudan_fees{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}
.soudan_fees_item{
  width: 49%;
  background: #E7EBF480;
  border: 1px solid #4F70B7;
  border-radius: 10px;
  padding: 20px 10px;
  font-weight: bold;
  display: grid;
  justify-content: center;
}
.soudan_fees_ttl{
  text-align: center;
  font-size: 18px;
  color: #2D4781;
  line-height: 1;
  margin-bottom: 15px;
}
.soudan_fees_txt{
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px){
  .soudan_fees_item{
    width: 100%;
  }
  .soudan_fees_ttl{
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/*===================================*/
