/* 
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Sawarabi Mincho', serif; 
*/


/* ボタン形を全面リンクにする */
.bl_globalNavi a, .el_btn a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
}

/* ---------------------------
elクラス
---------------------------*/
.el_header_logo{
  padding: 10px;
  width: 130px;
  max-height: 60px;
}
.el_ttlDeco{
  font-family: 'Sawarabi Mincho', serif;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  display: block;
}
.el_yohaku{
  height: calc(400px - 20vw);
  width: 100%;
}
.el_stripe{
  width: 100%;
  height: 100%;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 11px, rgba(230, 231, 244, 1) 11px, rgba(230, 231, 244, 1) 12px );
  z-index: -1;
}
.ly_inner{
  max-width: 900px;
  margin: 0 auto;
}
.bl_tag{
  display: flex;
  justify-content: start;
}
.el_tag{
  font-size: 9px;
  padding: 4px 18px;
  background-color: #F5F5F5;
  margin-right: 12px;
}
.el_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  letter-spacing: .2rem;
  position: relative;
  transition: all 0.4s ease-out;
  cursor: pointer;
  border: #12229B 1px solid;
  overflow: hidden;
}
.el_btn__s{
  padding: 1.4rem 3rem;
  font-size: 1.4rem;
  box-sizing: border-box;
}
.el_btn__l{
  max-width: 40rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 1.6rem;
}
.el_btn p{
  z-index: 2;
}
.el_btn__s:hover, .el_btn__l:hover{
  color: #12229B;
}
.el_btn__s::before, .el_btn__s::after,
.el_btn__l::before, .el_btn__l::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s;
  z-index: 1;
}
.el_btn__s::before, .el_btn__l::before{
  width: 0%;
  background: white;
}
.el_btn__s::after{
  background: linear-gradient(to right, #12229B, #273BD1);
  width: 100%;
}
.el_btn__l::after{
  background: linear-gradient(to right, #15238B, #182AB2);
  width: 100%;
}
.el_btn__s:hover::before, .el_btn__l:hover::before{
  width: 100%;
  transition-delay: .4s;
}
.el_btn__s:hover::after, .el_btn__l:hover::after{
  width: 0%;
}
.el_btn_contact{
  font-size: 1.4rem;
}

.bl_flexbox{
  display: flex;
  justify-content: space-between;
}
.bl_flexbox__wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bl_flexbox__rev{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.bl_flexbox__start{
  justify-content: start;
}
#banner{
  max-width: 1200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 80px auto 130px;
  gap: 60px;
}

.bl_banner_txt{
  color: black;
}

.bl_banner_recruit{
  margin: 50px auto 0;
  width: 200px;
  height: 40px;
}




@media screen and (max-width: 960px) {
  h2, h3, h4{
    text-align: center;
    margin-top: 10px;
  }
  .bl_flexbox, .bl_flexbox__rev{
    display: block;
  }
  .el_btn__s{
    width: 100%;
    margin: auto;
  }
  .el_header_logo{
    width: 95px;
    padding: 0;
    padding-top: 10px;
  }
  #banner{
    width: 90%;
    margin: 0px auto 0px;
    gap: 30px;
    padding: 20px 0;
  }
  .bl_banner figure{
    margin: 0 auto;
  }
  
  .bl_banner_recruit__top{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {

}


/* =========================
   #banner のロゴを横並びに
========================= */
#banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap; /* SPで縦並びにするためにwrapは維持 */
}

/* ここがキモ：各 .bl_banner の100%幅を打ち消す */
#banner > .bl_banner {
  flex: 0 0 auto;
  width: auto;               /* ← width:100% を上書き */
  margin: 0;
  display: flex;             /* 中の figure を中央寄せ */
  align-items: center;
  justify-content: center;
}

/* figure の 60% 指定を打ち消し、内容サイズに合わせる */
#banner > .bl_banner figure {
  width: auto;               /* ← 60% を上書き */
  margin: 0;
}

/* 画像の見た目を揃える（高さ基準にしたい場合）*/
#banner > .bl_banner img {
  height: 140px;             /* 好みで調整：100〜140pxくらい */
  width: auto;
  display: block;
}

