@charset "UTF-8";
/*
----------------------------------------
| 
| base & helper
|
----------------------------------------
*/
html {
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic';
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

input {
  display: block;
  background-color: #fff;
  color: #000;
}

a:hover,
button:hover {
  opacity: 0.8;
}

body.js_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: lightgray;
}

.bl_hmbgBtn {
  cursor: pointer;
  width: 30px;
  height: 24px;
  z-index: 5;
  position: relative;
  /*
  * アクティブ中
  */
}

.bl_hmbgBtn .bl_hmbgBtn_line {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 10px;
}

.bl_hmbgBtn .bl_hmbgBtn_line.bl_hmbgBtn_line__top {
  top: 0;
}

.bl_hmbgBtn .bl_hmbgBtn_line.bl_hmbgBtn_line__middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_hmbgBtn .bl_hmbgBtn_line.bl_hmbgBtn_line__bottom {
  bottom: 0;
}

.bl_hmbgBtn.js_open > .bl_hmbgBtn_line__top {
  top: calc(50% - 2px / 2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bl_hmbgBtn.js_open > .bl_hmbgBtn_line__middle {
  opacity: 0;
}

.bl_hmbgBtn.js_open > .bl_hmbgBtn_line__bottom {
  width: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: calc(50% - 2px / 2);
}

/*
* ハンバガーメニュー
*/
.bl_hmbgMenu {
  position: fixed;
  background-color: #222222;
  background: linear-gradient(90deg, #000 calc(100% - 75px), #000, #eeeeee 75px);
  width: 100vw;
  height: 100vh;
  z-index: 3;
  right: 0;
  top: 0;
  overflow-y: auto;
  padding-bottom: 30px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  right: -150%;
}

.bl_hmbgMenu.js_open {
  right: 0;
}

.bl_hmbgMenu .bl_hmbgMenu_list {
  width: calc(100% - 75px);
  padding: 80px 34px 30px;
}

.bl_hmbgMenu .bl_hmbgMenu_list .bl_hmbgMenu_item {
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.bl_hmbgMenu .bl_hmbgMenu_list .bl_hmbgMenu_item a {
  display: block;
  line-height: 2;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom {
  width: calc(100% - 75px);
  padding-left: 34px;
  padding-right: 34px;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_bottom_inner {
  border-top: 1px solid #fff;
  padding-top: 30px;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_sns {
  padding-top: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #fff;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn {
  display: block;
  border: 1px solid #fff;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2px;
  position: relative;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  overflow: hidden;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn > span {
  display: block;
  width: 100%;
  text-align: center;
  z-index: 3;
  position: relative;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #fff;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn:after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background-color: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn:hover {
  opacity: 1;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn:hover span {
  color: #000;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn .bl_hmbgMenu_telBtn_telNum {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_telBtn .bl_hmbgMenu_telBtn_reception {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
}

.bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_contactBtn {
  font-size: 10px;
  width: 100%;
  max-width: 100%;
}

.bl_hmbgMenu .bl_hmbgMenu_right_txt_img {
  position: absolute;
  width: 20px;
  right: 29px;
  bottom: 30px;
}

/*
* mixins
*/
/*
* helper
*/

.hp_ff_Europa {
  font-family: 'Poppins', 'Europa';
  font-weight: bold;
  font-family: 'futura-pt', 'Poppins', 'Europa', sans-serif;
  font-weight: 500;
}

.hp_clr_fff {
  color: #fff;
}

.hp_clr_theme {
  color: #c39e45;
}

.hp_lh_1 {
  line-height: 1;
}

.hp_ta_c {
  text-align: center;
}

.hp_ta_r {
  text-align: right;
}

.hp_fw_b {
  font-weight: bold;
}

.hp_dis_f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hp_jus_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hp_jus_sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.hp_jus_c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hp_ais_c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hp_flex_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hp_posA_c {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hp_d_ib {
  display: inline-block;
}

.hp_d_b {
  display: block;
}

.hp_hoverScale_img_wrapper .hp_hoverScale_img {
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.hp_hoverScale_img_wrapper:hover .hp_hoverScale_img {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.1) translateY(-50%);
          transform: scale(1.1) translateY(-50%);
}

.hp_scrollUp {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0 !important;
}

.hp_scrollUp.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1 !important;
}

/*
----------------------------------------
| 
| layouts
|
----------------------------------------
*/
.ly_header {
  position: sticky;
  top: 0;
  z-index: 99;
}

/*
----------------------------------------
|
| element
|
|----------------------------------------
*/
.el_lineBtn {
  width: 300px;
  max-width: 100%;
  height: 70px;
  color: #000;
  border: 1px solid;
  position: relative;
  font-size: 18px;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.el_lineBtn span {
  z-index: 3;
  position: relative;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #000;
}

.el_lineBtn:before {
  content: '';
  height: 1px;
  width: 50px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.el_lineBtn:after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background-color: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.el_lineBtn:hover {
  opacity: 1;
}

.el_lineBtn:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.el_lineBtn:hover span {
  color: #fff;
}

.el_lineBtn.el_lineBtn__white {
  color: #fff;
}

.el_lineBtn.el_lineBtn__white span {
  color: #fff;
}

.el_lineBtn.el_lineBtn__white::before, .el_lineBtn.el_lineBtn__white::after {
  background-color: #fff;
}

.el_lineBtn.el_lineBtn__white:hover span {
  color: #000;
}

.el_lineBtn.el_lineBtn__rev {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.el_lineBtn.el_lineBtn__rev span {
  color: #fff;
}

.el_lineBtn.el_lineBtn__rev::before {
  background-color: #fff;
}

.el_lineBtn.el_lineBtn__rev::after {
  background-color: #fff;
}

.el_lineBtn.el_lineBtn__rev:hover span {
  color: #000;
}

.el_lineLink {
  color: #000;
  padding-left: 3.75em;
  font-weight: 600;
  position: relative;
}

/* .el_lineLink:hover {
  color: #c39e45;
  transition: none;
} */


.el_lineLink::before {
  content: '';
  display: block;
  position: absolute;
  width: 3em;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 0;
}
/* .el_lineLink:hover::before {
  background-color: #c39e45;
  transition: none;
} */

.el_lineLink.el_lineLink__white {
  color: #fff;
}

.el_lineLink.el_lineLink__white::before {
  background-color: #fff;
}

/*
----------------------------------------
|
| block
|
|----------------------------------------
*/
.bl_table th {
  border-left: 0;
  padding: 15px;
  width: 27%;
  background: #f8fdff;
  border: 1px solid #e7e7e7;
  font-weight: normal;
}

.bl_table td {
  border-right: 0;
  padding: 15px;
  width: 73%;
  border: 1px solid #e7e7e7;
  font-weight: normal;
  white-space: normal;
}

.bl_document h2 {
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.bl_document h3 {
  font-size: 17px;
  margin: 1.5rem 0 0.5rem;
  font-weight: bold;
}

.bl_sns_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.bl_sns {
  display: block;
  width: 23px;
  height: 23px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bl_sns.bl_sns__instagram {
  background-image: url("../images/sns_white_instagram.png");
}

.bl_sns.bl_sns__twitter {
  background-image: url("../images/sns_white_twitter.png");
}

.bl_sns.bl_sns__facebook {
  background-image: url("../images/sns_white_facebook.png");
}

.bl_sns.bl_sns__line {
  background-image: url("../images/sns_white_line.png");
}

/*
* 
*/
.bl_header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.bl_header_left {
  width: 51vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 80px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #000;
}

.bl_header_logo,
.bl_header_logo_img {
  height: 32px;
}

.bl_header_logo_img.none {
  display: none;
}

.bl_header_right {
  padding-right: 40px;
  padding-left: 40px;
}

.bl_header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.bl_header_nav_list a {
  font-weight: 400;
  font-size: 15px;
  white-space: nowrap;
  letter-spacing: 0.14em;
}

.bl_header_nav_list a:hover {
  color: #c39e45;
}

.bl_header_nav_list.min a {
  font-size: 12px;
}

.bl_header.bl_header__white .bl_header_left {
  background-color: #fff;
}

.bl_header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.bl_header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.bl_header_hmbgBtn {
  width: 75px;
  height: 75px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.bl_footContactSec {
  padding-top: 120px;
  padding-bottom: 120px;
}

.bl_footContactSec_desc {
  text-align: center;
  font-weight: 300;
  line-height: 2.625;
  padding-bottom: 58px;
}

.bl_footContactSec_btn_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_footContactSec_btn {
  width: 530px;
  height: 120px;
  color: #000;
  border: 1px solid;
  position: relative;
}

.bl_footContactSec_btn div,
.bl_footContactSec_btn p {
  z-index: 3;
  position: relative;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.bl_footContactSec_btn:after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bl_footContactSec_btn:hover {
  opacity: 1;
}

.bl_footContactSec_btn:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.bl_footContactSec_btn:hover div,
.bl_footContactSec_btn:hover p {
  color: #fff;
}

.bl_footContactSec_btn:hover svg {
  fill: #fff;
}

.bl_footContactSec_telBtn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.bl_footContactSec_telBtn_heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bl_footContactSec_telBtn_small {
  letter-spacing: 0.18em;
  font-weight: 300;
}

.bl_footContactSec_contactBtn {
  position: relative;
}

.bl_footContactSec_contactBtn::before {
  content: '';
  height: 1px;
  width: 40px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_footContactSec_contactBtn_heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bl_footer {
  background-color: #000;
  padding-top: 120px;
  padding-bottom: 60px;
  color: #fff;
  font-weight: 300;
  position: relative;
}

.bl_footer_inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bl_footer_left {
  width: 100%;
  margin-bottom: 60px;
}

.bl_footer_left_top,.bl_footer_left_bottom {
  display: flex;
}

.bl_footer_left_top {
  align-items: center;
  column-gap: 40px;
}

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

.bl_footer_right {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  margin-right: 10%;
}

.bl_footer_logo {
  display: block;
  width: 10%;
}

.bl_footer_logo img {
  width: 100%;
}

.bl_footer_access {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
  width: 70%;
}

.bl_footer_copyright {
  letter-spacing: 0.12em;
  text-align: center;
}

/* .bl_footer_nav_list_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
} */

.bl_footer_nav_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_footer_nav_list_head {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

.bl_footer_nav_list_body {
  padding-top: 30px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.bl_footer_nav_list_item {
  padding-left: 1.4em;
  position: relative;
  line-height: 1.66;
}

.bl_footer_nav_list_item::before {
  content: '';
  width: 0.8em;
  height: 1px;
  position: absolute;
  left: 0;
  top: 9px;
  background-color: #fff;
}

.bl_footer_nav_list.bl_footer_nav_list__noNest .bl_footer_nav_list_body {
  padding-top: 0;
}

.bl_footer_nav_list.bl_footer_nav_list__noNest .bl_footer_nav_list_item {
  padding-left: 0;
}

.bl_footer_nav_list.bl_footer_nav_list__noNest .bl_footer_nav_list_item::before {
  content: none;
}

.bl_footer_pageTop {
  font-size: 12px;
  font-family: 'Europa-Bold';
  position: absolute;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding-top: 150px;
  bottom: 70px;
  right: 70px;
  letter-spacing: 0.28em;
}

.bl_footer_pageTop::before {
  content: '';
  width: 1px;
  height: 140px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: calc(50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.bl_footer_pageTop:hover::before {
  top: -8px;
}

.bl_1140Inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.bl_innerPad {
  padding-left: 20px;
  padding-right: 20px;
}

.bl_fv {
  position: relative;
  height: calc(100vh - 120px);
  max-height: 1080px;
}

.bl_fv_left {
  width: 51vw;
  height: calc(100% - 90px);
  background-color: #000;
  position: absolute;
  left: 0;
}

.bl_fv_heading {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 41.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: 0.8s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.bl_fv_heading.js_hidden {
  opacity: 0;
}

.bl_fv_heading_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 110px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-weight: 500;
}

.bl_fv_heading_main > span:nth-child(2) {
  color: transparent;
  text-stroke: 1px #fff;
  -webkit-text-stroke: 1px #fff;
}

.bl_fv_heading_sub {
  display: block;
  letter-spacing: 0.2em;
  font-size: 23px;
  padding-top: 20px;
}

.bl_fv_slider {
  margin-left: 28vw;
  height: 100%;
  background-color: #fff;
}

.bl_fv_slider .slick-track,
.bl_fv_slider .slick-list {
  height: 100%;
}

.bl_fv_slider .slick-dots {
  height: 90px;
  position: absolute;
  bottom: 0;
  left: -28vw;
  width: 28vw;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  font-size: 0;
  padding-right: 30px;
}

.bl_fv_slider .slick-dots li {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.bl_fv_slider .slick-dots button {
  width: 30px;
  height: 5px;
  background-color: #EAEAEA;
}

.bl_fv_slider .slick-dots .slick-active button {
  background-color: #c39e45;
}

.bl_fv_slider img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes slideFadeZoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /* 拡大率 */
  }
}

@keyframes slideFadeZoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /* 拡大率 */
  }
}

.slide-add-animation {
  -webkit-animation: slideFadeZoom 10s 0s forwards;
  animation: slideFadeZoom 10s 0s forwards;
}

.bl_overviewSec {
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}

.bl_overviewSec_head {
  padding-bottom: 20px;
}

.bl_overviewSec_head_ja {
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 10px;
}

.bl_overviewSec_head_en {
  color: #c39e45;
  font-weight: 500;
}

.bl_overviewSec_subTtl {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 40px;
  line-height: 1.8;
  color: #000;
}

.bl_overviewSec_desc {
  line-height: 2.6;
  font-weight: 300;
}

.bl_heading .bl_heading_en {
  font-size: 16px;
  letter-spacing: 0.2em;
  padding-bottom: 12px;
  font-weight: 500;
}

.bl_heading .bl_heading_ja {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.bl_bgImg {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bl_img_wrapper {
  position: relative;
  overflow: hidden;
}

.bl_img_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #F6F6F6;
  z-index: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.bl_img_wrapper .bl_img {
  position: absolute;
  left: -100%;
  top: 50%;
  width: 100%;
  min-height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  z-index: 2;
}

.bl_img_wrapper.show::before {
  width: 100%;
}

.bl_img_wrapper.show .bl_img {
  opacity: 1;
  left: 0;
}

.bl_oblongCard {
  width: 100%;
  position: relative;
  padding-bottom: 30px;
}

.bl_oblongCard_bg {
  padding-top: 55.555%;
}

.bl_oblongCard_cont {
  background-color: #000;
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 28px 60px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_oblongCard_cont_subTtl {
  font-size: 12px;
}

.bl_oblongCard_cont_ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  overflow: hidden;
}

.bl_oblongCard_2colUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.bl_oblongCard_2colUnit .bl_oblongCard {
  width: calc(50% - 20px);
}

.bl_oblongCard_2colUnit .bl_oblongCard_cont {
  padding: 0 30px;
  width: 64%;
  height: 125px;
}

.bl_oblongCard_2colUnit .bl_oblongCard_cont_ttl {
  max-height: 58px;
}

.bl_oblongCard_3colUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.bl_oblongCard_3colUnit .bl_oblongCard {
  width: calc((100% - 80px) / 3);
}

.bl_oblongCard_3colUnit .bl_oblongCard_cont {
  padding: 0 25px;
  width: 86%;
  height: 112px;
  row-gap: 8px;
}

.bl_oblongCard_3colUnit .bl_oblongCard_cont_ttl {
  max-height: 58px;
}

.bl_companyLinksArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 60px;
}

.bl_companyLinksArea_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_companyLinksArea_item_img {
  padding-top: 55.555%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bl_companyLinksArea_item_cont {
  padding-top: 32px;
}

.bl_companyLinksArea_item_subTtl {
  font-size: 16px;
  padding-bottom: 8px;
  color: #c39e45;
  font-weight: 500;
}

.bl_companyLinksArea_item_ttl {
  font-size: 24px;
  font-weight: 600;
}

.bl_companyLinksArea_item_more {
  display: none;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item {
  position: relative;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_img {
  padding-top: 36.5%;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_cont {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 96%;
  height: 90%;
  padding-top: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_subTtl {
  padding-bottom: 0;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_ttl {
  font-size: 40px;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_more {
  display: block;
  position: absolute;
  color: #000;
  padding-left: 2.6em;
  font-weight: 500;
  bottom: 41px;
  right: 45px;
  z-index: 3;
}

.bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_more:after {
  content: '';
  width: 2em;
  height: 1px;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
}

.bl_bg_lightThemeClr {
  background-color: #eeeeee;
}

.bl_secTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  text-align: center;
  padding-bottom: 68px;
}

.bl_secTtl .bl_secTtl_en {
  font-size: 16px;
  font-weight: 500;
}

.bl_secTtl .bl_secTtl_ja {
  font-size: 40px;
  font-weight: 600;
}

.bl_blogCard {
  display: block;
  position: relative;
}

.bl_blogCard .bl_blogCard_img {
  padding-top: 55.555%;
}

.bl_blogCard .bl_blogCard_cont {
  padding-top: 20px;
}
.bl_post_related_posts .bl_blogCard .bl_blogCard_cont {
  padding-top: 10px;
}
.bl_post_related_posts {
  padding-top: 90px;
}
.bl_post_related_posts h2 {
  padding-bottom: 20px;
}
.bl_post_related_posts h2 p {
  font-size: 22px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1.5;
  color: #9990c5;
  position: relative;
  padding-bottom: 1px;
}
.bl_post_related_posts h2 p:before {
  content: '';
  height: 1.3em;
  width: 8px;
  background-color: #9990c5;
  position: absolute;
  left: 0;
  top: 4px;
}
.bl_post_related_posts h2 span {
  display: block;
  width: 100%;
  height: 1px;
  background: #9990c5;
  margin: 10px auto 0;
}

.bl_blogCard .bl_blogCard_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 15px;
  row-gap: 10px;
}
.bl_post_related_posts .bl_blogCard .bl_blogCard_info {
  padding-top: 10px;
}
.bl_blogCard .bl_blogCard_date {
  font-size: 14px;
  font-weight: 300;
}
.bl_post_related_posts .bl_blogCard .bl_blogCard_date {
  font-size: 12px;
}

.bl_blogCard .bl_blogCard_cate_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.bl_blogCard .bl_blogCard_cate {
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  padding-left: 18px;
  padding-right: 18px;
  height: 23px;
  background-color: #9991C5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.bl_post_related_posts .bl_blogCard .bl_blogCard_cate {
  font-size: 10px;
}

.bl_blogCard .bl_blogCard_ttl {
  font-weight: 300;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.bl_post_related_posts .bl_blogCard .bl_blogCard_ttl {
  font-size: 14px;
}

.bl_blogCard_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 70px;
}
.bl_post_related_posts .bl_blogCard_unit {
  column-gap: 20px;
}

.bl_blogCard_unit .bl_blogCard {
  width: calc((100% - 80px) / 3);
}
.bl_post_related_posts .bl_blogCard_unit .bl_blogCard {
  width: calc((100% - 40px) / 3);
}

.bl_news {
  padding-bottom: 30px;
  border-bottom: 1px solid #cacaca;
  position: relative;
}

.bl_news:after {
  content: '';
  display: block;
  width: 130px;
  height: 1px;
  background-color: #c39e45;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.bl_news .bl_news_date {
  display: block;
  padding-bottom: 37px;
  font-size: 13px;
  font-weight: 500;
}

.bl_news .bl_news_ttl {
  font-size: 14px;
  font-weight: 300;
}

.bl_news_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.bl_hasBtnMedia_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 150px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bl_hasBtnMedia_unit .bl_hasBtnMedia {
  width: calc(50% - 20px);
}

.bl_hasBtnMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.bl_hasBtnMedia .bl_hasBtnMedia_img {
  padding-top: 55.555%;
}

.bl_hasBtnMedia .bl_hasBtnMedia_cont {
  padding-top: 40px;
  padding-bottom: 70px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_hasBtnMedia .bl_hasBtnMedia_heading {
  position: relative;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bl_hasBtnMedia .bl_hasBtnMedia_heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bl_hasBtnMedia .bl_hasBtnMedia_heading_en {
  font-size: 12px;
  padding-bottom: 8px;
}

.bl_hasBtnMedia .bl_hasBtnMedia_heading_ja {
  font-size: 30px;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_hasBtnMedia .bl_hasBtnMedia_desc {
  font-weight: 300;
  line-height: 2.625;
  padding-top: 24px;
  padding-bottom: 40px;
}

.bl_hasBtnMedia .bl_hasBtnMedia_btn {
  position: absolute;
  bottom: 0;
}

.bl_businessCard {
  position: relative;
}

.bl_businessCard .bl_businessCard_img {
  width: 65%;
  padding-top: 48%;
  margin-right: 0;
  margin-left: auto;
}

.bl_businessCard .bl_businessCard_cont {
  background-color: #fff;
  padding: 50px 60px;
  width: 50%;
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 4;
}

.bl_businessCard .bl_hasBtnMedia_heading {
  position: relative;
  padding-bottom: 20px;
}

.bl_businessCard .bl_hasBtnMedia_heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bl_businessCard .bl_hasBtnMedia_heading_en {
  font-size: 12px;
  padding-bottom: 8px;
}

.bl_businessCard .bl_hasBtnMedia_heading_ja {
  font-size: 30px;
  font-weight: 600;
}

.bl_businessCard .bl_hasBtnMedia_desc {
  padding-top: 24px;
  font-weight: 300;
  line-height: 2.625;
}

.bl_businessCard.bl_businessCard__rev .bl_businessCard_img {
  margin-left: 0;
  margin-right: auto;
  margin-top: 60px;
}

.bl_businessCard.bl_businessCard__rev .bl_businessCard_cont {
  top: 0;
  right: 0;
  left: auto;
}

.bl_businessCard_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 160px;
}

.bl_businessLinkArea {
  padding-bottom: 50px;
}

.bl_businessLinkArea .bl_businessLinkArea_img {
  padding-top: 36%;
}

.bl_businessLinkArea .bl_businessLinkArea_cont {
  padding-top: 32px;
}

.bl_businessLinkArea .bl_businessLinkArea_subTtl {
  font-size: 14px;
  padding-bottom: 8px;
  color: #000;
}

.bl_businessLinkArea .bl_businessLinkArea_ttl {
  font-size: 30px;
  font-weight: 600;
}

.bl_mv {
  position: relative;
  height: 730px;
}

.bl_mv .bl_mv_left {
  width: 51vw;
  height: calc(100% - 90px);
  background-color: #000;
  position: absolute;
  left: 0;
}

.bl_mv .bl_mv_img {
  margin-left: 28vw;
  height: 100%;
  width: calc(100% - 28vw);
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.bl_mv .bl_mv_img img {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s cubic-bezier(0.5, 0, 0, 1);
  transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

.bl_mv .bl_mv_img img.zoom {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.bl_mv .bl_mv_heading {
  position: absolute;
  top: 45%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  z-index: 4;
  max-width: 100%;
  -webkit-transition: 0.8s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.8s cubic-bezier(0.5, 0, 0, 1);
  overflow: hidden;
  white-space: nowrap;
}

.bl_mv .bl_mv_heading.js_hidden {
  opacity: 0;
}

.bl_mv .bl_mv_heading_main {
  font-size: 114px;
  display: block;
  letter-spacing: 0.02em;
  color: transparent;
  text-stroke: 1px #fff;
  -webkit-text-stroke: 1px #fff;
}

.bl_mv .bl_mv_heading_sub {
  display: block;
  letter-spacing: 0.2em;
  font-size: 24px;
}

.bl_breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-left: 40px;
}

.bl_breadcrumbs_cont {
  font-weight: 300;
}

.bl_breadcrumbs_cont > span,
.bl_breadcrumbs_cont > a {
  display: inline;
  padding-right: 4px;
  line-height: 1.6;
}

.bl_breadcrumbs_cont > span:last-child,
.bl_breadcrumbs_cont > a:last-child {
  padding-right: 0;
}

.bl_selectWrapper {
  position: relative;
}

.bl_selectWrapper::after {
  content: '';
  position: absolute;
  background-image: url("../images/select_arrow.svg");
  width: 14px;
  height: 7px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.bl_acoHead {
  position: relative;
  cursor: pointer;
}

.bl_acoHead::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../images/acco_plus_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bl_acoHead.open::after {
  background-image: url("../images/acco_minus_icon.svg");
}

.screen-reader-text {
  display: none !important;
}

.bl_pageBottomUnit {
  padding-top: 150px;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}

.bl_pageBottomUnit > section {
  width: 100%;
}

/*
* オープンアニメーション
*/
.bl_openAnime {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

.bl_openAnime_loader {
  color: #000;
  font-size: 16px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: loading 0.8s infinite linear;
          animation: loading 0.8s infinite linear;
  position: absolute;
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bl_openAnime_logo_wrapper {
  width: 220px;
  height: auto;
  position: absolute;
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
  overflow: hidden;
  -webkit-transition: opacity 0;
  transition: opacity 0;
}

.bl_openAnime_logo_wrapper:before {
  content: '';
  background-color: #fff;
  width: 220px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 220px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.bl_openAnime_logo_wrapper.js_none {
  opacity: 0;
}

.bl_openAnime_logo_wrapper.js_none:before {
  left: 0;
}

.bl_openAnime_logo {
  display: block;
  min-width: 220px;
}

@-webkit-keyframes loading {
  0%,
  100% {
    -webkit-box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
            box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    -webkit-box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    -webkit-box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    -webkit-box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
            box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    -webkit-box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
            box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes loading {
  0%,
  100% {
    -webkit-box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
            box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    -webkit-box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    -webkit-box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    -webkit-box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
            box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    -webkit-box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
            box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    -webkit-box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
            box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

/*
|----------------------------------------
| page
|----------------------------------------
*/
/*
* TOP
*/

.bl_topPage_overview_btn {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_topPage_businessSec {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.bl_topPage_businessSec::after {
  content: '';
  display: block;
  position: absolute;
  width: 70%;
  height: 100%;
  background-color: #eeeeee;
  top: 0;
  left: 0;
  z-index: -1;
}

.bl_topPage_businessSec_bg {
  background-color: #EFF3F9;
  padding-top: 150px;
  padding-bottom: 150px;
}

.bl_topPage_businessSec_row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.bl_topPage_businessSec_row1_more {
  /* position: absolute;
  bottom: 10px; */
}

.bl_topPage_businessSec_row1_left {
  width: 35%;
  position: relative;
}

.bl_topPage_businessSec_row1_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_topPage_businessSec_row1_left_heading {
  padding-bottom: 45px;
}

.bl_topPage_businessSec_row1_left_txt {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.8;
  padding-bottom: 18%;
}

.bl_topPage_businessSec_row1_right_img {
  padding-top: 55.5555%;
}

.bl_topPage_businessSec_row2 {
  padding-top: 130px;
}

.bl_topPage_businessSec_row3 {
  padding-top: 100px;
}

.bl_topPage_bottomLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 160px;
  padding-top: 160px;
  padding-bottom: 220px;
}

.bl_topPage_recruitSec_card {
  padding-bottom: 44px;
  position: relative;
  display: block;
}

.bl_topPage_recruitSec_card_img {
  padding-top: 55.555%;
}

.bl_topPage_recruitSec_card_cont {
  background-color: #000;
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 36px 76px;
  width: 720px;
  max-width: 100%;
  z-index: 4;
}

.bl_topPage_recruitSec_card_more {
  position: absolute;
  right: 76px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_topPage_blogSec {
  padding-top: 150px;
  padding-bottom: 160px;
}

.bl_topPage_blogSec_bottom {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_topPage_blogSec_bottom .el_lineBtn::after {
  background-color: #EFF3F9;
}

.bl_topPage_blogSec_bottom .el_lineBtn:hover::after {
  background-color: #EFF3F9;
}

.bl_topPage_newsSec {
  /* padding-top: 150px; */
  padding-bottom: 160px;
  background: #fff;
}

/*
|----------------------------------------
| 事業一覧
|----------------------------------------
*/
.bl_businessListPage .bl_overviewSec_subTtl {
  font-size: 18px;
}

.bl_businessListPage_businessListSec {
  padding-bottom: 160px;
  background: linear-gradient(0deg, #EFF3F9 calc(100% - 75px), #EFF3F9, #fff 75px);
}

.bl_businessListPage_companyLinksArea {
  padding-top: 150px;
  padding-bottom: 150px;
}

/*
|----------------------------------------
| 事業詳細
|----------------------------------------
*/
.bl_businessPage_contentsSec {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.bl_businessPage_contentsSec::after {
  content: '';
  display: block;
  position: absolute;
  width: 70%;
  height: 100%;
  background-color: #EFF3F9;
  top: 0;
  right: 0;
  z-index: -1;
}

.bl_businessPage_backBtn_wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_businessPage_companyLinksArea {
  padding-top: 150px;
  padding-bottom: 150px;
}

.bl_privacyPage_cont {
  padding-top: 150px;
}

.bl_privacyPage_cont h2 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
}

.bl_privacyPage_cont p {
  font-weight: 300;
  line-height: 2.265;
}

/*
|----------------------------------------
| 採用情報
|----------------------------------------
*/
.bl_recruitPage_requirement {
  padding-top: 150px;
  padding-bottom: 160px;
}

.bl_recruitPage_requirement_head {
  text-align: center;
  padding-bottom: 60px;
}

.bl_recruitPage_requirement_head_ja {
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 10px;
}

.bl_recruitPage_tabLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 60px;
  row-gap: 30px;
}

.bl_recruitPage_tabLink {
  width: calc(100% / 4);
  min-width: 260px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  border: 1px solid;
  position: relative;
  font-size: 18px;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  overflow: hidden;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bl_recruitPage_tabLink span {
  z-index: 3;
  position: relative;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #000;
}

.bl_recruitPage_tabLink::before {
  content: '';
  height: 1px;
  width: 50px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_recruitPage_tabLink::after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background-color: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bl_recruitPage_tabLink:hover {
  opacity: 1;
}

.bl_recruitPage_tabLink:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.bl_recruitPage_tabLink:hover span {
  color: #fff;
}

input[name='tab'] {
  display: none;
}

input[type="radio"]:checked + .bl_recruitPage_tabLink {
  background-color: #000;
}

input[type="radio"]:checked + .bl_recruitPage_tabLink span {
  color: #fff;
}

.bl_recruitPage_tabPanel {
  background-color: #fff;
  padding: 45px 74px 80px;
}

.bl_recruitPage_tabPanel_cont {
  display: none;
}

.bl_recruitPage_tabPanel_cont.active {
  display: block;
}

.bl_recruitPage_tabPanel_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  text-align: center;
  padding-bottom: 34px;
}

.bl_recruitPage_tabPanel_ttl_en {
  font-size: 14px;
}

.bl_recruitPage_tabPanel_ttl_ja {
  font-size: 24px;
  font-weight: 500;
}

.bl_recruitPage_tabPanel_item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_recruitPage_tabPanel_item::after {
  content: '';
  display: block;
  width: 130px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.bl_recruitPage_tabPanel_item_head {
  width: 300px;
  font-weight: 500;
}

.bl_recruitPage_tabPanel_item_body {
  padding-left: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 300;
  line-height: 2;
}

.bl_bl_recruitPage_entry {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_bl_recruitPage_entry_btn.el_lineBtn {
  width: 400px;
  height: 100px;
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.bl_bl_recruitPage_entry_btn.el_lineBtn span {
  color: #fff;
}

.bl_bl_recruitPage_entry_btn.el_lineBtn::before {
  background-color: #fff;
}

.bl_bl_recruitPage_entry_btn.el_lineBtn::after {
  background-color: #EFF3F9;
}

.bl_bl_recruitPage_entry_btn.el_lineBtn:hover span {
  color: #000;
}

/*
|----------------------------------------
| お問い合わせ
|----------------------------------------
*/
.bl_contactPage {
  padding-top: 150px;
}

.bl_contactPage_phoneSec {
  padding-bottom: 150px;
  padding-top: 150px;
}

.bl_contactHeading {
  padding-bottom: 70px;
  text-align: center;
}

.bl_contactHeading_main {
  font-size: 50px;
  font-weight: 600;
  padding-bottom: 6px;
}

.bl_phoneContact_tel {
  background-color: #F6F6F6;
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

.bl_phoneContact_tel_num {
  font-size: 55px;
  letter-spacing: 0.12em;
  padding-bottom: 8px;
  color: #000;
  font-family: 'Poppins', 'Europa', sans-serif;
}

.bl_phoneContact_tel_reception {
  font-weight: 300;
}

.bl_contactPage_formSec_com {
  text-align: center;
  font-weight: 300;
  line-height: 2.265;
  padding-bottom: 65px;
}

.bl_contactPage_formSec_step {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.bl_contactForm {
  padding-top: 160px;
  padding-bottom: 160px;
}

.bl_contactForm_cont {
  background-color: #fff;
  padding: 66px 60px 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.bl_contactForm_cont p:empty {
  display: none !important;
}

.bl_contactForm_cont input,
.bl_contactForm_cont textarea {
  background-color: #F6F6F6;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 1em;
  max-width: 100%;
}

.bl_contactForm_cont input::-webkit-input-placeholder, .bl_contactForm_cont textarea::-webkit-input-placeholder {
  color: #999999;
}

.bl_contactForm_cont input::-moz-placeholder, .bl_contactForm_cont textarea::-moz-placeholder {
  color: #999999;
}

.bl_contactForm_cont input:-ms-input-placeholder, .bl_contactForm_cont textarea:-ms-input-placeholder {
  color: #999999;
}

.bl_contactForm_cont input::-ms-input-placeholder, .bl_contactForm_cont textarea::-ms-input-placeholder {
  color: #999999;
}

.bl_contactForm_cont input::placeholder,
.bl_contactForm_cont textarea::placeholder {
  color: #999999;
}

.bl_contactForm_cont .bl_selectWrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_contactForm_cont select {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F6F6F6;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 1em;
}

.bl_contactForm_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_contactForm_row_left {
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-top: 11px;
}

.bl_contactForm_tag {
  color: #c39e45;
  border: 1px solid #c39e45;
  font-size: 14px;
  display: block;
  width: 80px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 300;
}

.bl_contactForm_tag.__require {
  background-color: #c39e45;
  color: #fff;
}

.bl_contactForm_row_right {
  padding-left: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.bl_contactForm_row_right span.error {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(114%);
          transform: translateY(114%);
  color: red;
}

.bl_contactForm_row_right input[name="お名前(名)"] + span.error,
.bl_contactForm_row_right input[name="フリガナ(メイ)"] + span.error {
  left: calc(50% + 40px);
}

.bl_contactForm_row_right .p-postal-code {
  max-width: 280px;
}

.bl_contactForm_label {
  cursor: pointer;
}

.bl_contactForm_citiesSpace {
  width: 260px;
}

.bl_contactForm_agreement {
  padding-top: 68px;
  padding-bottom: 68px;
}

.bl_contactForm_agreement label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  font-weight: 300;
}

.bl_contactForm_agreement input[type="checkbox"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.bl_contactForm_agreement a {
  color: #000;
  border-bottom: 1px solid;
  font-weight: 500;
}

.bl_contactForm_agreement span.error {
  margin-top: 14px;
  text-align: center;
  color: red;
}

.bl_contactForm_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.bl_contactForm_submit input[type='submit'] {
  display: none;
}

.bl_contactForm_submit input[type='submit'] + label {
  background-color: #000;
  color: #fff;
  width: 400px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
}

.bl_contactForm_submit input[type='submit'] + label span {
  z-index: 3;
  position: relative;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #fff;
}

.bl_contactForm_submit input[type='submit'] + label:before {
  content: '';
  height: 1px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_contactForm_submit input[type='submit'] + label:after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background-color: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bl_contactForm_submit input[type='submit'] + label:hover {
  opacity: 1;
}

.bl_contactForm_submit input[type='submit'] + label:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.bl_contactForm_submit input[type='submit'] + label:hover span {
  color: #000;
}

.bl_contactForm_complete_heading {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 50px;
}

.bl_contactForm_complete_txt {
  font-weight: 300;
  line-height: 2.625;
  padding-bottom: 76px;
  text-align: center;
}

.bl_contactForm_complete_btn {
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  height: 100px;
}

.bl_contactForm_complete_btn.el_lineBtn.el_lineBtn__rev::after {
  background-color: #fff;
}

/*
|----------------------------------------
| わたしたちについて
|----------------------------------------
*/
.bl_aboutPage {
  padding-top: 160px;
}

.bl_aboutPage_tabPanel {
  display: none;
  padding-top: 280px;
  margin-top: -280px;
}

.bl_aboutPage_tabPanel.active {
  display: block;
}

.bl_aboutPage_tabPanel.bl_aboutPage_tabPanel__only {
  padding-top: 0;
  margin-top: 0;
}

.bl_aboutPage_tabAcoHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000;
  height: 50px;
  color: #000;
  font-weight: bold;
  padding-left: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bl_aboutPage_tab {
  padding-bottom: 80px;
}

.bl_aboutPage_tabBtn_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_aboutPage_tabBtn.el_lineBtn {
  width: calc((100% - 60px) / 4);
  height: 50px;
  min-height: 50px;
  font-size: 15px;
}

.bl_aboutPage_tabBtn.el_lineBtn::before {
  width: 26px;
}

.bl_aboutPage_tabBtn.el_lineBtn.active {
  background-color: #000;
  pointer-events: none;
}

.bl_aboutPage_tabBtn.el_lineBtn.active span {
  color: #fff;
}

.bl_aboutPage_tabBtn.el_lineBtn.active::before {
  background-color: #fff;
}

.bl_about_fullBg {
  /* padding-top: 120px; */
  padding-bottom: 160px;
}

.bl_about_fullBg_img {
  height: 400px;
}

.bl_about_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 160px;
}

.bl_about_vision {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
}

.bl_about_vision::after {
  content: '';
  display: block;
  position: absolute;
  width: 70%;
  height: 100%;
  background-color: #eeeeee;
  top: 0;
  right: 0;
  z-index: -1;
}

.bl_about_strength {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
}

.bl_about_strength::after {
  content: '';
  display: block;
  position: absolute;
  width: 70%;
  height: 100%;
  background-color: #eeeeee;
  top: 0;
  left: 0;
  z-index: -1;
}

.bl_3lineSec .bl_3lineSec_head {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_3lineSec .bl_3lineSec_mainTtl {
  font-size: 42px;
  font-weight: 600;
}

.bl_3lineSec .bl_3lineSec_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.bl_3lineSec .bl_3lineSec_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bl_3lineSec .bl_3lineSec_item_head {
  padding-bottom: 20px;
  position: relative;
}

.bl_3lineSec .bl_3lineSec_item_head::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bl_3lineSec .bl_3lineSec_item_head_num {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  font-weight: 500;
}

.bl_3lineSec .bl_3lineSec_item_head_main {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
}

.bl_3lineSec .bl_3lineSec_item_body {
  padding-top: 20px;
  font-weight: 300;
  line-height: 2.625;
}

.bl_aboutPage_cont {
  padding-bottom: 160px;
}

.bl_aboutPage_cont_heading {
  padding-bottom: 80px;
  text-align: center;
}

.bl_aboutPage_cont_heading_main {
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 10px;
}

/*
|----------------------------------------
| わたしたちについて 代表メッセージ
|----------------------------------------
*/
.bl_presidentMessage_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.bl_presidentMessage_cont_left {
  width: calc(50% - 20px);
}

.bl_presidentMessage_cont_img {
  padding-top: 100%;
}

.bl_presidentMessage_cont_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  row-gap: 20px;
}

.bl_presidentMessage_cont_message {
  font-weight: 300;
  line-height: 2.625;
  margin-top: -8px;
  text-align: start;
}

.bl_presidentMessage_cont_sign {
  font-weight: 600;
  text-align: right;
}

.bl_presidentMessage_cont_sign_min {
  padding-bottom: 6px;
}

.bl_presidentMessage_cont_sign_main {
  font-size: 24px;
}

/*
|----------------------------------------
| わたしたちについて 会社概要
|----------------------------------------
*/
.bl_company_list_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}

.bl_company_list_row::after {
  content: '';
  display: block;
  width: 130px;
  height: 1px;
  background-color: #c39e45;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.bl_company_list_row_left {
  width: 300px;
  font-weight: 500;
}

.bl_company_list_row_right {
  padding-left: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 300;
  line-height: 2;
}

.bl_company_map {
  padding-top: 160px;
}

.bl_company_map_cont {
  padding-top: 50px;
  position: relative;
}

.bl_company_map_heading {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 20px;
}

.bl_company_map_post {
  font-weight: 300;
}

.bl_company_map_address {
  font-weight: 300;
  padding-top: 10px;
}

.bl_company_map_access {
  font-weight: 300;
  padding-top: 10px;
}

.bl_company_map_tel {
  font-weight: 300;
  padding-top: 20px;
}

.bl_company_map_tel ._telNum {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bl_company_map_open {
  padding-top: 14px;
  font-weight: 300;
}

.bl_company_map_btn {
  position: absolute;
  right: 0;
  top: 50px;
}

.bl_company_fullBg.bl_about_fullBg {
  padding-bottom: 0;
}

/*
|----------------------------------------
| わたしたちについて 沿革
|----------------------------------------
*/
/*
|----------------------------------------
| ブログ一覧
|----------------------------------------
*/
.bl_blogPage {
  padding-top: 160px;
}

.bl_blogPage_bg {
  background: linear-gradient(0deg, #eeeeee calc(100% - 40px), #eeeeee, #fff 40px);
  padding-bottom: 160px;
}

.bl_blogPage_head {
  text-align: center;
}

.bl_blogPage_head_ja {
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 10px;
}

.bl_blogPage_body {
  padding-top: 80px;
}

.bl_blogList_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 35px;
  width: 220px;
  margin-left: auto;
  margin-right: 0;
}

.bl_blogList_head .bl_blogCatenav_list {
  background-color: #eeeeee;
}

.bl_blogCatenav_btn,
.bl_blogCatenav_item,
.bl_blogCatenav_current {
  width: 220px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000;
  letter-spacing: 0.18em;
}

.bl_blogCatenav_item {
  border-bottom: none;
}

.bl_blogCatenav_list > .bl_blogCatenav_item:first-child {
  border-top: none;
}

.bl_blogCatenav_list > .bl_blogCatenav_item:last-child {
  border-bottom: 1px solid #000;
}

.bl_blogCatenav_current {
  background-color: #000;
  color: #fff;
}

.bl_blogCatenav_btn {
  position: relative;
}

.bl_blogCatenav_btn::after {
  content: '';
  background-image: url("../images/blog_cate_arrow.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 12px;
  top: calc(50% - 3px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bl_blogCatenav_btn.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.bl_blogCatenav_list {
  position: absolute;
  display: none;
  background-color: #EFF3F9;
  z-index: 3;
}

/*
|----------------------------------------
| ブログ詳細
|----------------------------------------
*/
.bl_postPage_breadcrumb {
  padding: 60px 80px 0;
}

.bl_post_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 28px;
}

.bl_post_date {
  font-size: 14px;
  font-weight: 300;
}

.bl_post_cateName_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bl_post_cateName {
  font-size: 12px;
  padding: 3px 12px;
  color: #fff;
  background-color: #9991C5;
  font-weight: 300;
}

.bl_post_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  padding-bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  margin-top: -20px;
}

.bl_post_sns_item {
  height: 24px;
}

.bl_post_sns_item img {
  display: block;
  height: 100%;
}

.bl_post_ttl {
  font-size: 24px;
  padding-bottom: 32px;
  font-weight: 600;
}

.bl_post_eyeCatch {
  max-width: 100%;
  padding-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
}

.bl_post {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
}

.bl_post .bl_blogCatenav {
  padding-top: 30px;
}

.bl_blogCatenav_list {
  background: #fff;
}

.bl_post_cont {
  color: #333333;
}

.bl_post_cont p {
  line-height: 1.75;
}

.bl_post_cont h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  background-color: #9991C5;
  padding: 20px 36px;
  margin-bottom: 34px;
  color: #fff;
}

.bl_post_cont h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 34px;
  padding-left: 24px;
  position: relative;
}

.bl_post_cont h3:before {
  content: '';
  height: 1.5em;
  width: 8px;
  background-color: #9991C5;
  position: absolute;
  left: 0;
}

.bl_post_cont h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 30px;
  color: #9991C5;
}

.bl_post_cont ul,
.bl_post_cont ol {
  padding-left: 1.7em;
  border: none;
  padding-top: 0.5em;
}

.bl_post_cont ul li,
.bl_post_cont ol li {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

.bl_post_cont ul li::marker,
.bl_post_cont ol li::marker {
   color: #9991C5;
}

.bl_post_cont ul:has(+ p),
.bl_post_cont ol:has(+ p) {
	border: 1px solid #9991C5;
	padding: 30px 50px;
}

.bl_post_cont blockquote {
  background-color: #F4F0FE;
  padding: 34px;
}

.bl_post_cont a.concierge_btn {
  background-color: #F4F0FE;
  padding: 1em;
	max-width: 325px;
	width: 100%;
	display: block;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(90deg, #9B92C5, #DAB3D5);
	border-radius: 50px;
	margin: auto;
}

.bl_post_cont a {
  color: #9991C5;
}

.bl_post_cont table th,
.bl_post_cont table td {
  font-size: 14px;
  padding: 0.5em 0.7em;
  border-right: 1px solid #fff;
}

.bl_post_cont table tr > th:last-child,
.bl_post_cont table tr > td:last-child {
  border-right: none;
}

.bl_post_cont table th {
  font-weight: bold;
  background-color: #9991C5;
  color: #fff;
}

.bl_post_cont table tr:nth-child(even) th,
.bl_post_cont table tr:nth-child(even) td {
  background-color: #F4F0FE;
}

.bl_post_cont img {
  display: inline-block;
  max-width: 100%;
}

/*
* 全共通 記事詳細スタイル
*/
.bl_post_cont p {
  margin-bottom: 1em;
}

.bl_post_cont h2, .bl_post_cont h3, .bl_post_cont h4, .bl_post_cont h5, .bl_post_cont h6 {
  margin-bottom: 1rem;
}

.bl_post_cont h2 {
  margin-top: 2.15em;
}

.bl_post_cont h3 {
  margin-top: 2em;
}

.bl_post_cont h4 {
  margin-top: 2em;
}

.bl_post_cont h5 {
  margin-top: 2em;
}

.bl_post_cont img {
  margin: 30px auto 10px;
  max-width: 100%;
  overflow: hidden;
}

.bl_post_cont table {
  margin: 2.67em 0;
}

.bl_post_cont .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.bl_post_cont .alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-top: 0;
}

.bl_post_cont .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-top: 0;
}

#toc_container {
  margin-top: 80px;
  margin-bottom: 80px;
  border: none;
  background-color: #F4F0FE;
  padding: 40px;
  max-width: 360px;
  width: 100%;
	
}

#toc_container .toc_title {
  font-weight: normal !important;
  color: #666666;
  text-align: left !important;
}

#toc_container .toc_list li {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

#toc_container .toc_list li a {
  color: #000;
}

.bl_post_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-top: 80px;
}

.bl_post_bottom_link {
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #9991C5;
}

.bl_post_bottom_link span {
  display: inline-block;
  border-bottom: 1px solid #9991C5;
  padding: 4px 0;
  font-weight: 600;
}

.bl_post_bottom_link.bl_post_bottom_link__prev, .bl_post_bottom_link.bl_post_bottom_link__next {
  width: 50px;
  height: 55px;
  border: 1px solid #9991C5;
}

.bl_post_bottom_link.bl_post_bottom_link__prev > img, .bl_post_bottom_link.bl_post_bottom_link__next > img {
  height: 10px;
  width: auto;
}

.bl_pagination {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_pagination .page-numbers li {
  margin-right: 0.75em;
}

.bl_pagination .page-numbers li span,
.bl_pagination .page-numbers li a {
  color: #000;
  border: 1px solid;
  display: block;
  padding: 0.4em 0.8em 0.4em;
  font-weight: 300;
}

.bl_pagination .page-numbers li span {
  color: #fff;
  background-color: #000;
  border: 1px solid #000 !important;
}

/*
* よくある質問
*/
.bl_faqPage {
  padding-top: 150px;
}

.bl_faqPageHeading {
  padding-bottom: 70px;
  text-align: center;
}

.bl_faqPageHeading_main {
  font-size: 50px;
  font-weight: 600;
  padding-bottom: 6px;
}

.bl_faqtPage_tabAcoHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000;
  height: 50px;
  color: #000;
  font-weight: bold;
  padding-left: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bl_faqPage_tab {
  /* padding-bottom: 80px; */
  padding-top: 150px;
}

.bl_faqPage_tabBtn_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
}

.bl_faqPage_tabBtn_unit.col3 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.bl_faqPage_tabBtn.el_lineBtn {
  width: 260px;
  height: 50px;
  min-height: 50px;
  font-size: 15px;
}

.bl_faqPage_tabBtn.el_lineBtn:focus {
  background-color: #000;
}

.bl_faqPage_tabBtn.el_lineBtn:focus span {
  color: #fff;
}

.bl_faqPage_tabBtn.el_lineBtn::before {
  width: 26px;
}

.bl_faqPage_tabBtn.el_lineBtn.active {
  background-color: #000;
  pointer-events: none;
}

.bl_faqPage_tabBtn.el_lineBtn.active span {
  color: #fff;
}

.bl_faqPage_tabBtn.el_lineBtn.active::before {
  background-color: #fff;
}

.bl_faqPage_tabPanel {
  padding-top: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 120px;
  padding-bottom: 150px;
}

.bl_faqPage_tabPanel_cont {
  width: 100%;
}

.bl_faqPage_tabPanel_ttl {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  padding-bottom: 52px;
}

.bl_faqPage_tabPanel_ttl_en {
  font-size: 14px;
}

.bl_faqPage_tabPanel_ttl_ja {
  font-size: 24px;
  font-weight: 600;
}

.bl_faqItem_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  width: 100%;
}

.bl_faqItem {
  width: 100%;
}

.bl_faqItem_head,
.bl_faqItem_body {
  padding-left: 114px;
  padding-right: 50px;
  font-weight: normal;
  position: relative;
  letter-spacing: 0.18em;
}

.bl_faqItem_head .bl_faqItem_leftIcon,
.bl_faqItem_body .bl_faqItem_leftIcon {
  position: absolute;
  left: 40px;
}

.bl_faqItem_head {
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding-top: 36px;
  padding-bottom: 36px;
}

.bl_faqItem_head:after {
  content: '+';
  font-size: 46px;
  color: #000;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_faqItem_head.js_active:after {
  content: '−';
}

.bl_faqItem_head .bl_faqItem_leftIcon {
  width: 43px;
  top: 40px;
}

.bl_faqItem_body {
  font-weight: 300;
  line-height: 1.7;
  padding-top: 30px;
  padding-bottom: 30px;
  letter-spacing: 0.18em;
}

.bl_faqItem_body a {
  color: #155899;
}

.bl_faqItem_body .bl_faqItem_leftIcon {
  width: 39px;
  top: 30px;
}

/*
* 固定ページ デフォルト
*/
.bl_defaultPage .bl_overviewSec_desc {
  text-align: center;
}

.bl_defaultPage_content {
  background: linear-gradient(0deg, #eeeeee calc(100% - 120px), #eeeeee, #fff 120px);
  padding-bottom: 140px;
}

.bl_defaultPage_content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 150px;
}

.bl_defaultPage_section .bl_img_wrapper {
  padding-top: 35.7272%;
}

.bl_defaultPage_section_topSpace {
  padding-top: 150px;
}

.bl_defaultPage_section_cont {
  padding-top: 40px;
}

.bl_defaultPage_section_ttl_main {
  padding-top: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.625;
}

.bl_defaultPage_section_txt {
  padding-top: 25px;
  line-height: 2.6;
}

.bl_defaultPage_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
* 404
*/
.bl_404Page .bl_overviewSec {
  padding-bottom: 80px;
}

.bl_404Page .bl_404Page_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* パンくず位置調整 */
div#breadcrumb {
	margin:-25px 0 30px 0;/*余白*/
	font-size: 94%;/*文字サイズ*/
}

div#breadcrumb  ul li{
	display:inline;/*横並びにする*/
	line-height:20px;/*行間*/
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .bl_hmbgMenu .bl_hmbgMenu_bottom .bl_hmbgMenu_contactBtn {
    height: 54px;
  }
  .hp_sp_none {
    display: none;
  }
  .el_lineBtn {
    height: 70px;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
  }
  .bl_table th,
  .bl_table td {
    display: block;
    width: 100%;
  }
  .bl_sns {
    width: 24px;
    height: 24px;
  }
  .bl_header {
    height: 70px;
  }
  .bl_header_left {
    width: calc(100% - 75px);
    padding-left: 25px;
  }
  .bl_header_logo,
  .bl_header_logo_img {
    height: 20px;
  }
  .bl_header_right {
    display: none;
  }
  .bl_header_hmbgBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bl_footContactSec {
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .bl_footContactSec_desc {
    text-align: left;
    padding-bottom: 30px;
  }
  .bl_footContactSec_btn_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .bl_footContactSec_btn {
    width: 100%;
    height: 75px;
  }
  .bl_footContactSec_telBtn {
    row-gap: 5px;
  }
  .bl_footContactSec_contactBtn_heading {
    font-size: 15px;
  }
  .bl_footer {
    padding-top: 80px;
  }
  .bl_footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 70px;
  }
  .bl_footer_left_top,.bl_footer_left_bottom {
    display: block;
  }
  .bl_footer_left_bottom p {
    margin-bottom: 20px;
  }
  .bl_footer_left {
    width: 100%;
    padding-top: 50px;
  }
  .bl_footer_logo {
    width: 30%;
    margin-bottom: 30px;
  }
  .bl_footer_logo_img {
    /* max-height: 30px; */
  }
  .bl_footer_nav_list_unit {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .bl_footer_nav_list {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    border-bottom: 1px solid #fff;
  }
  .bl_footer_nav_list_unit > .bl_footer_nav_list:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .bl_footer_nav_list_unit > .bl_footer_nav_list:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .bl_footer_nav_list_unit > .bl_footer_nav_list:nth-of-type(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .bl_footer_nav_list_unit > .bl_footer_nav_list:nth-of-type(3) .bl_footer_nav_list_body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .bl_footer_nav_list_unit > .bl_footer_nav_list:nth-of-type(3) .bl_footer_nav_list_body > a {
    width: calc(50% - 15px);
  }
  .bl_footer_nav_list_head {
    position: relative;
    font-size: 12px;
    padding: 15px 0;
    cursor: pointer;
    margin-bottom: initial;
  }
  .list_bar {
    background: #fff;
    width: 1rem;
    height: 1px;
    position: absolute;
    right: 1rem;
    bottom: 25px;
  }
  .list_bar:before {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    content: "";
    background: #fff;
    width: 1rem;
    height: 1px;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .list_bar.faq-plus:before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .bl_footer_nav_list_body {
    font-size: 10px;
    padding-top: 15px;
    row-gap: 15px;
    display: none;
    margin-bottom: 20px;
  }
  .bl_footer_nav_list_item {
    padding-left: 0;
    display: block;
    padding: 5px 0;
  }
  .bl_footer_nav_list_item::before {
    content: none;
  }
  .bl_footer_pageTop {
    right: 20px;
  }
  .bl_fv {
    max-height: 555px;
  }
  .bl_fv_left {
    height: calc(100% - 50px);
  }
  .bl_fv_heading {
    width: calc(100% - 46px);
    left: 22px;
  }
  .bl_fv_heading_main {
    font-size: 50px;
  }
  .bl_fv_heading_sub {
    font-size: 12px;
  }
  .bl_fv_slider .slick-dots {
    height: 40px;
    padding-right: 0;
    left: 10vw;
    bottom: -40px;
  }
  .bl_fv_slider .slick-dots button {
    width: 14px;
    height: 2px;
  }
  .bl_overviewSec {
    padding-top: 46px;
    padding-bottom: 50px;
  }
  .bl_overviewSec_head {
    padding-bottom: 40px;
  }
  .bl_overviewSec_head_ja {
    font-size: 22px;
  }
  .bl_overviewSec_head_en {
    font-size: 12px;
  }
  .bl_overviewSec_subTtl {
    font-size: 18px;
    padding-bottom: 20px;

  }
  .bl_overviewSec_desc {
    text-align: left;
  }
  .bl_heading .bl_heading_en {
    font-size: 11px;
    padding-bottom: 7px;
  }
  .bl_heading .bl_heading_ja {
    font-size: 22px;
  }
  .bl_oblongCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
  }
  .bl_oblongCard_bg {
    width: 50%;
    padding-top: 27%;
  }
  .bl_oblongCard_cont {
    position: static;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
    row-gap: 6px;
  }
  .bl_oblongCard_cont_subTtl {
    font-size: 10px;
  }
  .bl_oblongCard_cont_ttl {
    font-size: 14px;
  }
  .bl_oblongCard_2colUnit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .bl_oblongCard_2colUnit .bl_oblongCard {
    width: 100%;
  }
  .bl_oblongCard_2colUnit .bl_oblongCard_cont {
    padding: 10px 10px 10px 16px;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .bl_oblongCard_2colUnit .bl_oblongCard_cont_ttl {
    max-height: 45px;
  }
  .bl_oblongCard_3colUnit .bl_oblongCard {
    width: 100%;
  }
  .bl_oblongCard_3colUnit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .bl_oblongCard_3colUnit .bl_oblongCard_cont {
    padding: 10px 10px 10px 16px;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .bl_oblongCard_3colUnit .bl_oblongCard_cont_ttl {
    max-height: 45px;
  }
  .bl_companyLinksArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bl_companyLinksArea_item {
    width: 100%;
  }
  .bl_companyLinksArea_item_cont {
    padding-top: 15px;
  }
  .bl_companyLinksArea_item_subTtl {
    font-size: 12px;
    padding-bottom: 0;
  }
  .bl_companyLinksArea_item_ttl {
    font-size: 22px;
  }
  .bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_ttl {
    font-size: 22px;
  }
  .bl_companyLinksArea.bl_companyLinksArea__col_1 .bl_companyLinksArea_item_more {
    font-size: 12px;
    bottom: 14px;
    right: 15px;
  }
  .bl_secTtl {
    padding-bottom: 44px;
  }
  .bl_secTtl .bl_secTtl_en {
    font-size: 12px;
  }
  .bl_secTtl .bl_secTtl_ja {
    font-size: 22px;
  }
  .bl_blogCard .bl_blogCard_cont {
    padding-top: 16px;
  }
  .bl_blogCard .bl_blogCard_info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 22px;
  }
  .bl_blogCard .bl_blogCard_cate {
    font-size: 12px;
    height: 25px;
  }
  .bl_blogCard.bl_blogCard__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_img {
    padding-top: 36%;
    width: 53%;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_cont {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 0;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_cate {
    font-size: 10px;
    height: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bl_blogCard.bl_blogCard__flex .bl_blogCard_date {
    font-size: 10px;
  }
  .bl_blogCard_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
  }
  .popular-posts h2 p {
    color: #9990c5;
  }
  .bl_post_related_posts h2 {
    padding-bottom: 0;
  }
  .bl_post_related_posts h2 p {
    font-size: 18px;
  }
  .bl_post_related_posts .bl_blogCard_unit {
    flex-direction: row;
    row-gap: 0;
    column-gap: 0;
    justify-content: space-between;
  }
  .bl_post_related_posts .bl_blogCard_unit .bl_blogCard {
    width: 48%;
    margin-top: 6%;
  }
  .bl_blogCard_unit .bl_blogCard {
    width: 100%;
  }
  .bl_news .bl_news_date {
    font-size: 12px;
  }
  .bl_news_unit {
    row-gap: 60px;
  }
  .bl_hasBtnMedia_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
  }
  .bl_hasBtnMedia_unit .bl_hasBtnMedia {
    width: 100%;
  }
  .bl_hasBtnMedia .bl_hasBtnMedia_cont {
    padding-top: 16px;
  }
  .bl_hasBtnMedia .bl_hasBtnMedia_heading {
    display: block;
  }
  .bl_hasBtnMedia .bl_hasBtnMedia_heading_ja {
    font-size: 23px;
    display: block;
  }
  .bl_hasBtnMedia .bl_hasBtnMedia_desc {
    padding-bottom: 30px;
  }
  .bl_businessCard .bl_businessCard_img {
    width: 100%;
  }
  .bl_businessCard .bl_businessCard_cont {
    position: static;
    width: 100%;
    padding: 38px 25px 30px;
  }
  .bl_businessCard .bl_hasBtnMedia_heading_en {
    padding-bottom: 5px;
  }
  .bl_businessCard .bl_hasBtnMedia_heading_ja {
    font-size: 23px;
  }
  .bl_businessCard.bl_businessCard__rev .bl_businessCard_img {
    margin-top: 0px;
  }
  .bl_businessCard_unit {
    row-gap: 60px;
  }
  .bl_businessLinkArea {
    padding-bottom: 60px;
  }
  .bl_businessLinkArea .bl_businessLinkArea_cont {
    padding-top: 15px;
  }
  .bl_businessLinkArea .bl_businessLinkArea_subTtl {
    font-size: 13px;
    padding-bottom: 0;
  }
  .bl_businessLinkArea .bl_businessLinkArea_ttl {
    font-size: 22px;
  }
  .bl_mv {
    height: 585px;
    padding-bottom: 40px;
  }
  .bl_mv .bl_mv_heading {
    white-space: initial;
  }
  .bl_mv .bl_mv_heading_main {
    font-size: 50px;
  }
  .bl_mv .bl_mv_heading_sub {
    font-size: 12px;
  }
  .bl_breadcrumbs {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-left: 20px;
    margin-top: 20px;
  }
  .bl_breadcrumbs_cont {
    font-size: 11px;
  }
  .bl_pageBottomUnit {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .bl_topPage_overview {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .bl_topPage_overview .bl_overviewSec_head {
    padding-bottom: 20px;
  }
  .bl_topPage_overview_btn {
    padding-top: 30px;
  }
  .bl_topPage_businessSec::after {
    width: 82%;
  }
  .bl_topPage_businessSec {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .bl_topPage_businessSec_row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding-bottom: 40px;
  }
  .bl_topPage_businessSec_row1_more {
    position: absolute;
    bottom: 0px;
  }
  .bl_topPage_businessSec_row1_left {
    width: 100%;
    position: static;
  }
  .bl_topPage_businessSec_row1_left_txt {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .bl_topPage_businessSec_row2 {
    padding-top: 40px;
  }
  .bl_topPage_businessSec_row3 {
    padding-top: 30px;
  }
  .bl_topPage_bottomLinks {
    padding-top: 60px;
    padding-bottom: 60px;
    row-gap: 60px;
  }
  .bl_topPage_recruitSec_card_cont {
    width: calc(100% - 40px);
    padding: 20px 16px;
  }
  .bl_topPage_recruitSec_card_more {
    font-size: 11px;
    right: 16px;
  }
  .bl_topPage_blogSec {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .bl_topPage_newsSec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .bl_topPage_newsSec .bl_news_unit {
    padding-top: 18px;
  }
  .bl_businessListPage .bl_overviewSec_subTtl {
    text-align: left;
  }
  .bl_businessListPage_businessListSec {
    padding-bottom: 60px;
  }
  .bl_businessListPage_companyLinksArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .bl_businessPage_contentsSec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .bl_businessPage_contentsSec::after {
    width: 100%;
  }
  .bl_businessPage_backBtn_wrapper {
    padding-top: 32px;
    padding-bottom: 0;
  }
  .bl_businessPage_companyLinksArea {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .bl_privacyPage_cont {
    padding-top: 46px;
  }
  .bl_privacyPage_cont h2 {
    font-size: 14px;
  }
  .bl_privacyPage_cont p {
    font-size: 12px;
  }
  .bl_recruitPage_requirement {
    padding-top: 30px;
    padding-bottom: 38px;
  }
  .bl_recruitPage_requirement_head_ja {
    font-size: 22px;
  }
  .bl_recruitPage_requirement_head_en {
    font-size: 12px;
  }
  .bl_recruitPage_tabLink {
    width: 100%;
    height: 60px;
  }
  .bl_recruitPage_tabPanel {
    padding: 30px 20px;
  }
  .bl_recruitPage_tabPanel_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .bl_recruitPage_tabPanel_item::after {
    width: 75px;
  }
  .bl_recruitPage_tabPanel_item_head {
    width: 100%;
  }
  .bl_recruitPage_tabPanel_item_body {
    padding-left: 0;
  }
  .bl_bl_recruitPage_entry {
    padding-top: 38px;
  }
  .bl_bl_recruitPage_entry_btn.el_lineBtn {
    height: 75px;
  }
  .bl_contactPage {
    padding-top: 45px;
  }
  .bl_contactPage_phoneSec {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .bl_contactHeading {
    padding-bottom: 35px;
  }
  .bl_contactHeading_main {
    font-size: 22px;
  }
  .bl_contactHeading_sub {
    font-size: 12px;
  }
  .bl_phoneContact_tel {
    padding: 28px 0;
  }
  .bl_phoneContact_tel_num {
    font-size: 32px;
  }
  .bl_contactPage_formSec_com {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 16px;
  }
  .bl_contactPage_formSec_step {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 440px;
  }
  .bl_contactForm {
    padding-top: 94px;
    padding-bottom: 64px;
  }
  .bl_contactForm_cont {
    padding: 38px 16px 38px;
    row-gap: 26px;
  }
  .bl_contactForm_cont input,
  .bl_contactForm_cont textarea {
    width: 100%;
  }
  .bl_contactForm_cont .bl_selectWrapper {
    width: 100%;
  }
  .bl_contactForm_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 13px;
  }
  .bl_contactForm_row_left {
    padding-top: 0;
  }
  .bl_contactForm_tag {
    font-size: 10px;
    width: 38px;
    height: 18px;
  }
  .bl_contactForm_row_right {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .bl_contactForm_row_right span.error {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .bl_contactForm_row_right.post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_contactForm_label {
    font-size: 13px;
  }
  .bl_contactForm_agreement {
    padding-top: 58px;
    padding-bottom: 38px;
  }
  .bl_contactForm_submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .bl_contactForm_submit input[type='submit'] + label {
    height: 75px;
    width: 100%;
  }
  .bl_contactForm_complete_heading {
    font-size: 20px;
    padding-bottom: 40px;
  }
  .bl_contactForm_complete_txt {
    text-align: left;
    padding-bottom: 40px;
  }
  .bl_contactForm_complete_btn {
    width: 100%;
    height: 75px;
  }
  .bl_aboutPage {
    padding-top: 54px;
  }
  .bl_aboutPage_tabPanel {
    padding-top: 20px;
    margin-top: -20px;
  }
  .bl_aboutPage_tabPanel.bl_aboutPage_tabPanel__only {
    padding-top: 0;
    margin-top: -0;
  }
  .bl_aboutPage_tab {
    padding-bottom: 58px;
  }
  .bl_aboutPage_tabBtn_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .bl_aboutPage_tabBtn.el_lineBtn {
    width: 100%;
    height: 60px;
  }
  .bl_about_fullBg {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .bl_about_fullBg_img {
    height: 194px;
  }
  .bl_about_cont {
    row-gap: 66px;
  }
  .bl_about_vision {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .bl_about_vision::after {
    width: 90%;
    left: 0;
    right: auto;
    top: 18px;
    height: calc(100% - 18px);
  }
  .bl_about_strength {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .bl_about_strength::after {
    width: 90%;
    height: calc(100% - 18px);
    left: auto;
    right: 0;
    top: 18px;
  }
  .bl_3lineSec .bl_3lineSec_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bl_3lineSec .bl_3lineSec_mainTtl {
    font-size: 22px;
    padding-bottom: 8px;
  }
  .bl_3lineSec .bl_3lineSec_subTtl {
    font-size: 12px;
  }
  .bl_3lineSec .bl_3lineSec_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 46px;
  }
  .bl_3lineSec .bl_3lineSec_item {
    width: 100%;
  }
  .bl_3lineSec .bl_3lineSec_item_head_num {
    font-size: 12px;
  }
  .bl_3lineSec .bl_3lineSec_item_head_main {
    font-size: 18px;
  }
  .bl_3lineSec .bl_3lineSec_item_body {
    padding-top: 14px;
  }
  .bl_aboutPage_cont {
    padding-bottom: 60px;
  }
  .bl_aboutPage_cont_heading {
    padding-bottom: 40px;
  }
  .bl_aboutPage_cont_heading_main {
    font-size: 22px;
  }
  .bl_aboutPage_cont_heading_sub {
    font-size: 12px;
  }
  .bl_presidentMessage_cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .bl_presidentMessage_cont_left {
    width: 100%;
  }
  .bl_presidentMessage_cont_right {
    row-gap: 28px;
  }
  .bl_presidentMessage_cont_sign_min {
    font-size: 16px;
  }
  .bl_presidentMessage_cont_sign_main {
    font-size: 18px;
  }
  .bl_company_list_row::after {
    width: 75px;
  }
  .bl_company_list_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .bl_company_list_row_left {
    width: 100%;
  }
  .bl_company_list_row_right {
    padding-left: 0;
  }
  .bl_company_map {
    padding-top: 60px;
  }
  .bl_company_map_iframe iframe {
    width: 100%;
    height: 194px;
  }
  .bl_company_map_heading {
    font-size: 16px;
  }
  .bl_company_map_tel {
    padding-top: 10px;
  }
  .bl_company_map_tel ._telNum {
    font-size: 16px;
  }
  .bl_company_map_btn {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .bl_blogPage_bg {
    background: linear-gradient(0deg, #eeeeee calc(100% - 16px), #eeeeee, #fff 15px);
    padding-bottom: 40px;
  }
  .bl_blogPage_head_ja {
    font-size: 22px;
  }
  .bl_blogPage_head_en {
    font-size: 12px;
  }
  .bl_blogPage_body {
    padding-top: 36px;
  }
  .bl_blogList_head {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .bl_blogList_head .bl_blogCatenav_list {
    width: calc(100% - 40px);
  }
  .bl_blogCatenav_btn,
  .bl_blogCatenav_item,
  .bl_blogCatenav_current {
    width: 100%;
  }
  .bl_blogList_cont {
    padding-bottom: 10px;
  }
  .bl_postPage_breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bl_post_sns {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .bl_post {
    padding-top: 60px;
  }
  .bl_post .bl_blogCatenav {
    width: 140px;
    font-size: 12px;
    padding-top: 0;
  }
  .bl_post .bl_blogCatenav_btn,
  .bl_post .bl_blogCatenav_item,
  .bl_post .bl_blogCatenav_current {
    height: 30px;
  }
  .bl_blogCatenav_list {
    width: 140px;
    font-size: 12px;
  }
  .bl_post_cont h2 {
    padding: 16px 26px;
  }
  .bl_post_cont .alignright {
    float: none;
  }
  .bl_post_cont .alignleft {
    float: none;
  }
  .bl_pagination {
    margin-top: 30px;
  }
  .bl_pagination {
    margin-top: 45px;
    font-size: 14px;
  }
  .bl_pagination .page-numbers li {
    margin-right: 0.8em;
  }
  .bl_pagination .page-numbers li span,
  .bl_pagination .page-numbers li a {
    padding: 0.5em 0.75em;
  }
  .bl_faqPage {
    padding-top: 46px;
  }
  .bl_faqPageHeading {
    padding-bottom: 40px;
  }
  .bl_faqPageHeading_main {
    font-size: 22px;
  }
  .bl_faqPage_tab {
    padding-bottom: 58px;
    padding-top: 54px;
  }
  .bl_faqPage_tabBtn_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bl_faqPage_tabBtn.el_lineBtn {
    width: 100%;
    height: 60px;
  }
  .bl_faqPage_tabBtn.el_lineBtn {
    width: 100%;
  }
  .bl_faqPage_tabPanel {
    padding-top: 34px;
    padding-bottom: 58px;
    row-gap: 50px;
  }
  .bl_faqPage_tabPanel_ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 30px;
  }
  .bl_faqPage_tabPanel_ttl_en {
    font-size: 12px;
  }
  .bl_faqPage_tabPanel_ttl_ja {
    font-size: 18px;
  }
  .bl_faqItem_unit {
    row-gap: 16px;
  }
  .bl_faqItem_head,
  .bl_faqItem_body {
    padding-left: 58px;
    padding-right: 44px;
  }
  .bl_faqItem_head .bl_faqItem_leftIcon,
  .bl_faqItem_body .bl_faqItem_leftIcon {
    left: 16px;
  }
  .bl_faqItem_head {
    font-size: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.875;
  }
  .bl_faqItem_head:after {
    right: 16px;
    font-size: 28px;
  }
  .bl_faqItem_head .bl_faqItem_leftIcon {
    width: 30px;
    top: 20px;
  }
  .bl_faqItem_body {
    padding-top: 16px;
    padding-bottom: 24px;
    line-height: 1.875;
  }
  .bl_faqItem_body .bl_faqItem_leftIcon {
    width: 28px;
    top: 20px;
  }
  .bl_defaultPage_content {
    background: linear-gradient(0deg, #eeeeee calc(100% - 70px), #eeeeee, #fff 70px);
    padding-bottom: 60px;
  }
  .bl_defaultPage_content_inner {
    row-gap: 48px;
  }
  .bl_defaultPage_section .bl_img_wrapper {
    padding-top: 73.8461%;
  }
  .bl_defaultPage_section_cont {
    padding-top: 20px;
  }
  .bl_defaultPage_section_ttl_main {
    font-size: 22px;
    padding-top: 6px;
  }
  .bl_defaultPage_section_txt {
    font-size: 14px;
    font-weight: 300;
    padding-top: 14px;
  }
  .bl_404Page .bl_overviewSec {
    padding-bottom: 40px;
  }
  .bl_404Page .bl_overviewSec_desc {
    text-align: center;
  }
  .bl_presidentMessage_cont_message {
    text-align: start;
  }
}

@media screen and (min-width: 769px) {
  .hp_pc_none {
    display: none;
  }
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  .bl_header {
    height: 70px;
  }
  .bl_header_left {
    width: calc(100% - 75px);
    padding-left: 25px;
  }
  .bl_header_logo,
  .bl_header_logo_img {
    height: 20px;
  }
  .bl_header_right {
    display: none;
  }
  .bl_header_hmbgBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bl_postPage_breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 959px) {
  .bl_header {
    height: 70px;
  }
  .bl_header_left {
    width: calc(100% - 75px);
    padding-left: 25px;
  }
  .bl_header_logo,
  .bl_header_logo_img {
    height: 20px;
  }
  .bl_header_right {
    display: none;
  }
  .bl_header_hmbgBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bl_postPage_breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .bl_header_left {
    min-width: 28vw;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .bl_header_right {
    padding-right: 26px;
    padding-left: 26px;
  }
  .bl_header_nav_list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .bl_header_nav_list.min {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
  }
}


/* 追加 */
.bl_company_map_iframe iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.bl_3lineSec_subTtl {
  font-weight: 500;
}

.bl_aboutPage_cont_heading_sub {
  font-weight: 500;
}
.bl_defaultPage_section_ttl_sub,
.bl_contactHeading_sub {
  font-weight: 500;
}

textarea {
  resize: vertical;
}

.bl_3lineSec_icon {
  padding-bottom: 30px;
}

.bl_3lineSec_icon .bl_img_wrapper {
  padding-top: 56%;
}


@media screen and (max-width: 768px) {
  .bl_3lineSec_icon .bl_img_wrapper {
    padding-top: 73.8461%;
  }
}
	

    .bl_post_flex{
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
@media screen and (max-width: 1024px) {
    .bl_post_flex{
        max-width: 1100px;
        margin: 0 auto;
        display: block;
    }
}

    .bl_post{
		max-width:670px;

    }
    .bl_post_side{
        padding-top: 100px;
        max-width: 280px;

}
@media screen and (max-width: 1024px) {
    .bl_post_side{
		margin:10% auto;
        padding-top: 10%;
        max-width: 100%;
		width:100%;
		box-sizing:border-box;
		padding: 0 20px;
    }
}


.popular__thumbnail-img{
width: 100%;
    float: none;
    aspect-ratio: 2 / 1.3;
    height: 100%;
    object-fit: cover;
}
.popular-posts h2 p {
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1.5;
  /* color: #9990c5; */
  position: relative;
  padding-bottom: 1px;
}
.popular-posts h2 p:before {
  content: '';
  height: 1.3em;
  width: 8px;
  background-color: #9990c5;
  position: absolute;
  left: 0;
  top: 4px;
}
	.popular-posts h2 span{
display:block;
		width:100%;
		height:1px;
background:#9990c5;
		margin:10px auto;
	}
	
	.popular__ttl{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; /* 2行分の高さを設定 (1行分の高さ x 2) */
    line-height: 1.5em; /* 行の高さを設定 */
	margin-top:10px;
		margin-bottom:10px;
	}
	
	.popular__categories{
width: fit-content;
    padding: 4px 20px;
    color: #fff;
    background: #9990c5;
    display: block;
    padding-top: 3px;
    /* margin: auto; */
		font-size:12px;
    margin-top: 5px;
    margin-bottom: 5px;
	}
.popular__time{
	font-size:12px;
}
@media screen and (max-width: 1024px) {
.popular__time{
	font-size:11px;
}
}
@media screen and (max-width: 1024px) {
	.popular__categories{
		padding: 2px 10px;
		font-size:11px;
	}
}
.popular__item{
	position:relative;
		margin:20px auto;
}
	.popular-posts li:nth-child(1)::before{
		content:"";
		display:block;
		width:27px;
		height:32px;
		background:url('../images/pp1.png') no-repeat;
		position:absolute;
    z-index:2;
		top:0;
		left:10px;
	}
	.popular-posts li:nth-child(2)::before{
		content:"";
		display:block;
		width:27px;
		height:32px;
		background:url('../images/pp2.png') no-repeat;
		position:absolute;
    z-index:2;
		top:0;
		left:10px;
	}
	.popular-posts li:nth-child(3)::before{
		content:"";
		display:block;
		width:27px;
		height:32px;
		background:url('../images/pp3.png') no-repeat;
		position:absolute;
    z-index:2;
		top:0;
		left:10px;
	}
	.popular-posts li:nth-child(4)::before{
		content:"";
		display:block;
		width:27px;
		height:32px;
		background:url('../images/pp4.png') no-repeat;
		position:absolute;
    z-index:2;
		top:0;
		left:10px;
	}
	.popular-posts li:nth-child(5)::before{
		content:"";
		display:block;
		width:27px;
		height:32px;
		background:url('../images/pp5.png') no-repeat;
		position:absolute;
    z-index:2;
		top:0;
		left:10px;
	}
@media screen and (max-width: 1024px) {
	
	.bl_post_side ul{
	display: flex;
  flex-wrap: wrap;
	}
	.bl_post_side li{
			  flex: 1 0 48%; /* デフォルトでは各リスト項目を2列に表示 */
  box-sizing: border-box;
		margin:0 1%;
		margin-top:6%;
	}
	
	.popular-posts li:nth-child(1)::before{
    background-size:cover;
    width:25px;
    height: 30px;
    aspect-ratio: 27 / 32 !important;
	}
	.popular-posts li:nth-child(2)::before,
	.popular-posts li:nth-child(3)::before,
	.popular-posts li:nth-child(4)::before,
	.popular-posts li:nth-child(5)::before{
		background-size:cover;
    width: 20px;
    height: 24px;
    aspect-ratio: 27 / 32 !important;
	}
	.popular-posts li:first-child{
	  flex: 1 0 100%; /* デフォルトでは各リスト項目を2列に表示 */
  box-sizing: border-box;
		}

}
.popular-posts li:hover{
	opacity:1;
}

.bl_post_side{
	margin-right:20px;
}

@media screen and (max-width: 1024px) {
    .bl_post_side{
    display: block;   
		margin-right:0px;
    }
}


.bl_openAnime{
	display:none;
}

.bl_post_author {
  padding: 40px;
  border: 1px solid #9991C5;
  display: flex;
  column-gap: 40px;
  margin-top: 60px;
  
}
.bl_post_author_left {
  
}
.bl_post_author_img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #9991C5;
  overflow: hidden;
}
.bl_post_author_right {
}
.bl_post_author_txt {
  
}
.bl_post_author_name {
  font-size: 16px;
  font-weight: 600;
}
.bl_post_author_position {
  font-size: 12px;
  font-weight: 300;
  padding-top: 6px;
}
.bl_post_author_desc {
  font-size: 13px;
  font-weight: 300;
  padding-top: 15px;
}

@media screen and (max-width: 1024px) {
  .bl_post_author {
    flex-wrap: wrap;
    align-items: center;
    padding: 24px;
    column-gap: 20px;
  }
  .bl_post_author_img {
    width: 60px;
    height: 60px;
  }
}

    .bl_postPage .fix_cv_btn {
      position: fixed;
      z-index: 100;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.8);
      width: 100%;
      padding: 20px 0;
      border-radius: 35px 35px 0 0;
      backdrop-filter: blur(2px);
    }

    .bl_postPage .bl_cv_btn {
      display: flex;
      font-size: 18px;
      height: 58px;
      border-radius: 35px;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 500;
      position: relative;
      background: linear-gradient(to right, #9c91c9, #e2b1d8);
      width: 80%;
      margin: 0 auto;
    }
	@media screen and (min-width:768px) {
		.bl_postPage .fix_cv_btn {
			display: none;
		}
	}

/* 投稿ボタン用 追加css */

.bl_post_cont .cv-button {
    max-width: 300px;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 20px auto;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to bottom, #3c9f46, #2b6a3f);
    height: 60px;
	 display: flex;
    align-items: center;
    justify-content: center;
	 color:#fff;
	border-radius: 10px;
	font-weight:bold;
}
	@media screen and (max-width:768px) {
.bl_post_cont .cv-button {
		font-size:18px;
		}
}

.bl_post_cont .cv-button:after {
content: '';
    display: block;
    background: url(../images/arrow.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 10%;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 17px;
    height: 13px;
}
/* 投稿ボタン用 追加css */
