@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #e7161a;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Shippori Mincho", serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en:"Montserrat", sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/bg.jpg);
  background-repeat: repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  background: rgba(0,0,0,0.8);
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  height:auto;
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

  .hdr_contact_btns{
    display: none;
  }
  .hdr_logo img{
    width: 70px;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 48px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btns{
    display: flex;
    align-items: center;
    margin-left: 29px;
  }
  .hdr_contact_btn{
    display: block;
    width: 180px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 6px;
    transition: all .2s;
  }
  .hdr_contact_btn:hover{
    transform: scale(1.02);
    color: #fff;
  }
  .hdr_contact_btn + .hdr_contact_btn{
    margin-left: 9px;
  }
  .hdr_contact_btn.saiyo{
    background: #3db89f;
  }
  .hdr_contact_btn.contact{
    background: #8798d4;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.025em;
  }
  .hdr_contact_btn.saiyo p:before{
    content: "";
    display: block;
    width: 18px;
    aspect-ratio:1;
    background-image: url(https://potential-inc.jp/system_panel/uploads/images/user-pen.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
  }
  .hdr_contact_btn.contact p:before{
    content: "";
    display: block;
    width: 17px;
    aspect-ratio:17 / 13;
    background-image: url(https://potential-inc.jp/system_panel/uploads/images/envelope.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }


  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding: 13px 16px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

}
@media (min-width:1200px){

  .header{
    --logo-height: 48px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

}
@media (min-width:1536px){
  .header{
    padding: 13px 44px 13px 28px;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 65px - 54px);
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

.mv_txt_box{
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  text-shadow: 0.375px 0.927px 9.5px rgba(4, 0, 0, 1);
}
.mv_txt_1{
  font-size: 50px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
}
.mv_txt_1 p{
  letter-spacing: 0;
}
.mv_txt_2{
  font-size: 16px;
  font-weight: 700;
}
.mv_txt_2 p{
  letter-spacing: 0.05em;
}


/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 600px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 60px;
  }
  .mv_txt_2{
    font-size: 20px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 80px;
  }
  .mv_txt_2{
    font-size: 22px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 900px;
    padding-top: 100vh;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 100px;
  }
  .mv_txt_2{
    font-size:30px;
  }
}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}



/*******************************
*　フッター
********************************/

.footer{
  margin-top: 50px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #8798d4;
  color: #fff;
  padding: 5px;
}
.ftr_copy a:hover{
  color: #fff;
  opacity: 0.5;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #8798d4;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #8798d4;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_box_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_img:before{
  padding-top: 650px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}
.ftr_contact_box1 .content_desc{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
  color: #fff;
}
.ftr_contact_box2_item_tt{
  position: relative; 
  text-align: center;
}
.ftr_contact_box2_item_tt:after{

}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/tel.png);

}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;

  background-image: url(https://potential-inc.jp/system_panel/uploads/images/mail.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_link{
  margin-top: 10px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 210px;
  background: #8798d4;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 23.5px;
  border: 1px solid transparent;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1:hover{
  background: #fff;
  color: var(--main-color);
  border: 1px solid #8798d4;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  background: #000000;
  padding-top: 86px;
  padding-bottom: 77px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.footer a:hover{
  color: #8798d4  
}

.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 26px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  letter-spacing: 0.05em;
  color: #fff;
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_left{
  position: relative;
  padding-right: 9px;
  margin-right: 19px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }
  .ftr_add_item{
    width: 205px;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_box1 .tt2_en{
    font-size: 60px;
  }
  .ftr_contact_img:before{
    padding-top: 600px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 50px 0 71px;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }

  .ftr_1{

  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 44.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_1_box2 .ftr_links {
    display: flex;
    flex-wrap: wrap;
    gap:0!important;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_link {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 8px;
    color: #fff;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(https://potential-inc.jp/system_panel/uploads/images/rright.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 140px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 360px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 36.23%;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 80px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top:0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1{

  }

  .ftr_link {
    width: 33.333%;
  }
  .ftr_1_box1{
    width: 33.23%;
  }
  .ftr_1_box2{
    width: 55.39%;
  }

  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1200px){
  .ftr_1_box2{
    width: 55.39%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 123px;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    padding-inline: 30px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}
@media (min-width:1366px){
  .ftr_contact_box2_ite_tel1{
    font-size: 40px;
  }
  .link_1{
    display: block;
    width: 100%;
    max-width: 240px;
  }
}

/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid transparent;
  background: #8798d4;
  border-radius: 30px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio:19 / 18;
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/aa.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #3db89f;;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    max-width: 300px;
    width: 100%;
    font-size: 18px;
    padding: 20px 30px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 28px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .pg_works .webgene-pagination{
    margin-top: 100px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  padding-top: 62px;
}
.pg_home .section.sec2{
  position: relative;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{
  background: #8798d4;
  position: relative;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 57.29%;
  height: 77.52%;
  background: #7381b4;
  position: absolute;
  bottom: 0;
  right: 0;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec5:after{
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 62px;
    padding-bottom: 93px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 88px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding: 105px 0 100px;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
    padding-bottom: 97px;
  }
  .pg_home .section.sec5:after{
    height: 400px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_home .section.sec1{
    padding-top: 62px;
    padding-bottom: 93px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 88px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec4{
    padding: 105px 0 134px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec5:after{
    height: 400px;
  }
  .pg_home .section.sec6{
    padding-top: 130px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){
  .pg_home .section.sec5:after{
    height: 562px;
  }

}
@media (min-width:1720px){


}

/*メイン*/
/*sec1*/
.flowing_letters{
  font-size: clamp(3.125rem, 0.75rem + 11.88vw, 15rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.flowing_letters p{
  letter-spacing: 0;
}

.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}
.home_sec1_box1{
  width: 50%;
  order: 2;
}
.home_sec1_box1_inner{

}
.home_sec1_box1_type1{

}
.home_sec1_box1_type1_img:before{

}
.home_sec1_box1_type2{
  margin-top: -30px;
  position: relative;
  right: -65px;
}
.home_sec1_box1_type2_img:before{

}
.home_sec1_box2{
  width: 100%;
  order: 1;
  margin-bottom: 60px;;
}
.home_sec1_box2_tt{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec1_box2_tt p{
  border-bottom: 2px solid #000000; 
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0.05em;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}
.home_sec1_box2 .read_more{

}
.home_sec1_box3{
  width: 36%;
  order: 3;
}
.home_sec1_box3_inner{

}
.home_sec1_box3_img:before{
  padding-top: 120%;
}

/*sec2*/
.home_sec2_img{

}
.home_sec2_img:before{
  padding-top: 2250px;
}
.home_sec2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.home_sec2_wrap_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_sec2_wrap{

}
.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:40px 0;
}
.home_sec2_item{
  width: 100%;
  position: relative;
}
.home_sec2_item.sub:before{
  content: "";
  display: block;
  width: 105%;
  height: 105%;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  background: #434343;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_sec2_item.sub:after{
  content: "";
  display: block;
  width: 8.8%;
  aspect-ratio:1;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  background: #8798d4;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: all .2s;
}
.home_sec2_item_img{
  overflow: hidden;
  transition: all .2s;
}
.home_sec2_item a{
  display: block;
  overflow: hidden;
}
.home_sec2_item a:hover .home_sec2_item_img{
  transform: scale(1.02);
}
.home_sec2_item a:hover{
  color: #fff;
}
/*.home_sec2_item a:hover .home_sec2_item_h3 p{
  letter-spacing: 0.2em;
}
.home_sec2_item a:hover .home_sec2_item_en{
  letter-spacing: 0.12em;
}*/
.home_sec2_item.sub:hover:after{
  background: #3db89f;
}
.home_sec2_item_img img{
  transition: all .2s; 
}
.home_sec2_item.sub .home_sec2_item_content{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding: 30px 28px;
}
.home_sec2_item_outer_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.home_sec2_item .content_desc{
  color: #fff;
  margin-top: 20px;
}
.home_sec2_item .read_more{

}

.home_sec2_item_img:before{
  padding-top: 88.89%; 
}
.home_sec2_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.74) 86%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_sec2_item_content{

}
.home_sec2_item_content_inbox{
  margin-top: 42%;
}
.home_sec2_item_en{
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
  position: absolute;
  top: 30px;
  left: 28px;
  transition: all .2s;
}
.home_sec2_item_h3{
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.home_sec2_item_h3 p{
  transition: all .2s;
}
.home_sec2_item.sub .content_desc{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.142em;
  margin-top: 16px;
}

/*sec3*/
.home_sec3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #000000;
  padding: 40px 16px;
}
.home_sec3_box1{
  width: 100%;
  margin-top: 30px;
  order: 2;
}
.home_sec3_box1_en{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #8798d4;
  margin-bottom: 20px;
}
.home_sec3_box1_tt{
  font-size: 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec3_box1_tt p{
  letter-spacing: 0.025em;
  background: #fff;
  padding: 2px 12px;
}
.home_sec3_box1 .content_desc{
  color: #fff;
  margin-top:20px;
}
.home_sec3_box1 .read_more{

}
.home_sec3_box2{
  width: 100%;
  position: relative;
  order: 1;
  text-align: center;
}
.home_sec3_box2_img{

}
.home_sec3_box2_tt{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.58em;
  font-family: "Shippori Mincho", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  position: absolute;
  top: -5%;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home_sec3_box2_tt p{
  letter-spacing: 0.025em;
}

/*sec4*/
.recruit_lg_en{
  font-size: clamp(3.125rem, 0.625rem + 12.5vw, 12.5rem);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #8798d4;
  /*  filter:
      drop-shadow(2px 0 0 #fff)
      drop-shadow(-2px 0 0 #fff)
      drop-shadow(0 2px 0 #fff)
      drop-shadow(0 -2px 0 #fff)
      drop-shadow(2px 2px 0 #fff)
      drop-shadow(-2px 2px 0 #fff)
      drop-shadow(2px -2px 0 #fff)
      drop-shadow(-2px -2px 0 #fff);*/
  text-shadow:
    1px  0   0 #fff,
    -1px  0   0 #fff,
    0    1px 0 #fff,
    0   -1px 0 #fff,
    1px  1px 0 #fff,
    -1px  1px 0 #fff,
    1px -1px 0 #fff,
    -1px -1px 0 #fff;
  position: relative;
  z-index: 1;
}
.home_sec1_wrap.recruit{
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.home_sec1_wrap.recruit .home_sec1_box1{
  order: 3;
}
.home_sec1_wrap.recruit .home_sec1_box2{

}
.home_sec1_wrap.recruit .home_sec1_box3{
  order: 1;
}
.home_sec1_box2_tt.gra{
  color: #fff;
}
.home_sec1_box2_tt.gra p{
  border-bottom: none;
  background: linear-gradient(270deg,rgba(18, 202, 255, 1) 0%, rgba(71, 98, 255, 1) 86%);
  padding: 0px 20px;
}
.home_sec1_wrap.recruit .home_sec1_box2_tt p:nth-child(n+2) {
  margin-top: 11px;
}
.home_sec1_wrap.recruit .content_desc{
  color: #fff;
}
.home_sec1_wrap.recruit .home_sec1_box1_type1_img:before{
  padding-top: 96.66%;
}
.home_sec1_wrap.recruit .home_sec1_box3_img:before{
  padding-top: 100%;
}
.home_sec1_wrap.recruit .read_more.wh a{
  background: #fff;
  color: #181818;
  border: 1px solid transparent;
}
.home_sec1_wrap.recruit .read_more.wh a:after{
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/arr_bl.png);
}
.home_sec1_wrap.recruit .read_more.wh a:hover{
  background: #3db89f;
  color: #fff
}
.home_sec1_wrap.recruit .read_more.wh a:hover:after{
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/aa.png);
}

/*sec5*/
.lg_tt{
  position: relative;
  text-align: center;
}
.lg_tt_en{
  font-size: clamp(4.688rem, 1.875rem + 14.06vw, 18.75rem);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.lg_tt_ja{
  text-align: center;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.works_slide{
  margin-top: -10px;
  overflow: visible;
  position: relative;
}
.works_slide .webgene-blog{

}
.works_slide .webgene-item{

}
.works_slide .swiper-slide{
  width: 250px;
}
.works_slide .webgene-item a{
  display: block;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);
}
.works_slide .webgene-item .box1{

}
.works_slide .webgene-item .img:before{
  padding-top: 70%;
}
.works_slide .webgene-item .box2{
  background: #fff;
  padding: 16px;
}
.works_slide .webgene-item .box2 .meta{
  display: flex;
  align-items: center;
}
.works_slide .webgene-item .box2 .date{
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 10px;
}
.works_slide .webgene-item .box2 .category{
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #000000;
  padding: 2px 12px;
}
.works_slide .webgene-item .box2 .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 18px;
}

.slide-prev,
.slide-next{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 40px;
  aspect-ratio:1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.slide-prev:before,
.slide-next:before{

}
.slide-prev{
  left: calc(50% - 160px);
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/prev.png);
}
.slide-next{
  right: calc(50% - 160px);
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/next.png);
}

/*sec6*/
.home_sec6_head{
  margin-bottom: 34px;
}
.news_tt{
  display: flex;
  align-items: baseline;
}
.news_tt .home_sec2_item_outer_en{
  line-height: 1;
  margin-right: 20px;
  color: #8798d4;
}
.t2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec6_head .read_more{

}
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;

  position: relative;
}


.news_list .webgene-item .box1{
  width: 100%;
}
.news_list .webgene-item .img:before{
  padding-top: 66.666%;
}
.news_list .webgene-item .box2{
  width: 100%;
}
.news_list .webgene-item .meta{
  margin-top: 10px;;
}
.news_list .webgene-item .date{
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 10px;
}
.news_list .webgene-item .category{
  text-align: center;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 14px;
  padding: 2px 19px;
  margin-top: 10px;
}
.news_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top:10px;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .news_list .txt_ellipsis_line1{
    -webkit-line-clamp: 2;
  }

  .works_slide .webgene-item .box2 .meta{
    flex-wrap: wrap;
  }
  .works_slide .webgene-item .box2 .date{
    width: 100%;
  }
  .works_slide .webgene-item .box2 .category,
  .works_slide .webgene-item .box2 .title{
    margin-top: 10px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -50px;
  }
  .home_sec1_box1{

  }
  .home_sec1_box1_inner{

  }
  .home_sec1_box1_type1{

  }
  .home_sec1_box1_type1_img:before{

  }
  .home_sec1_box1_type2{
    margin-top: -135px;
    position: relative;
    right: -100px;
  }
  .home_sec1_box1_type2_img:before{

  }
  .home_sec1_box2{

  }
  .home_sec1_box2_tt{
    font-size: 30px;
  }
  .home_sec1_box2_tt p{

  }
  .content_desc{

  }
  .content_desc p{

  }
  .home_sec1_box2 .content_desc{
    margin-top: 45px;
  }
  .home_sec1_box2 .read_more{

  }
  .home_sec1_box3{

  }
  .home_sec1_box3_inner{

  }
  .home_sec1_box3_img:before{

  }

  /*sec2*/
  .home_sec2_img{

  }
  .home_sec2_img:before{
    padding-top: 1600px;
  }
  .home_sec2_wrap_outer{

  }
  .home_sec2_wrap{

  }
  .home_sec2_items{
    gap:85px;
  }
  .home_sec2_item{
    width: calc(50% - 56.66px);
  }
  .home_sec2_item_content{

  }
  .home_sec2_item_outer_en{
    font-size: 60px;
  }
  .home_sec2_item .content_desc{
    margin-top: 38px;
  }
  .home_sec2_item .read_more{

  }

  .home_sec2_item_img:before{
    padding-top: 400px;
  }
  .home_sec2_item_content{

  }
  .home_sec2_item_en{

  }
  .home_sec2_item_h3{
    font-size: 23px;
    padding-bottom: 20px;
  }
  .home_sec2_item.sub .content_desc{
    margin-top: 16px;
  }

  /*sec3*/
  .home_sec3_wrap{
    padding: 40px;
  }
  .home_sec3_box1{
    margin-top: 40px;
  }
  .home_sec3_box1_en{
    font-size: 22px;
    margin-bottom: 35px;
  }
  .home_sec3_box1_tt{
    font-size: 28px;
  }
  .home_sec3_box1 .content_desc{
    margin-top: 48px;
  }
  .home_sec3_box1 .read_more{
    margin-top: 58px;
  }
  .home_sec3_box2{

  }
  .home_sec3_box2_img{

  }
  .home_sec3_box2_tt{
    font-size:36px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }

  /*sec4*/
  .home_sec1_wrap.recruit{
    margin-top: 0;
    margin-top: 50px;
  }
  .home_sec1_wrap.recruit .home_sec1_box2_tt p:nth-child(n+2) {
    margin-top: 11px;
  }
  .home_sec1_wrap.recruit .home_sec1_box1{

  }
  .home_sec1_wrap.recruit .home_sec1_box2{

  }
  .home_sec1_wrap.recruit .home_sec1_box3{

  }
  .home_sec1_box2_tt.gra{

  }
  .home_sec1_box2_tt.gra p{
    border-bottom: none;
    background: linear-gradient(270deg,rgba(18, 202, 255, 1) 0%, rgba(71, 98, 255, 1) 86%);
    padding: 0px 20px;
  }
  .home_sec1_wrap.recruit .read_more{
    justify-content: flex-start;
  }
  .home_sec1_wrap.recruit .read_more a{
    max-width: 240px;
  }

  /*sec5*/
  .lg_tt{

  }
  .lg_tt_en{

  }
  .lg_tt_ja{
    font-size: 36px;
  }
  .works_slide{
    margin-top: -20px;
  }
  .works_slide .webgene-blog{

  }
  .works_slide .webgene-item{

  }
  .works_slide .swiper-slide{
    width: 350px;
  }
  .works_slide .webgene-item a{

  }
  .works_slide .webgene-item .box1{

  }
  .works_slide .webgene-item .img:before{

  }
  .works_slide .webgene-item .box2{
    padding: 34px 31px 20px;
  }
  .works_slide .webgene-item .box2 .category{

  }
  .works_slide .webgene-item .box2 .date{
    font-size: 20px;
    margin-right: 16px;
  }
  .works_slide .webgene-item .box2 .title{
    font-size: 20px;
  }
  .pg_home .section.sec4 .read_more{
    margin-top: 57px;
  }

  .slide-prev,
  .slide-next{
    width: 66px;
  }
  .slide-prev{
    left: calc(50% - 31%);
  }
  .slide-next{
    right: calc(50% - 31%);
  }
  .pg_home .section.sec5 .read_more{
    margin-top: 55px;
  }

  /*sec6*/
  .home_sec6_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news_tt{

  }
  .news_tt .home_sec2_item_outer_en{

  }
  .t2{
    font-size: 24px;
  }
  .home_sec6_head .read_more{
    margin-top: 0;
  }
  .home_sec6_head .read_more a{
    min-width: 300px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .box1{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .news_list .webgene-item .date{
    font-size: 15px;
  }
  .news_list .webgene-item .category{
    margin-top: 0;
  }
  .news_list .webgene-item .title{

    font-size: 17px;
    margin-top: 20px;
  }
}
@media (min-width:1024px){

  /*sec6*/
  .home_sec6_head{

  }
  .news_tt{

  }
  .news_tt .home_sec2_item_outer_en{

  }
  .t2{

  }
  .home_sec6_head .read_more{

  }
  .news_list{

  }
  .news_list .webgene-blog{
    display: block;
    margin-inline:0;
  }
  .news_list .webgene-item{
    width: 100%;
    padding-inline:0;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item a{
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #000000;
  }
  .news_list .webgene-item a:after {
    content: "";
    position: absolute;
    width: 19px;
    aspect-ratio: 19 / 18;
    background-image: url(https://potential-inc.jp/system_panel/uploads/images/arr_bl.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.2s all;
  }
  .news_list .webgene-item:last-child a{
    border-bottom: 1px solid #000000;
  }
  .news_list .webgene-item .box1{
    width: 11.84%;
  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{
    width: 84.53%;
    display: flex;
    align-items: center;
  }
  .news_list .webgene-item .meta{
    margin-top: 0;
  }
  .news_list .webgene-item .date{
    font-size: 20px;
    width: 170px;
  }
  .news_list .webgene-item .category{
    min-width: 100px;
    padding-inline:0;
  }
  .news_list .webgene-item .title{
    font-size: 20px;
    width: calc(100% - 170px - 100px);
    padding: 0 56px;
    margin-top: 0;
  }

  .slide-prev{
    left: calc(50% - 23%);
  }
  .slide-next{
    right: calc(50% - 23%);
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -50px;
  }
  .home_sec1_box1{
    width: 26.31%;
    order: 1;

  }
  .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec1_box1_type1{

  }
  .home_sec1_box1_type1_img:before{

  }
  .home_sec1_box1_type2{
    margin-top: -135px;
    position: relative;
    right: -100px;
  }
  .home_sec1_box1_type2_img:before{

  }
  .home_sec1_box2{
    width: 45.72%;
    padding: 0 3% 0 10%;
    padding-top: 21px;
    order: 2;
    margin-bottom: 0;
  }
  .home_sec1_box2_tt{
    font-size: 46px;
  }
  .home_sec1_box2_tt p{

  }
  .home_sec1_box2_tt p:nth-child(n+2){
    margin-top: 11px;
  }
  .content_desc{

  }
  .content_desc p{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{
    margin-top: 50px;
  }
  .home_sec1_box3{
    width: 19.73%;
    padding-top: 123px;
    order: 3;
  }
  .home_sec1_box3_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_sec1_box3_img:before{

  }

  /*sec2*/
  .home_sec2_img{

  }
  .home_sec2_img:before{
    padding-top: 1164px;
  }
  .home_sec2_wrap_outer{

  }
  .home_sec2_wrap{

  }
  .home_sec2_items{
    gap:85px;
  }
  .home_sec2_item{
    width: calc(33.333% - 56.66px);
  }
  .home_sec2_item.sub .home_sec2_item_content{
    margin-top: 0;
  }
  .home_sec2_item_content{
    margin-top: -10px;
  }
  .home_sec2_item_outer_en{
    font-size: 80px;
  }
  .home_sec2_item .content_desc{

  }
  .home_sec2_item .read_more{
    margin-top: 46px;
  }

  .home_sec2_item_img:before{

  }
  .home_sec2_item_content{

  }
  .home_sec2_item_en{

  }
  .home_sec2_item_h3{
    font-size: 28px;
  }
  .home_sec2_item_content .content_desc{

  }
  .home_sec2_item_content_inbox{
    margin-top: 45%;
  }

  /*sec3*/
  .home_sec3_wrap{
    padding: 80px;
  }
  .home_sec3_box1{
    width: 37.13%;
    order: 1;
    margin-top: 0;
  }
  .home_sec3_box1_en{
    font-size: 30px;
  }
  .home_sec3_box1_tt{
    font-size: 24px;
  }
  .home_sec3_box1 .content_desc{

  }
  .home_sec3_box1 .read_more{

  }
  .home_sec3_box2{
    text-align: left;
    width:59.19%;
    margin-top: 28px;
    order: 2;
  }
  .home_sec3_box2_img{

  }
  .home_sec3_box2_tt{
    font-size: 40px;
  }

  /*sec4*/
  .home_sec1_wrap.recruit{

  }
  .home_sec1_wrap.recruit .home_sec1_box1{
    order: 3;
    margin-top: -218px;
  }
  .home_sec1_wrap.recruit .home_sec1_box2{
    order: 2;
    padding: 0 6% 0 2.5%;
  }
  .home_sec1_wrap.recruit .home_sec1_box3{
    order: 1;
    padding-top: 0;
  }
  .home_sec1_wrap.recruit .home_sec1_box1_inner{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }
  .home_sec1_wrap.recruit .home_sec1_box3_inner{
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .home_sec1_wrap.recruit .home_sec1_box1_type2{
    width: 95.94%;
    left: -87px;
    right: 0;
    margin-top: -183px;
  }
  .home_sec1_wrap.recruit .read_more{
    justify-content: space-between;
  }
  .home_sec1_box2_tt.gra{
    font-size: 54px;
  }

  /*sec5*/
  .lg_tt{

  }
  .lg_tt_en{

  }
  .lg_tt_ja{
    font-size: 48px;
  }
  .works_slide{
    margin-top: -40px;
  }
  .works_slide .webgene-blog{

  }
  .works_slide .webgene-item{

  }
  .works_slide .swiper-slide{
    width: 26.04%;
  }
  .works_slide .webgene-item a{

  }
  .works_slide .webgene-item .box1{

  }
  .works_slide .webgene-item .img:before{

  }
  .works_slide .webgene-item .box2{

  }
  .works_slide .webgene-item .box2 .category{

  }
  .works_slide .webgene-item .box2 .title{

  }

  .slide-prev{
    left: calc(50% - 43%);
  }
  .slide-next{
    right: calc(50% - 43%);
  }

  /*sec6*/
  .home_sec6_head{

  }
  .news_tt{

  }
  .news_tt .home_sec2_item_outer_en{

  }
  .t2{

  }
  .home_sec6_head .read_more{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .box1{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1470px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -100px;
  }
  .home_sec1_box2_tt{
    font-size: 50px;
  }

  /*sec2*/
  .home_sec2_item_content_inbox{
    margin-top: 40%;
  }
  .home_sec2_item_h3{
    font-size: 36px;
  }

  /*sec3*/
  .home_sec3_box1_tt{
    font-size: 30px;
  }
  .home_sec3_box2_tt{
    font-size: 56px;
  }

  /*sec5*/
  .works_slide{
    margin-top: -62px;
  }

  .slide-prev{
    left: calc(50% - 45%);
  }
  .slide-next{
    right: calc(50% - 45%);
  }
}
@media (min-width:1720px){
  /*sec1*/
  .home_sec1_box2_tt{
    font-size: 60px;
  }

  /*sec2*/
  .home_sec2_item_content_inbox{
    margin-top: 45%;
  }

  /*sec3*/
  .home_sec3_box1_tt{
    font-size: 36px;
  }

  /*sec4*/
  .home_sec1_wrap.recruit .home_sec1_box2{
    order: 2;
    padding: 0 10% 0 2.5%;
  }

  .slide-prev{
    left: calc(50% - 43%);
  }
  .slide-next{
    right: calc(50% - 43%);
  }
}
@media (max-width:1199px){
  .home_sec1_wrap.recruit .home_sec1_box1_type2{
    right: 75px;
  }
}



/*******************************
*　about
********************************/

/* セクション設定 */
.pg_aboutus{

}
.pg_aboutus .section.sec1{

}
.pg_aboutus .section.sec2{
  padding-top: 0;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_aboutus{

  }
  .pg_aboutus .section.sec1{

  }
  .pg_aboutus .section.sec2{
    padding-top: 92px;
  }
  .pg_aboutus .section.sec3{
    padding-top: 85px;
  }
}    
@media (min-width:1024px){


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_aboutus{

  }
  .pg_aboutus .section.sec1{

  }
  .pg_aboutus .section.sec2{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */
/*sec1*/
.page_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pg_aboutus .page_hdr{
  margin-top: 0;
}
.page_hdr_box1{
  width: 100%;
  order: 3;
  margin-top:30px;
}
.page_hdr_box1 .content_desc{

}
.page_hdr_box2{
  width: 100%;
  order: 2;
  margin-top: 30px;;
}
.page_hdr_box2_img:before{
  padding-top: 138.94%;
}
.page_hdr_box3{
  width: 100%;
  order: 1;
}
.tate_tt{
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
.tate_tt p{
  display: inline-block;
  letter-spacing: 0;
  border-bottom: 1px solid #000;
}

/*sec2*/
.about_visual_box{
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.about_visual_box1{
  width: 69.29%;
}
.about_visual_box1_img:before{
  padding-top: 64.22%;
}
.about_visual_box2{
  width: 25.35%; 
}
.about_visual_box2_img:before{
  padding-top: 151.11%;
}

/*.sec3*/
.about_sec3_wrap{

}
.about_sec3_head{

}
.about_sec3_head_tt{
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.2em;
  letter-spacing: 0.075em;
  border-bottom: 3px solid #000;
}
.about_sec3_head .content_desc{
  margin-top: 23px;
}
.about_sec3_head .content_desc p{
  letter-spacing: 0.075em;
}

.about_sec3_items{
  margin-top: 40px;
}
.about_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px dotted #000;
}
.about_sec3_item:first-child{
  padding-top: 0;
}
/*.about_sec3_item:nth-child(n+2){
  margin-top: 40px;
}*/
.about_sec3_item_box1{
  width: 100%;
}
.about_sec3_item_box1_img:before{
  padding-top: 121.73%;
}
.about_sec3_item_box2{
  width: 100%;
  margin-top:20px;
}
.about_sec3_item_box2_num{
  width: 75px;
}
.about_sec3_item_box2_tt{
  font-size: 22px; 
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.about_sec3_item_box2_tt_sub{
  font-size: 18px; 
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.about_sec3_item_box2 .content_desc{
  margin-top: 17px;
}
@media (max-width:767px){
  .tate_tt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width:768px){
  /*sec1*/
  .page_hdr{

  }
  .pg_aboutus .page_hdr{
    margin-top: -40px;
  }
  .page_hdr_box1{
    margin-top: 40px;
  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_box2{
    width: 80%;
    order: 1;
    margin-top: 0;
  }
  .page_hdr_box2_img:before{

  }
  .page_hdr_box3{
    width: 13.48%;
    order: 2;
  }
  .tate_tt{
    font-size: 40px;
    line-height: 1.1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
  }
  .tate_tt p{
    position: relative;
    margin-left: 0;
    border-bottom: none;
  }
  .tate_tt p:first-child{
    margin-left: 15px;
  }
  .tate_tt p:after{
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
  }

  /*sec2*/
  .about_visual_box{
    padding: 0 5.9% 0 1.5%;
  }
  .about_visual_box1{
    width: 69.29%;
  }
  .about_visual_box1_img:before{

  }
  .about_visual_box2{
    width: 25.35%; 
  }
  .about_visual_box2_img:before{

  }

  /*.sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_head{

  }
  .about_sec3_head_tt{
    font-size: 40px;
  }
  .about_sec3_head .content_desc{

  }

  .about_sec3_items{
    margin-top: 90px;
  }
  .about_sec3_item{
    padding: 80px 0 70px;
  }
  /*  .about_sec3_item:nth-child(n+2){
      margin-top:80px;
    }*/
  .about_sec3_item_box1{
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
  .about_sec3_item_box1_img:before{

  }
  .about_sec3_item_box2{
    margin-top: 30px;
  }
  .about_sec3_item_box2_num{
    width: auto;
  }
  .about_sec3_item_box2_tt{
    font-size: 36px; 
    margin-top: 31px;
  }
  .about_sec3_item_box2_tt_sub{
    font-size: 22px; 
    margin-top: 43px;
  }
  .about_sec3_item_box2 .content_desc{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .tate_tt p:first-child{
    margin-left: 60px;
  }

  /*sec3*/
  .about_sec3_items{

  }
  .about_sec3_item{

  }
  .about_sec3_item_box1{
    width: 30.26%;
  }
  .about_sec3_item_box1_img:before{

  }
  .about_sec3_item_box2{
    width: 57.23%;
    margin-top: 0;
  }
  .about_sec3_item_box2_num{

  }
  .about_sec3_item_box2_tt{
    font-size: 36px; 
  }
  .about_sec3_item_box2_tt_sub{
    font-size: 22px; 
  }
  .about_sec3_item_box2 .content_desc{

  }
}
@media (min-width:1200px){
  /*sec1*/
  .page_hdr{

  }
  .pg_aboutus .page_hdr{
    margin-top: -92px;
  }
  .page_hdr_box1{
    width: 40.13%;
    order: 1;
    padding-top: 129px;
    margin-top: 0;
  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_box2{
    width: 31.25%;
    order: 2;
    margin-left: -84px;
  }
  .page_hdr_box2_img:before{

  }
  .page_hdr_box3{
    width: 13.48%;
    order: 3;
  }
  .tate_tt{
    font-size: 60px;
  }
  .tate_tt p{

  }

  /*sec2*/
  .about_visual_box{

  }
  .about_visual_box1{

  }
  .about_visual_box1_img:before{

  }
  .about_visual_box2{

  }
  .about_visual_box2_img:before{

  }

  /*.sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_head{

  }
  .about_sec3_head_tt{
    font-size: 58px;
  }
  .about_sec3_head .content_desc{

  }

  .about_sec3_items{

  }
  .about_sec3_item{

  }
  .about_sec3_item_box1{
    width: 30.26%;
    margin-left: 0;
    margin-right: 0;
  }
  .about_sec3_item_box1_img:before{

  }
  .about_sec3_item_box2{
    width: 57.23%;
  }
  .about_sec3_item_box2_num{

  }
  .about_sec3_item_box2_tt{
    font-size: 40px; 
  }
  .about_sec3_item_box2_tt_sub{
    font-size: 24px; 
  }
  .about_sec3_item_box2 .content_desc{

  }
}
@media (min-width:1470px){
  .about_sec3_item_box2_tt{
    font-size: 48px; 
  }

}
@media (min-width:1720px){


}



/*******************************
*　service
********************************/

/* セクション設定 */
.pg_service{

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_service{

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .pg_service{

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */
/*カテゴリ*/
.service_cate{
  display: flex;
  flex-wrap: wrap;
  gap:15px 0;
  margin-top: -20px;
}
.service_cate_item{
  width: 100%;
  background: #fff;
  border: 1px solid #bfbfbf;

  font-size: 16px;
  font-weight: 500;
  text-align: left;
  position: relative;
}
.service_cate_item a{
  padding: 10px;
  display: block;
}
.service_cate_item a:after{
  content: "";
  display: block;
  width: 24px;
  aspect-ratio:1;
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/gf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: all .2s;
}
.service_cate_item a p{
  letter-spacing: 0.075em;
}
.service_cate_item a:hover{
  background: #3a3a3a;
  color: #fff;
}
.service_cate_item a:hover:after{
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/gf2.png);
}


/*sec2*/
.service_sec2_items{

}
.service_sec2_item{

}
.service_sec2_item:nth-child(n+2){
  margin-top: 50px;
}
.service_sec2_item_head{

}
.service_sec2_item_head_en{

}
.service_sec2_item_head_tt{
  position: relative;
}
.service_sec2_item_head_tt:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3a3a3a;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);

}
.service_sec2_item_head_h2{
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  background-image: url(https://potential-inc.jp/system_panel/uploads/images/bg.jpg);
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  padding-right: 31px;
}
.service_sec2_item_main{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}
.service_sec2_item_main_box1{
  width: 100%;
}
.service_sec2_item_main_box1_tt{
  font-size: 20px;
  font-weight: 500;
  line-height:1.57em; 
  margin-right: -10px;
}
.service_sec2_item_main_box1_tt p{
  letter-spacing: 0;
}
.service_sec2_item_main .content_desc{
  margin-top: 20px;
}
.service_sec2_item_main .content_desc p{
  letter-spacing: 0;
}
.service_sec2_item_main_box2{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px; 
}
.service_sec2_item_main_box2_img{
  width: 48.99%;
}
.service_sec2_item_main_box2_img:first-child{
  margin-top: 30px;
}
.service_sec2_item_main_box2_img:before{
  padding-top: 164.38%; 
}

.service_sec2_item_sub{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  position: relative;
  margin-top: 40px;
  padding-bottom: 30px;
}
.service_sec2_item_sub:after{
  content: "";
  display: block;
  width: 100vw;
  height: 1300px;
  background: #000000;
  position: absolute;
  bottom: 0;;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.service_sec2_item_sub_box{
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.service_sec2_item_sub_box_img:before{
  padding-top: 76.08%;
}
.service_sec2_item_sub_tt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 13px;
}
.service_sec2_item_sub .content_desc{
  line-height: 1.875em;
  margin-top: 26px;
}
.service_sec2_item_sub .content_desc p{
  letter-spacing: 0;
}
@media (max-width:767px){
  .service_sec2_item_head_en.sm{
    width: 160px;
  }
  .service_sec2_item_head_en.mid{
    width: 80%;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .service_cate{
    gap:15px;
    margin-top: -40px;
  }
  .service_cate_item{
    width: calc(33.333% - 12.5px);

  }
  .service_cate_item a{
    padding: 18px 15px;

  }
  .service_cate_item a:after{

  }

  /*sec2*/
  .service_sec2_items{

  }
  .service_sec2_item{

  }
  .service_sec2_item:nth-child(n+2){
    margin-top: 150px;
  }
  .service_sec2_item_head{

  }
  .service_sec2_item_head_en{

  }
  .service_sec2_item_head_tt{

  }
  .service_sec2_item_head_h2{
    font-size: 50px;
  }
  .service_sec2_item_main{
    margin-top: 65px;
  }
  .service_sec2_item_main_box1{
    padding-top: 10px;
  }
  .service_sec2_item_main_box1_tt{
    font-size: 32px;
  }
  .service_sec2_item_main .content_desc{
    margin-top: 61px;
  }
  .service_sec2_item_main_box2{
    margin-top: 40px; 
  }
  .service_sec2_item_main_box2_img{

  }
  .service_sec2_item_main_box2_img:first-child{
    margin-top: 70px;
  }
  .service_sec2_item_main_box2_img:before{

  }

  .service_sec2_item_sub{
    gap:50px 70px;
    margin-top: 59px;
    padding-bottom: 50px;
  }
  .service_sec2_item_sub:after{
    content: "";
    display: block;
    width: 100vw;
    height: 800px;
  }
  .service_sec2_item_sub_box{
    width: calc(50% - 46.666px);
  }
  .service_sec2_item_sub_box_img:before{

  }
  .service_sec2_item_sub_tt{
    font-size: 20px;
  }
  .service_sec2_item_sub .content_desc{

  }
}
@media (min-width:1024px){
  .service_sec2_item_main_box1{
    padding-top: 55px;
  }


  .service_sec2_item_sub{
    gap:0 70px;
  }
  .service_sec2_item_sub:after{
    content: "";
    display: block;
    width: 100vw;
    height: 400px;
  }
  .service_sec2_item_sub_box{
    width: calc(33.33% - 46.666px);
  }
  .service_sec2_item_sub_box_img:before{

  }
  .service_sec2_item_sub_tt{

  }
  .service_sec2_item_sub .content_desc{

  }

  .service_sec2_item_main_box1_tt{
    font-size: 36px;
  }
  .service_sec2_item_sub_tt{
    font-size: 22px;
  }
}
@media (min-width:1200px){

  .service_cate_item a{

  }
  .service_cate_item a:after{

  }

  /*sec2*/
  .service_sec2_items{

  }
  .service_sec2_item{

  }
  .service_sec2_item_head{

  }
  .service_sec2_item_head_en{

  }
  .service_sec2_item_head_tt{

  }
  .service_sec2_item_head_h2{
    font-size: 80px;
  }
  .service_sec2_item_main{

  }
  .service_sec2_item_main_box1{
    width: 44.73%;
  }
  .service_sec2_item_main_box1_tt{
    font-size: 30px;
  }
  .service_sec2_item_main .content_desc{

  }
  .service_sec2_item_main_box2{
    width: 49.01%;
    margin-top: 0;
  }
  .service_sec2_item_main_box2_img{

  }
  .service_sec2_item_main_box2_img:before{

  }

  .service_sec2_item_sub{

  }
  .service_sec2_item_sub_box{

  }
  .service_sec2_item_sub_box_img:before{

  }
  .service_sec2_item_sub_tt{
    font-size: 22px;
  }
  .service_sec2_item_sub .content_desc{

  }
}
@media (min-width:1470px){
  /*カテゴリ*/
  .service_cate{
    gap:15px;
    margin-top: -63px;
  }
  .service_cate_item{
    width: calc(16.666% - 12.5px);
  }
  .service_sec2_item_sub:after{
    content: "";
    display: block;
    width: 100vw;
    height: 509px;
  }
  .service_sec2_item:nth-child(n+2) .service_sec2_item_sub:after{
    height: 450px;
  }
  .service_sec2_item_main_box1_tt{
    font-size: 38px;
  }
  .service_sec2_item_sub_tt{
    font-size: 26px;
  }
}
@media (min-width:1720px){


}







/*******************************
*　採用
********************************/

/* セクション設定 */
.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 28px;
  }
  .pg_recruit .section.sec3{
    padding-top: 95px;
  }
  .pg_recruit .section.sec4{
    padding-top: 68px;
  }
}   
@media (min-width:1024px){


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */
/*sec1*/
.recruit_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
}
.recruit_hdr_box1{
  width: 100%;
}
.recruit_hdr_box1_tt{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.333em;
}
.recruit_hdr_box1_tt p{

  letter-spacing: 0;
}
.recruit_hdr_box1_img{
  margin-top: 23px;
}
.recruit_hdr_box1_img:before{
  padding-top: 59.52%;
}   
.recruit_hdr_box2{
  width: 100%;
}
.recruit_hdr_box2 .content_desc{
  margin-top: 20px;
}
.recruit_hdr_box2 .content_desc p{
  letter-spacing: 0;
}

/*sec2*/
.recruit_sec2_wrap{

}
.recruit_sec2_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit_sec2_head_tt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.recruit_sec2_head_tt_en{

  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  line-height: 1;
  border-bottom: 2.5px solid #000;
}
.recruit_sec2_head_tt_ja{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  line-height: 1.2em;
  border-bottom: 2.5px solid #000;
  margin-top: 20px;
}
.lg_sec_tt{
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  line-height: 1.38em;
  margin-top: 20px;;
}
.lg_sec_tt p{
  white-space: nowrap;
  letter-spacing: 0;
}

/*sec3*/
.recruit_sec2_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  margin-top: 40px;
}
.recruit_sec2_item{
  width: 100%;
}
.recruit_sec2_item_lists{

}
.recruit_sec2_item_list{

}
.recruit_sec2_item_list:nth-child(n+2){
  margin-top: 30px;
}
.recruit_sec2_item_list_h3{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  background: #3a3a3a;
  color: #fff;
  padding: 2px 10px;
}
.recruit_sec2_item .content_desc{
  margin-top: 22px;
}
.recruit_sec2_item .content_desc p{
  letter-spacing: 0;
}
.recruit_sec2_item_img.type1:before{
  padding-top: 180.48%;
}
.recruit_sec2_item_img.type2:before{
  padding-top: 140.5%;
}
.recruit_sec2_item_img.type3:before{
  padding-top: 134.96%;
}

/*sec4*/
.recruit_sec3_tt{
  text-align: center;
}
.recruit_sec3_tt_en{

}
.recruit_sec3_ja{
  font-size: 28px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  justify-content: center;
}
.recruit_sec3_wrap .content_desc.center{

}
.recruit_sec3_wrap .content_desc.center p{
  letter-spacing: 0;
}
.content_desc.center{

}

.realEstate_sec7_items{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:30px 0;
  margin-top: 40px;
  position: relative;
  padding: 40px 0;
}
.realEstate_sec7_items:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #000000;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 0;
}
.realEstate_sec7_item{
  width: 100%; 
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.realEstate_sec7_item_left{
  width: 100%; 
}
.realEstate_sec7_item_img:before{
  padding-top: 78.87%;
}
.realEstate_sec7_item_right{
  width: 100%; 
  margin-top: 20px;
}
.realEstate_sec7_item_tt{
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height:1.4em; 
  padding: 5px 7px;
  text-align: left;
  margin-top: 14px;
}
.realEstate_sec7_item_tt p{
  letter-spacing: 0.075em;;
}
.realEstate_sec7_item_right .content_desc{
  color: #fff;
  font-weight: 500;
  line-height: 2.25em;
  margin-top: 19px;
}
.realEstate_sec7_item_right .content_desc p{
  letter-spacing: 0;
}

.realEstate_sec7_main_tt{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.46em;
  color: #fff;
  text-align: left;
}

/*sec4*/
.recruit_sec4_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  margin-top: 44px;
}
.recruit_sec4_item{
  width: 100%;

}
.recruit_sec4_item_img{
  text-align: center;
  background: #3a3a3a;
  color: #fff;
  padding: 56px 0 48px;
}
.recruit_sec4_item_icon{

}
.recruit_sec4_item_img_txt{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 28px;
}
.recruit_sec4_item_tt{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 11px;
}
.recruit_sec4_item .content_desc{
  line-height: 1.5625em;
  margin-top: 10px;
  padding-inline: 7px;
}
@media (max-width:767px){
  .recruit_sec2_item_img.type1:before,
  .recruit_sec2_item_img.type2:before{
    padding-top: 130.48%;
  }
}
@media (min-width:768px){
  /*sec1*/
  .recruit_hdr_wrap{
    margin-top: 20px;
  }
  .recruit_hdr_box1{

  }
  .recruit_hdr_box1_tt{
    font-size: 40px;
  }
  .recruit_hdr_box1_img:before{

  }
  .recruit_hdr_box2{

  }
  .recruit_hdr_box2 .content_desc{
    margin-top: 30px;
  }

  /*sec2*/
  .recruit_sec2_wrap{

  }
  .recruit_sec2_head{

  }
  .recruit_sec2_head_tt{

  }
  .recruit_sec2_head_tt_en{
    font-size: 26px;
  }
  .recruit_sec2_head_tt_ja{
    font-size: 30px;
    margin-top: 30px;
  }
  .lg_sec_tt{
    font-size: 40px;
    width: 55.23%;
    margin-top: 20px;;
  }
  .lg_sec_tt p{

  }

  /*sec3*/
  .recruit_sec2_items{
    gap:40px 65px;
    margin-top:60px;
  }
  .recruit_sec2_item{
    width: calc(50% - 43.333px);
  }
  .recruit_sec2_item_lists{

  }
  .recruit_sec2_item_list{

  }
  .recruit_sec2_item_list:nth-child(n+2) {
    margin-top: 51px;
  }
  .recruit_sec2_item_list_h3{
    font-size: 20px;
  }
  .recruit_sec2_item .content_desc{

  }
  .recruit_sec2_item .content_desc + .content_desc{
    margin-top: 35px;
  }

  /*sec4*/
  .recruit_sec3_tt{

  }
  .recruit_sec3_tt_en{

  }
  .recruit_sec3_ja{
    font-size: 40px;
  }
  .recruit_sec3_wrap .content_desc.center{
    text-align: center;
  }
  .content_desc.center{

  }


  .realEstate_sec7_wrap .content_desc.center{

  }
  .realEstate_sec7_items{
    gap:30px;
    margin-top: 40px;
    padding: 73px 0;
  }
  .realEstate_sec7_item{
    width: calc(50% - 15px);

  }
  .realEstate_sec7_item_left{

  }
  .realEstate_sec7_item_img:before{

  }
  .realEstate_sec7_item_right{
    margin-top: 30px;
  }
  .realEstate_sec7_item_tt{

  }
  .realEstate_sec7_item_right .content_desc{

  }

  .realEstate_sec7_main_tt{
    font-size: 20px;
  }

  /*sec4*/
  .recruit_sec4_items{
    gap:30px 10px;
  }
  .recruit_sec4_item{
    width: calc(50% - 8.333px);
  }
  .recruit_sec4_item_img{

  }
  .recruit_sec4_item_icon{

  }
  .recruit_sec4_item_img_txt{
    font-size: 18px;
  }
  .recruit_sec4_item_tt{
    font-size: 18px;
    margin-right: -9px;
  }
  .recruit_sec4_item .content_desc{

  }
  .recruit_sec4_wrap .read_more{
    margin-top: 92px;
  }
}    
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*sec1*/
  .recruit_hdr_wrap{
    margin-top: 83px;
  }
  .recruit_hdr_box1{
    width: 55.26%;
  }
  .recruit_hdr_box1_tt{
    font-size: 50px;
  }
  .recruit_hdr_box1_img:before{

  }
  .recruit_hdr_box2{
    width: 42.76%;
    align-content: center;
    padding-left: 32px;
    padding-top: 184px;
    margin-top: 0;
  }
  .recruit_hdr_box2 .content_desc{

  }

  /*sec2*/
  .recruit_sec2_wrap{

  }
  .recruit_sec2_head{

  }
  .recruit_sec2_head_tt{
    padding-top: 39px;
  }
  .recruit_sec2_head_tt_en{
    font-size: 34px;
  }
  .recruit_sec2_head_tt_ja{
    font-size: 48px;
  }
  .lg_sec_tt{
    font-size: 50px;
    width: 55.23%;
    padding-left: 20px;
    margin-top: 0;
  }
  .lg_sec_tt p{

  }

  /*sec3*/
  .recruit_sec2_items{
    gap:0;
    justify-content: space-between;
    margin-top: 80px;
  }
  .recruit_sec2_item{
    width: auto;
  }

  .recruit_sec2_item:nth-child(1){
    width: 32.23%;
  }
  .recruit_sec2_item:nth-child(2){
    width: 26.97%;
  }
  .recruit_sec2_item:nth-child(3){
    width: 32.23%;
    padding-top: 198px;
  }
  .recruit_sec2_item:nth-child(4){
    width: 25.98%; 
  }
  .recruit_sec2_item:nth-child(5){
    width: 33.22%;
    padding-top: 68px;
  }
  .recruit_sec2_item:nth-child(6){
    width: 32.17%; 
    padding-top: 162px;
  }
  .recruit_sec2_item_lists{

  }
  .recruit_sec2_item_list{

  }
  .recruit_sec2_item_list_h3{
    font-size: 19px;
    padding: 2px 5px;
  }
  .recruit_sec2_item .content_desc{

  }

  /*sec4*/
  .recruit_sec3_tt{

  }
  .recruit_sec3_tt_en{

  }
  .recruit_sec3_ja{
    font-size: 80px;
  }
  .recruit_sec3_wrap .content_desc.center{
    text-align: center;
  }
  .content_desc.center{

  }
  .realEstate_sec7_items{
    gap: 103px 30px;
  }
  .realEstate_sec7_item{
    width: calc(50% - 15px);
  }
  .realEstate_sec7_item_left{
    width: 48.99%;
    padding-top: 8px;
  }
  .realEstate_sec7_item_img:before{

  }
  .realEstate_sec7_item_right{
    width: 46.97%;
    margin-top: 0;
  }
  .realEstate_sec7_item_tt{
    font-size: 18px;
  }
  .realEstate_sec7_item_right .content_desc{

  }
  .realEstate_sec7_main_tt{
    font-size: 26px;
  }

  /*sec4*/
  .recruit_sec4_items{

  }
  .recruit_sec4_item{
    width: calc(33.333% - 8.333px);
  }
  .recruit_sec4_item_img{

  }
  .recruit_sec4_item_icon{

  }
  .recruit_sec4_item_img_txt{

  }
  .recruit_sec4_item_tt{
    font-size: 16px;
  }
  .recruit_sec4_item .content_desc{

  }
}
@media (min-width:1470px){
  /*sec1*/
  .recruit_hdr_box1_tt{
    font-size: 60px;
  }

  /*sec2*/
  .lg_sec_tt{
    width: 57.23%;
    font-size: 60px;
  }
  /*sec3*/
  .recruit_sec2_item_list_h3{
    font-size: 20px;
    padding: 2px 10px;
  }
  .realEstate_sec7_item_tt{
    font-size: 18px;
  }

  /*sec4*/
  .recruit_sec4_items{
    gap:10px;
  }
  .recruit_sec4_item{
    width: calc(16.666% - 8.333px);
  }

}
@media (min-width:1720px){

  /*sec2*/
  .lg_sec_tt{
    width: 57.23%;
    font-size: 72px;
  }


  /*sec3*/
  .recruit_sec2_item_list_h3{
    font-size: 26px;
  }
  .recruit_sec4_item_tt{
    font-size: 18px;
  }
}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