/* --- SP（<=960px）は縦並びで大きめに --- */
@media (max-width: 960px) {
  #banner {
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
  }
  #banner > .bl_banner {
    width: 100%;
  }
  #banner > .bl_banner img {
    height: auto;            /* 高さ固定を解除 */
    max-width: 60%;          /* 画像幅を6割に */
  }
}

@media (max-width: 960px) {
  #banner {
    flex-direction: column;
    align-items: center;     /* ← これで中央揃え */
    justify-content: center; /* 念のため */
    gap: 30px;
  }

  #banner > .bl_banner {
    width: 100%;
    display: flex;
    justify-content: center; /* ← 子要素を中央に */
  }

  #banner > .bl_banner figure {
    margin: 0 auto;
    text-align: center;
  }

  #banner > .bl_banner img {
    height: auto;
    max-width: 60%; /* スマホで程よいサイズ */
  }
}


#banner > .bl_banner:nth-of-type(2) img {
  transform: scale(1.1); /* 1.1倍表示 */
  transform-origin: center;
}

/* ================================
   #banner（ロゴ2つ）の最終版スタイル
   ※ これを style.css の一番下に置いて他を上書き
================================ */

/* PC：横並び・中央寄せ */
#banner{
  max-width: 1200px;
  margin: 80px auto 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* SPで縦並びになるため保持 */
}

/* 子の .bl_banner が100%を占有しないように強制上書き */
#banner > .bl_banner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto !important;   /* ← これが肝。既存の width:100% を潰す */
  margin: 0;
}

/* figure 側の幅指定を無効化 */
#banner > .bl_banner figure{
  width: auto !important;   /* ← 既存の 60%/32% を潰す */
  margin: 0;
}

/* 画像は高さ基準で揃える（見た目を合わせやすい） */
#banner > .bl_banner img{
  display: block;
  height: 140px;            /* お好みで 130〜160px */
  width: auto;
  vertical-align: middle;
}

/* 右側だけ “ほんの少し” 大きく見せる（微調整） */
#banner > .bl_banner:nth-of-type(2) img{
  transform: scale(1.08);
  transform-origin: center;
}

/* SP：縦並び・中央寄せ・サイズ調整 */
@media (max-width: 960px){
  #banner{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    margin: 0 auto 0;       /* 既存と整合 */
    background-color: #fff;
    width: 100vw;
  }
  #banner > .bl_banner{
    width: 100% !important; /* 幅100%にして中央に */
    justify-content: center;
  }
  #banner > .bl_banner figure{
    margin: 0 auto;
    text-align: center;
  }
  #banner > .bl_banner img{
    height: auto;           /* 高さ固定を解除 */
    max-width: 60vw;        /* 画面に対して程よいサイズ */
  }
}

/* 右側ロゴのキャプションを画像の真下中央に */
#banner > .bl_banner:nth-of-type(2) figure{
  display: inline-flex;          /* 画像とキャプションを縦並び */
  flex-direction: column;
  align-items: center;           /* ← 画像の中心にキャプションを揃える */
}
#banner .bl_certno{
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}





/* ---------------------------
下層ページ各タイトル
---------------------------*/
.bl_sub_ttl{
  width: 77%;
  margin-bottom: 115px;
}
.bl_sub_ttl hr{
  color:  #707070;
  position: relative;
  right: 4rem;
}
.bl_sub_ttlTxt > h2, .bl_sub_ttlTxt > p{
  position: relative;
  left: 10rem;
}
.bl_sub_ttlTxt > p{
  margin-top: 25px;
}
.bl_sub_ttl h2{
  font-size: 4rem;
  font-family: 'Sawarabi Mincho', serif; 
  margin-bottom: 20px;
  color: black;
}
.bl_sub_subTtl{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  color: #7E84B5;
}
main:not(#top){
  padding-top: 150px; 
}
main:not(#top, #recruit, #service, #ly_form_thanks){
  padding-bottom: 150px;
}
.bl_service_sp_ttl{
  display: none;
}
@media screen and (max-width: 1200px) {
.bl_service_sp_ttl{
  display: block;
}
}
@media screen and (max-width: 960px) {
  main:not(#top, #ly_form_thenks){
    padding-top: 40px;
    background-color: #F5F5F5;
  }
  main:not(#top){
    padding-bottom: 0;
  }
  .bl_sub_ttl{
    background-color: white;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 50px;
    margin-bottom: 18px;
  }
  #ly_base .bl_sub_ttl{
    margin-bottom: 0;
  }
  .bl_sub_ttl hr {
    width: 70%;
    right: auto;
    left: auto;
  }
  .bl_sub_ttlTxt > h2, .bl_sub_ttlTxt > p {
    left: auto;
    text-align: center;
  }
  .bl_sub_ttlTxt > h2{
    font-size: 3rem;
  }
}
@media screen and (max-width: 560px) {
  .bl_sub_ttlTxt > p{
    width: 80%;
    margin: auto;
    margin-top: 25px;
  }
}

/* ---------------------------
TOP
---------------------------*/
#top{
  padding: 0;
  padding-bottom: 150px;
}
#top p{
  letter-spacing: .3rem;
}
@media screen and (max-width: 960px) {
  #top{
    padding-bottom: 0;
    border-bottom: 1px solid white;
    background: #F5F5F5;
  }
}
@media screen and (max-width: 560px) {
  
}

/* ---------------------------
ヘッダー
---------------------------*/
.ly_header{
  padding-left: 2rem;
}
.bl_header{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.bl_globalNavi{
  display: flex;
}
.bl_globalNavi > li{
  text-align: center;
  padding: 25px 0;
  width: 150px;
  background-color: white;
  border-right: 1px solid #12229B;
  color: #12229B;
  position: relative;
  font-size: 1.3rem;
  transition: all .4s ease-out;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_globalNavi > li:hover{
  color: white;
  background: #12229B;
}
.bl_globalNavi > .el_mail{
  width: 200px;
  border-right: none;
}
.el_mail > p{
  padding-left: 30px;
  position: relative;
}
.el_mail::before{
  content: url(assets/img/common/icon_mail__hover.png);
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-35%);
  transition: all .4s ease-out;
}
.el_mail:hover::before{
  content: url(assets/img/common/icon_mail.svg);
}
.bl_spHeader{
  display: none;
}

/* ---------------------------
ファーストビュースライド
---------------------------*/
.el_fvBack, .bl_fvSlide_wrapper, .el_fvBack_w{
  width: 75vw;
  height: 70vh;
  top: 95px;
  right: 0;
  position: absolute;
}
#ly_fv{
  width: 100%;
  padding-top: 82vh;
}
.el_fvBack_w{
  background-color: white;
}
.el_fvBack{
  background-color: #12229B;
  top: 110px;
  right: 20px;
  display: none;
}
.bl_fvSlide, .bl_fvSlide .slick-track, .bl_fvSlide > li,
.bl_fvSlide .slick-list{
  width: 100%;
  height: 100%;
}
.bl_fvSlide img{
  height: 100%;
  object-fit: cover;
}
/* 白い四角のテキスト */
.bl_labelTxt{
  padding: 30px 100px;
  position: absolute;
  top: 28vh;
  left: 0;
  background-color: white;
}
.bl_labelTxt > p{
  font-family: 'Noto Serif JP', serif;
  font-size: 2.3rem;
  line-height: 5.5rem;
}
.ly_fv_sp{
  display: none;
}
@media screen and (max-width: 960px) {
  #ly_fv{
    background-color: #F5F5F5;
    padding-top: 88vh;
  }
  .el_fvBack, .bl_fvSlide_wrapper, .el_fvBack_w{
    width: 98vw;
    top: 77px;
  }
  .el_fvBack{
    top: 97px;
  }
  .bl_labelTxt{
    top: auto;
    right: 0;
    bottom: 10vh;
    left: auto;
  }
  .bl_labelTxt p{
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-family: 'Sawarabi Mincho', serif; 
  }
  .el_stripe{
    display: none;
  }
}
@media screen and (max-width: 560px) {
  #ly_fv{
    padding-top: 118vw;
  }
  .ly_fv_pc{
    display: none;
  }
  .ly_fv_sp{
    display: block;
  }
  .bl_labelTxt{
    width: 92%;
    padding: 3rem;
    padding-right: 1rem;
    position: absolute;
    right: 0;
    bottom: -30vw;
  }
  .bl_labelTxt p{
    line-height: 8vw;
    font-size: 4.2vw;
  }
  .el_fvBack, .bl_fvSlide_wrapper, .el_fvBack_w{
    width: 96vw;
    height: 75vw;
  }
}

/* ---------------------------
X埋め込み
---------------------------*/
.ly_x{
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.ly_x__top{
  padding-bottom: 100px;
}
.ly_x_txt p{
  margin-top: 10px;
  font-size: 18px;
}
.ly_x_btn{
  padding: 10px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50px;
  background-color: #000;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}
.ly_x_btn:hover{
  opacity: 0.6;
}
@media screen and (max-width: 560px) {
  .ly_x__top{
    padding-bottom: 50px;
  }
  .ly_x_txt p{
    font-size: 15px;
  }
  .ly_x_btn{
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ---------------------------
TOPお知らせ
---------------------------*/
#ly_t_news{
  margin: auto;
  padding-right: 8rem;
  padding-left: 8rem;
  max-width: 880px;
  box-sizing: content-box;
}
#ly_t_news .bl_news_wrapper{
  margin-bottom: 55px;
}
#ly_t_news .bl_news_item{
  width: 100%;
  margin-right: 55px;
  padding-bottom: 15px;
}
.bl_news_item{
  border-bottom: 1px solid #707070;
}
#ly_t_news .bl_news_item > p:nth-child(1){
  font-family: 'Sawarabi Mincho', serif; 
  font-size: 1rem;
}
#ly_t_news .bl_t_news_ttl{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  margin-top: 11px;
  margin-bottom: 15px;
}
#ly_t_news .el_btn{
  width: 17rem;
}
@media screen and (max-width: 960px) {
  #ly_t_news{
    padding: 45px 20px 40px;
    background-color: white;
  }
  #ly_t_news h4{
    margin-bottom: 5px;
  }
  #ly_t_news .bl_news_item{
    padding-top: 25px;
    padding-bottom: 20px;
    margin-right: auto;
  }
  #ly_t_news .el_btn{
    margin-right: auto;
    width: 26rem;
  }
  #ly_t_news .el_btn p{
    font-size: 1.8rem;
  } 
}
@media screen and (max-width: 560px) {
  
}

/* ---------------------------
理念
---------------------------*/
#ly_rinen{
  margin-top: 85px;
  position: relative;
  padding-bottom: 300px;
  overflow: hidden;
}
#ly_rinen > .bl_flexbox{
  margin-bottom: 132px;
}
.bl_rinenImg{
  width: 50%;
  height: 500px;
  min-width: 500px;
  overflow: hidden;
}
.bl_rinenImg img{
  object-fit: cover;
}
.bl_rinen_ttl{
  margin-bottom: 55px;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: center;
}
.bl_rinen_cont{
  padding-top: 70px;
  position: relative;
  flex-grow: 1;
}
.bl_rinen_txtWrapper{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  margin: auto;
}
.bl_rinen_txtCont{
  margin: auto;
  position: relative;
  top: -26vw;
  left: 12vw;
  width: 580px;
}
.bl_rinen_txt{
  background-color: white;
  padding: 80px;
  padding-right: 50px;
  position: relative;
}
.bl_rinen_txt::before{
  content: "";
  width: 182px;
  height: 124px;
  border-right: 1px solid #122795;
  border-bottom: 1px solid #122795;
  position: absolute;
  right: 0;
  bottom: 0;
}
.bl_rinen_txt > p {
  font-size: 1.2rem;
  letter-spacing: 0 !important;
}
.bl_rinen_txt > h5{
  font-family: 'Sawarabi Mincho', serif;
  margin-bottom: 50px;
}
.bl_rinen_txt .el_stripe{
  position: absolute;
  top: 70px;
  right: -110px;
  z-index: -1;
}
.bl_rinen_rev .bl_rinen_txtCont{
  left: -12vw;
}
.bl_rinen_rev .el_stripe{
  right: 110px;
}
.bl_rinen_rev .bl_rinen_txt::before{
  border-right: none;
  border-left: 1px solid #122795;
  left: 0;
}
#ly_sp_rinen{
  display: none;
}
@media screen and (max-width: 1000px) {
.bl_rinen_txt .el_stripe{
  right: auto;
}
.bl_rinen_rev .el_stripe{
  right: 110px;
}
}
@media screen and (max-width: 960px) {
  #ly_rinen, .bl_rinen_txt::before{
    display: none;
  }
  #ly_sp_rinen{
    padding-top: 70px;
    padding-bottom: 90px;
    display: block;
    background-color: #F5F5F5;
  }
  .bl_rinen_ttl{
    border: none;
  }
  .bl_rinen_txt > h5{
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0.5rem;
  }
  .bl_sp_rinen{
    width: 100%;
    position: relative;
  }
  .bl_sp_rinen_cont{
    width: 95%;
    padding-top: 50px;
    background-color: white;
    margin-bottom: 50px;
  }
  .bl_sp_rinen_cont__rev{
    margin-left: auto;
  }
  .bl_rinen_txtCont{
    width: initial;
    top: auto;
    left: auto;
  }
  .bl_rinen_txt{
    width: 100%;
    padding: 40px;
    padding-bottom: 60px;
    background: none;
  }
  .bl_rinen_txt > p{
    font-size: 1.4rem;
    max-width: initial;
  }
  .bl_sp_rinen_cont__rev figure{
    position: relative;
    left: 20%;
  }
  .bl_sp_rinen_cont > figure{
    width: 100%;
    max-width: 600px;
  }
  .bl_sp_rinen_cont__rev .bl_rinen_txt{
    position: relative;
    left: calc(20% - 45px);
  }
}
@media screen and (max-width: 560px) {
  .bl_rinen_txt{
    padding-right: 0;
    width: 85%;
  }
}

/* ---------------------------
ビジョン
---------------------------*/
#ly_vision{
  padding: 0 95px;
  margin-bottom: 150px;
}
.bl_vision{
  width: 100%;
  padding: 160px 180px;
  background: center / cover no-repeat  url(assets/img/top/vision.png);
}
.bl_vision_cont{
  padding: 50px 30px 80px;
  text-align: center;
  background-color: white;
}
@media screen and (max-width: 960px) {
  #ly_vision{
    padding: 0;
    margin-bottom: 0;
  }
  .bl_vision{
    padding: 140px 40px;
  }
}
@media screen and (max-width: 560px) {
  .bl_vision{
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ---------------------------
ミッション
---------------------------*/
#ly_mission{
  margin-bottom: 120px;
}
.bl_mission{
  width: 80%;
  margin: auto;
}
#ly_mission .bl_flexbox{
  justify-content: space-evenly;
  align-items: center;
}
.bl_mission_txt{
  width: 48%;
  margin-right: 10rem;
  text-align: center;
}
.bl_mission_img{
  width: 45%;
  position: relative;
}
.bl_mission_img .el_stripe{ 
  position: absolute;
  right: 63px;
  top: 40px;
  z-index: -1;
}
.bl_mission_sp_back{
  display: none;
}
#ly_mission h2, #ly_vision h2{
  margin: auto;
  margin-bottom: 55px;
  padding-bottom: 20px;
  display: block;
  width: 80%;
  max-width: 700px;
  font-size: 2rem;
  border-bottom: 1px solid #12229B;
}
#ly_mission p, #ly_vision p{
  font-family: 'Sawarabi Mincho', serif;
  font-size: 2.6rem;
  line-height: 4rem;
  letter-spacing: .2rem;
}
@media screen and (max-width: 960px) {
  #ly_mission{
    background-color: #F5F5F5;
    margin-bottom: 0;
    padding-top: 90px;
  }
  #ly_mission p{
    margin-bottom: 50px;
  }
  .bl_mission{
    position: relative;
    width: 95%;
    padding: 45px 14px 0;
  }
  .bl_mission_sp_back{
    width: 100%;
    height: 92%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: white;
  }
  .bl_mission_txt{
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .bl_mission_img{
    width: 90%;
    margin: auto;
  }
  .bl_mission_txt h2{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  
}

/* ---------------------------
ミッション　ステークホルダー
---------------------------*/
.bl_mission_promise{
  max-width: 1300px;
  padding: 100px 0 150px;
}
.bl_mission_promise h4{
  margin-bottom: 20px;
  font-size: 30px;
  color: #12229B;
  text-align: center;
}
.bl_mission_promise_box{
  padding: 30px;
  border: 1px solid #12229B;
  display: flex;
  justify-content: center;
  background-color: white;
}
.bl_mission_promise_box ul{
  margin:  0 auto;
  display: inline-block;
}
.bl_mission_promise_box li{
  font-family: "Sawarabi Mincho";
  font-size: 20px;
  color: #12229B;
  line-height: 2.5;
}
.bl_mission_promise_box span{
  margin-right: 20px;
  font-family: "Sawarabi Mincho";
  font-size: 25px;
  color: #12229B;
}
@media screen and (max-width: 960px) {
  .bl_mission_promise{
    padding: 50px 0;
  }
}
@media screen and (max-width: 560px) {
  .bl_mission_promise_box{
    padding: 30px 15px;
  }
  .bl_mission_promise h4{
    font-size: 25px;
  }
  .bl_mission_promise_box li{
    font-size: 18px;
  }
  .bl_mission_promise_box span{
    font-size: 20px;
  }
}

/* ---------------------------
クレド
---------------------------*/
#ly_credo{
  padding-bottom: 170px;
}
.bl_credo{
  position: relative;
}
.bl_credo_slide{
  position: relative;
}
.bl_credo_ttl{
  padding: .8rem 3.5rem 3rem 3rem;
  position: absolute;
  top: -7rem;
  left: 95px;
  z-index: 1;
  background-color: white;
}
.bl_credo_ttl > h2{
  position: relative;
  top: -1rem;
}
.bl_credo .el_ttlDeco{
  transform: rotate(90deg);
  color: #12229B;
  position: absolute;
  top: 2.5rem;
  right: 0;
}
.bl_credo .el_stripe{ 
  height: 260px;
  width: 52%;
  position: absolute;
  top: calc(50% + 17.5vw);
  right: 0;
}
@media screen and (max-width: 960px) {
  #ly_credo{
    padding-top: 9rem;
    padding-bottom: 80PX;
    background-color: #F5F5F5;
    position: relative;
    z-index: 1;
  }
  .bl_credo{
    margin-top: 5rem;
  }
  .bl_credo_slide{
    height: 582px;
  }
  .bl_credo_main{
    height: 100%;
  }
  #ly_credo .slick-slide img{
    width: initial;
  }
  .bl_credo_sub{
    background-color: white;
  }
  .bl_credo_ttl{
    padding-right: 21px;
    padding-left: 23px;
    left: 10%;
  }
  .bl_credo .el_ttlDeco{
    right: -1rem;
  }
}
@media screen and (max-width: 560px) {

}

/* ---------------------------
クレドスライド
---------------------------*/
.bl_credo_main{
  width: 86%;
}
.bl_credo_main{
  li{
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    position: relative;
  }
  img{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: cover;
  }
}
.bl_credo_sub{
  width: 44%;
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.bl_credo .slick-vertical .slick-slide{
  cursor: pointer;
  height: 7vw !important;
  border-bottom: 1px solid #707070 !important;
  background-color: white;
  transition: .3s;
}
.bl_credo_sub .slick-current{
  width: 100% !important;
}
.bl_credo_sub .slick-current p:nth-child(2){
  left: 180px;
}
.bl_credoSlide_pc .bl_credo_sub .slick-track{
  transform: unset !important;
}
.bl_credo_sub li{
  width: 69% !important;
  min-height: 80px;
  padding: 13px 12px 36px;
  border-bottom: 1px solid #707070;
}
.bl_credo_sub li p:nth-child(1){
  font-size: 2.7rem;
  font-family: 'Noto Serif JP', serif;
  color: #12229B;
}
.bl_credo_sub li p:nth-child(2){
  font-size: 17px;
  font-family: 'Sawarabi Mincho', serif; 
  position: relative;
  left: 80px;
  top: 50%;
  transform: translateY(-80%);
  transition: .3s;
}
.bl_credoSlide_sp{
  display: none;
}
/* スライド矢印を非表示に */
.bl_credo_main > button{
  display: none !important;
}

@media screen and (max-width: 960px) {
  .bl_credoSlide_pc{
    display: none;
  }
  .bl_credoSlide_sp{
    display: block; 
  }
  .bl_credo_main{
    width: 100%;
    z-index: -10;
  }
  #ly_credo .slick-slide{
    /* height: auto !important; */
    height: 100%;
  }
  #ly_credo .slick-list{
    height: 100%;
  }
  #ly_credo .slick-slider .slick-track{
    height: 100%;
  }
  .bl_sp_slide_subCont{
    position: relative;
    top: auto;
    bottom: 21rem;
  }
  .bl_sp_credo_sub{
    width: 90%;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .bl_sp_credo_sub li{
    background-color: white;
    height: 95px;
    position: relative;
    text-align: center;
    border: none;
  }
  .bl_sp_credo_sub p{
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    line-height: 95px;
  }
  .bl_sp_credo_sub_head{
    padding: 17px 23px 29px 12px;
    width: 83px;
    height: 83px;
    background-color: #12229B;
  }
  .bl_sp_credo_sub_head p{
    font-family: 'Noto Serif JP', serif;
  }
  .bl_sp_credo_sub_head span, .bl_sp_credo_sub_head p,
  .bl_credo_sub li p:nth-child(1){
    color: white;
  }
  .bl_sp_credo_sub_head p{
    font-size: 3.5rem;
  }
  .bl_sp_credo_sub_head span{
    font-size: 1.5rem;
    position: relative;
    left: 3rem;
  }
  .bl_credo_sub .slick-track{
    display: flex;
  }
  .bl_sp_credo_sub .slick-current p:nth-child(2){
    left: auto;
    top: 10rem;
  }
  /* スライド次へボタン */
  .bl_sp_credo_sub .slick-next:before{
    content: url(assets/img/common/icon_next.svg);
    position: relative;
    left: -7rem;
  }
}
@media screen and (max-width: 560px) {
  #ly_credo .slick-slide img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* left: 50%;
    transform: translateX(-50%); */
  }
  .el_credo_fontS{
    font-size: 1.6rem !important;
    position: relative;
    right: 2rem;
  }
}

/* ---------------------------
フッター
---------------------------*/
#ly_footer{
  padding-top: 130px;
  background-color: #F0F3F8;
  text-align: center;
}
.bl_footerContact{
  max-width: 800px;
  padding-top: 55px;
  padding-bottom: 70px;
  margin: auto;
  margin-bottom: 80px;
  background-color: white;
}
.bl_footerContact h3{
  font-size: 27px;
  color: black;
  margin-bottom: 35px;
  letter-spacing: 0;
}
.bl_footerContact .bl_footer_line h3{
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.bl_footer .el_btn{
  margin: auto;
}
.bl_footer_cont{
  max-width: 810px;
  margin: auto;
  margin-bottom: 80px;
  flex-direction: row-reverse;
}
.bl_footer_line{
  margin-top: 20px;
}
/* SNSリンク */
.bl_sns{
  line-height: 4rem;
  font-size: 1.4rem;
  font-family: 'Noto Serif JP', serif;
  margin-top: auto;
  margin-bottom: auto;
}
.bl_sns li{
  padding-left: 4rem;
  position: relative;
}
.bl_sns li::before{
  content: "";
  width: 25px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
/* サイトマップ */
.bl_siteMap{
  text-align: left;  
}
.bl_siteMap_cont{
  width: 70%;
}
.bl_siteMap th, .bl_siteMap td{
  width: 100%;
  display: block;
  margin-bottom: 25px;
}
.bl_siteMap th{
  font-size: 1.4rem;
  font-family: 'Sawarabi Mincho', serif; 
  color: #3A406E;
}
.bl_siteMap td{
  font-size: 1.2rem;
}
/* コピーライト */
.bl_copyright{
  padding: 28px;
  background-color: #3A406E;
  color: white;
}
@media screen and (max-width: 960px) {
  #ly_footer{
    padding-top: 50px;
  }
  .bl_footerContact{
    width: 95%;
    margin-bottom: 60px;
  }
  .bl_footer_cont{
    padding: 4rem;
    padding-top: 0;
    flex-direction: row;
  }
  .bl_siteMap_cont{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .bl_siteMap{
    width: 30%;
    margin-right: 2rem;
    margin-bottom: 35px;
  }
  .bl_siteMap th{
    font-size: 2rem;
  }
  .bl_siteMap td{
    font-size: 1.6rem;
  }
  .bl_sns{
    display: flex;
    flex-wrap: wrap;
  }
  .bl_sns li{
    font-size: 2rem;
    margin-right: 4rem;
  }
  .bl_footer .el_btn{
    max-width: 40rem;
    width: 74%;
  }
}
@media screen and (max-width: 560px) {
  .bl_footer_cont{
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .bl_siteMap{
    width: 35%;
    margin-right: 0;
  }
  .bl_siteMap_company{
    width: 55%;
  }
}

/* ページネーション */
.el_pagenation{
  text-align: center;
}
.el_pagenation a{
  color: black;
  font-size: 1.6rem;
}