@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');


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

  /* カラー(ボタン背景色など) */
  /*--main-color: #40ba8d;*/
  --main-color: #008e66;
  --sub-color: #f8751a;
  --txt-color: #181818;
  --bdr-color: #b9b9b9;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: 'Noto Serif JP', serif;
  --font-dance: "Dancing Script", 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);

  -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: 4;
  }
}

.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;*/
  color: var(--main-color);
}
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;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  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{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: var(--sub-color);
  color: #FFF;
  width: 82px;
  height: 82px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
  
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.hdr_contact a.email p{
  letter-spacing: 0;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  display: block;
  margin: 0 auto 10px;
}
.hdr_contact a:hover{
  background: var(--main-color);
  color: #FFF;
}

/* Entryボタン */
.hdr_entry{
  margin-left: 35px;
}
.hdr_entry a{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-items: center;
  width: 180px;
  font-size: 18px;
  font-weight: 500;
  /*font-family: "Oswald", sans-serif;*/
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  border: 1px solid #181818;
  border-radius: 17px;
  background: #FFF;
  padding: 6px 5px 8px;
  transition: 0.2s all;
}
.hdr_entry a p{
  letter-spacing: 0;
}
.hdr_entry a:before{
  content: "";
  width: 22px;
  height: 20px;
  margin-right: 18px;
  background-image: url(https://agent-styleplus.com/system_panel/uploads/images/edit-solid.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.hdr_entry a:hover{
  border-color: var(--main-color);
  background: var(--main-color);
  color: #FFF;
}
.hdr_entry a:hover:before{
  filter: invert(1);
}

/* 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_entry{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0 0 0 30px;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.8);
  }
  .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: 50px;
  }

  /* ロゴ */
  .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: 58px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 60px;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv:after{
  content: "";
  background: var(--main-color);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
}

/* MVテキスト */
.mv_catch{
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.mv_catch_txt1{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.375;
  text-align: center;
}
.mv_catch_txt2{
  font-size: 34px;
  font-family: "Dancing Script", serif;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  color: #f8751a;
  position: absolute;
  z-index: 1;
  top: 105%;
  left: 50%;
  transform: rotate(-9deg);
  
  text-shadow: 
       1px  1px 0px #FFF,
      -1px  1px 0px #FFF,
       1px -1px 0px #FFF,
      -1px -1px 0px #FFF,
       1px  0px 0px #FFF,
       0px  1px 0px #FFF,
      -1px  0px 0px #FFF,
       0px -1px 0px #FFF;  
}

/* スライダーの場合 */
.mv_slider{
  position: relative;
  z-index: 1;
}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.mv_slides{
  display: flex;
}
.mv_slides_item{
  width: 250px;
  margin: 0 7.5px;
  position: relative;
  z-index: 1;
}
.mv_slides_item_img{
  
}
.mv_slides_item_img.img_fit:before{
  padding-top: 136.842%;
}

.mv_slides_item_txt{
  position: absolute;
  z-index: 2;
  margin: -4px -4px;
}
.mv_slides_item_txt_line{
  display: flex;
  flex-wrap: wrap;
  margin: 4px 4px;
}
.mv_slides_item_txt_line + .mv_slides_item_txt_line{
}
.mv_slides_item_txt_line p{
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  background: #FFF;
  padding: 3px 3px;
  white-space: nowrap;
}

.mv_slides_item.item1{
  
}
.mv_slides_item.item1 .mv_slides_item_txt{
  bottom: 20px;
  left: 20px;
  right: 0;
}
.mv_slides_item.item2 .mv_slides_item_txt{
  top: 10px;
  left: 15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_slides_item.item3 .mv_slides_item_txt{
  top: 108px;
  right: 15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_slides_item.item4 .mv_slides_item_txt{
  bottom: 40px;
  right: 20px;
}
.mv_slides_item.item5 .mv_slides_item_txt{
  top: 25px;
  left: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_slides_item.item6 .mv_slides_item_txt{
  left: 26px;
  bottom: 34px;
}
.mv_slides_item.item7 .mv_slides_item_txt{
  left: 26px;
  bottom: 34px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_slides_item.item8 .mv_slides_item_txt{
  right: 46px;
  bottom: 60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


.mv_slides{
  /*visibility: hidden;*/
  opacity: 0;
  transition: 0.2s all;
}
.infiniteslide_wrap .mv_slides{
  /*visibility: visible;*/
  opacity: 1;
}


.gjs-dashed .mv_slides{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*visibility: visible;*/
  opacity: 1;
}
.gjs-dashed .mv_slides_item{
  background: #CCC;
  padding: 10px 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width:768px){

  /* MV */
  .mv{
    padding-bottom: 90px;
  }
  .mv_img.img_fit:before{
    /* 画面高さ - ヘッダー分 */
    /*padding-top: calc(100svh - 64px);*/
  }
  .mv:after{
    height: 300px;
  }

  /* MVテキスト */
  .mv_catch{
    margin-bottom: 75px;
  }
  .mv_catch_txt1{
    font-size: 40px;
  }
  .mv_catch_txt2{
    font-size: 56px;
    top: 105%;
    left: 50%;
    transform: rotate(-9deg);
  }
  
  /* スライダーの場合 */
  .mv_slider{
  }
  .mv_slider_item{
  }
  .mv_slides{
  }
  .mv_slides_item{
    width: 300px;
    margin: 0 7.5px;
  }
  .mv_slides_item_txt{
    margin: -4px -4px;
  }
  .mv_slides_item_txt_line{
    margin: 4px 4px;
  }
  .mv_slides_item_txt_line p{
    font-size: 18px;
    padding: 3px 3px;
  }

  .mv_slides_item.item1{

  }
  .mv_slides_item.item1 .mv_slides_item_txt{
    bottom: 20px;
    left: 20px;
    right: 0;
  }
  .mv_slides_item.item2 .mv_slides_item_txt{
    top: 10px;
    left: 15px;
  }
  .mv_slides_item.item3 .mv_slides_item_txt{
    top: 108px;
    right: 15px;
  }
  .mv_slides_item.item4 .mv_slides_item_txt{
    bottom: 40px;
    right: 20px;
  }
  .mv_slides_item.item5 .mv_slides_item_txt{
    top: 25px;
    left: 10px;
  }


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


  /* MV */
  .mv{
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .mv_img.img_fit:before{
    /* 画面高さ - ヘッダー分 */
    /*padding-top: calc(100svh - 64px);*/
  }
  .mv:after{
    height: 460px;
  }

  /* MVテキスト */
  .mv_catch{
    margin-bottom: 75px;
  }
  .mv_catch_txt1{
    font-size: 50px;
  }
  .mv_catch_txt2{
    font-size: 70px;
  }
  
  /* スライダーの場合 */
  .mv_slider{
  }
  .mv_slider_item{
  }
  .mv_slides{
  }
  .mv_slides_item{
    width: 300px;
    margin: 0 7.5px;
  }
  .mv_slides_item_txt_line p{
    font-size: 18px;
    padding: 3px 3px;
  }
}

@media (min-width:1200px){
  

}

@media (min-width:1470px){
  
  /* MV */
  .mv{
    padding-bottom: 120px;
  }
  .mv_img.img_fit:before{
    /* 画面高さ - ヘッダー分 */
    /*padding-top: calc(100svh - 64px);*/
  }
  .mv:after{
    height: 460px;
  }

  /* MVテキスト */
  .mv_catch{
    margin-bottom: 60px;
  }
  .mv_catch_txt1{
    font-size: 65px;
  }
  .mv_catch_txt2{
    font-size: 70px;
  }
  
  /* スライダーの場合 */
  .mv_slider{
  }
  .mv_slider_item{
  }
  .mv_slides{
  }
  .mv_slides_item{
    /*width: 380px;*/
    /*margin: 0 7.5px;*/
  }
  
  .mv_slides_item_txt_line p{
    /*font-size: 24px;*/
    /*padding: 3px 3px;*/
  }
}


@media (min-width:1720px){
  
  /* MV */
  .mv{
    padding-bottom: 120px;
  }
  .mv_img.img_fit:before{
    /* 画面高さ - ヘッダー分 */
    /*padding-top: calc(100svh - 64px);*/
  }
  .mv:after{
    height: 460px;
  }

  /* MVテキスト */
  .mv_catch{
    margin-bottom: 75px;
  }
  .mv_catch_txt1{
    font-size: 80px;
  }
  .mv_catch_txt2{
    font-size: 100px;
  }
  
  /* スライダーの場合 */
  .mv_slider{
  }
  .mv_slider_item{
  }
  .mv_slides{
  }
  .mv_slides_item{
    width: 380px;
    margin: 0 7.5px;
  }
  
  .mv_slides_item_txt_line p{
    font-size: 24px;
    padding: 3px 3px;
  }
}


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

/* サイドバー */
.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: 40px;
  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.5);
  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_ja{
  font-size: 24px;
  font-weight: 900;
  color: #FFF;
}
.pg_header_title_en{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  color: #FFF;
  margin-top: 10px;
}



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

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

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

  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 300px;
  }
  
  .pg_header_title_txt{
    
  }

  .pg_header_title_ja{
    font-size: 38px;
  }
  .pg_header_title_en{
    font-size: 32px;
    margin-top: 20px;
  }
  
}
@media (min-width:1470px){
  
  .pg_header{
    margin-bottom: 185px;
  }
  .pg_header_title_ja{
    font-size: 48px;
  }
  .pg_header_title_en{
    font-size: 36px;
    margin-top: 20px;
  }
  
}



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

.footer{
  margin-top: 50px;
}


/* お問い合わせ */
.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #a39c92;
  border-bottom: 1px solid #a39c92;
  padding: 0 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
}

.ftr_contact_head{
  margin-bottom: 20px;
}
.ftr_contact_head_en{
  font-size: 42px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: var(--main-color);
}
.ftr_contact_head_ja{
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
.ftr_contact_head_ja + .ftr_contact_head_ja{
    margin-top: 0;
  }

.ftr_contact_btns{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_btns_item{
  width: 100%;
  padding: 25px 15px;
  text-align: center;
}
.ftr_contact_btns_item{
}
.ftr_contact_btns_item_title{
  margin-bottom: 20px;
}
.ftr_contact_btns_item_tel{
  text-align: center;
}
.ftr_contact_btns_item_tel_txt1{
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.ftr_contact_btns_item_tel_txt2{
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.ftr_contact_btns_item_link{
  display: flex;
  justify-content: center;
}
.ftr_contact_btns_item_link_a{
  width: 200px;
  background: var(--sub-color);
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 10px;
}
.ftr_contact_btns_item_link_a:hover{
  background-color: var(--main-color);
  color: #FFF;
}

/*  */
.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr1_box1{
  width: 365px;
}
.ftr1_box2{
  width: 745px;
  margin-top: 10px;
}
.ftr_logo{
  text-align: center;
  margin-bottom: 20px;
}
.ftr_logo img{
  width: 200px;
}
.ftr_addr{
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.ftr_addr + .ftr_addr{
  margin-top: 10px;
}
.ftr_sns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 30px;
}
.ftr_sns_item{
  margin-left: 10px;
}
.ftr_sns_item:first-child{
  margin-left: 0;
}
.ftr_links{
  display: flex;
  flex-wrap: wrap;
}
.ftr_links_item{
  width: 20%;
  text-align: center;
  margin-bottom: 20px;
  /*border-right: 1px solid #a7a7a7;*/
}
.ftr_links_item + .ftr_links_item{
  
}
.ftr_links_item_a{
  font-size: 15px;
  line-height: 1;
}

/**/
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: var(--main-color);
  color: #FFF;
  padding: 5px 5px;
  margin-top: 30px;
}
.ftr_copy a:hover{
  color: var(--sub-color);
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix > a:hover{
  color: #FFF;
}
.footer_fix .footer_fix_item_1{
  width: 40%;
  /*width: 33.3333%;*/
  /*width: 33.3333%;*/
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: var(--sub-color);;
  color: #FFF;
}
.footer_fix .footer_fix_item_1:nth-child(3n){
  border-right: 0;
}
.footer_fix .footer_fix_item_2{
  width: 20%;
  background: var(--main-color);
}
.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;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  /**/
  .ftr_contact_head{
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 30px;
  }
  .ftr_contact_head_ja{
    margin-top: 15px;
    font-size: 12px;
  }
  .ftr_contact_btns_item{
    border-top: 1px solid #a39c92;
  }
  .ftr_contact_btns_item{
    
  }
  .ftr_contact_btns_item_title img{
    height: 70px;
  }
  
  
  .ftr_links{
    display: none;
  }
  
  .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);
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  
  /* お問い合わせ */
  .ftr_contact{
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center;
  }
  .ftr_contact_box1{
    width: 100%;
  }
  .ftr_contact_box2{
    width: 100%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
  }
  

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    width: 50%;
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(2n){
    border-right: 1px solid #a39c92;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
    margin-top: 10px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
    font-size: 15px;
    padding: 12px 10px;
  }
  
  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 285px;
  }
  .ftr1_box2{
    width: calc(100% - 285px - 30px);
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 40px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 40px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
    width: 50%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(2n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }

  /**/
  .ftr_copy{
    font-size: 14px;
    margin-top: 70px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  
  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
    width: 51.31%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 32px;
  }
  .ftr_contact_head_ja{
    font-size: 12px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 25px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 60px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 24px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 12px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }
}
@media (min-width:1200px){

  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 365px;
  }
  .ftr1_box2{
    width: 745px;
    width: 380px;
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 60px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 65px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
    width: 50%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(3n){
    /*border-right: 1px solid #a7a7a7;*/
  }
  .ftr_links_item:nth-child(2n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }
  
  #chatbot-btn{
    right: 70px !important;
  }
  
}
@media (min-width:1470px){
  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
    width: 51.31%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 87px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }
 
  .ftr1_box2{
    margin-top: 115px;
  }
  .ftr_links_item{
    padding-left: 65px;
    margin-bottom: 45px;
    text-align: left;
  }
}
@media (min-width:1720px){

}


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


/* テーブル用 */
.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{
  min-width: 250px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #181818;
  border: 2px solid var(--main-color);
  background: #FFF;
  border-radius: 20px;
  padding: 10px 20px 11px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "\f138";
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  color: var(--main-color);
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
  color: #FFF;
}

.read_more a.or{
  background: var(--sub-color);
  border-color: var(--sub-color);
  color: #FFF;
}
.read_more a.or:after{
  color: #FFF;
}
.read_more a.or:hover{
  background: #FFF;
  border-color: var(--sub-color);
  color: var(--sub-color);;
}
.read_more a.or:hover:after{
  color: var(--sub-color);;
}

.read_more a.or2{
  background: #FFF;
  border-color: var(--sub-color);
  color: #181818;
}
.read_more a.or2:after{
  color: var(--sub-color);;
}
.read_more a.or2:hover{
  background: var(--sub-color);
  border-color: var(--sub-color);
  color: #FFF;
}
.read_more a.or2:hover:after{
  color: #FFF;
}

.read_more a.or3{
  background-image: url('https://agent-styleplus.com/system_panel/uploads/images/read_more_bg_or.png');
  background-size: cover;
  background-position: center;
  border: 0;
  color: #FFF;
}
.read_more a.or3:after{
  color: #FFF;
}
.read_more a.or3:hover{
  color: #FFF;
  transform: scale(1.08);
}
.read_more a.or3:hover:after{
  /*color: var(--sub-color);*/
  margin: 0;
}

.read_more a.large{
  
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_ja{
  font-size: 26px;
  font-weight: 900;
}
.tt2_en{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
  margin-top: 6px;
}

/* 見出し(tt3) */
.tt3{
  text-align: center;
  margin-bottom: 30px;  
}
.tt3_en{
  font-size: 34px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #eae9e9;
}
.tt3_ja{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 10px;
}



/* セクション */
.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;
  }
  
  .read_more a.wide{
    width: 320px;
  }

}
@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{
    min-width: 285px;
    min-width: 300px;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 34px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /*.read_more a.large{
    font-size: 18px;
    min-width: 300px;
    padding: 20px 20px;
    border-radius: 34px;
  }*/
  
  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_ja{
    font-size: 32px;
  }
  .tt2_en{
    font-size: 24px;
    margin-top: 8px;
  }
  
  /* 見出し(tt3) */
  .tt3{
    margin-bottom: 50px;  
  }
  .tt3_en{
    font-size: 50px;
  }
  .tt3_ja{
    font-size: 32px;
    margin-top: 10px;
  }
  


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

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

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_ja{
    font-size: 40px;
  }
  .tt2_en{
    font-size: 30px;
    margin-top: 12px;
  }

  /* 見出し(tt3) */
  .tt3{
    margin-bottom: 50px;  
  }
  .tt3_en{
    font-size: 60px;
  }
  .tt3_ja{
    font-size: 38px;
  }
  
}
@media (min-width:1200px){

  /* 見出し(tt3) */
  .tt3{
  }
  .tt3_en{
    font-size: 70px;
  }

}


@media (min-width:1470px){

  
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_ja{
    font-size: 40px;
  }
  .tt2_en{
    font-size: 30px;
    margin-top: 12px;
  }

  /* 見出し(tt3) */
  .tt3{
    margin-bottom: 50px;  
  }
  .tt3_en{
    font-size: 80px;
  }
  .tt3_ja{
    font-size: 44px;
  }
  
  .read_more a{
    min-width: 285px;
    min-width: 410px;
    font-size: 18px;
    padding: 20px 20px;
    border-radius: 34px;
    margin: 5px 5px;
  }
  
  .read_more + .read_more{
    margin-top: 60px;
  }
  
}


@media (min-width:1740px){
  
  /* 見出し(tt3) */
  .tt3{
    margin-bottom: 50px;  
  }
  .tt3_en{
    font-size: 100px;
  }
  .tt3_ja{
    font-size: 58px;
  }
}


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


.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.cmn_txt2{
  font-size: 16px;
  /*font-weight: 500;*/
  line-height: 1.875;
  text-align: justify;
}
.txt_stroke{
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: #FFF;
  text-shadow: 
       1px  1px 0px var(--main-color),
      -1px  1px 0px var(--main-color),
       1px -1px 0px var(--main-color),
      -1px -1px 0px var(--main-color),
       1px  0px 0px var(--main-color),
       0px  1px 0px var(--main-color),
      -1px  0px 0px var(--main-color),
       0px -1px 0px var(--main-color);  
}
.txt_stroke.bold{
  text-shadow: 2px  2px 0px var(--main-color),
      -2px  2px 0px var(--main-color),
       2px -2px 0px var(--main-color),
      -2px -2px 0px var(--main-color),
       1px  0px 0px var(--main-color),
       0px  2px 0px var(--main-color),
      -2px  0px 0px var(--main-color),
       0px -2px 0px var(--main-color);
}
.txt_stroke2{
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  text-shadow: 
      1px  1px 0px var(--sub-color),
      -1px  1px 0px var(--sub-color),
       1px -1px 0px var(--sub-color),
      -1px -1px 0px var(--sub-color),
       1px  0px 0px var(--sub-color),
       0px  1px 0px var(--sub-color),
      -1px  0px 0px var(--sub-color),
       0px -1px 0px var(--sub-color),
       
       1px  1px 0px var(--sub-color),
      -1px  1px 0px var(--sub-color),
       1px -1px 0px var(--sub-color),
      -1px -1px 0px var(--sub-color),
       1px  0px 0px var(--sub-color),
       0px  1px 0px var(--sub-color),
      -1px  0px 0px var(--sub-color),
       0px -1px 0px var(--sub-color)
       
       ;
  
  
}
.txt_stroke2.bold{
  text-shadow: 2px  2px 0px var(--sub-color),
      -2px  2px 0px var(--sub-color),
       2px -2px 0px var(--sub-color),
      -2px -2px 0px var(--sub-color),
       1px  0px 0px var(--sub-color),
       0px  2px 0px var(--sub-color),
      -2px  0px 0px var(--sub-color),
       0px -2px 0px var(--sub-color);
}

/*.txt_stroke_bg{
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  color: var(--main-color);
}*/

.cmn_title_en{
  font-family: "Dancing Script", serif;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
  color: #f8751a;
  text-shadow: 1px 1px 0px #FFF, -1px 1px 0px #FFF, 1px -1px 0px #FFF, -1px -1px 0px #FFF, 1px 0px 0px #FFF, 0px 1px 0px #FFF, -1px 0px 0px #FFF, 0px -1px 0px #FFF;
}

/* セクションヘッダー */
.sec_head{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.sec_head_box1{
  width: 45px;
  border-left: 3px solid var(--main-color);
  padding-left: 6px;
}
.sec_head_box2{
  width: calc(100% - 45px);
  margin-top: -2px;
}
.sec_head_title_en{
  
}
.sec_head_title_en p{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.sec_head_title_ja{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sec_head_txt{
  font-size: 15px;
}



@media (min-width:768px){
  
  /* セクションヘッダー */
  .sec_head{
    margin-bottom: 25px;
  }
  .sec_head_box1{
    width: 95px;
  }
  .sec_head_box2{
    width: calc(100% - 95px);
    margin-top: -6px;
  }
  .sec_head_title_en{

  }
  .sec_head_title_en p{
    font-size: 26px;
  }
  .sec_head_title_ja{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .sec_head_txt{
    font-size: 16px;
  }
  
}
@media (min-width:1024px){
  
  .cmn_txt{
    font-size: 16px;
    line-height: 2.375;
  }

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


}
@media (min-width:1470px){
  
  /* セクションヘッダー */
  .sec_head{
    margin-bottom: 35px;
  }
  .sec_head_box1{
    width: 95px;
  }
  .sec_head_box2{
    width: calc(100% - 95px);
    margin-top: -6px;
  }
  .sec_head_title_en{

  }
  .sec_head_title_en p{
    font-size: 32px;
  }
  .sec_head_title_ja{
    font-size: 38px;
    margin-bottom: 25px;
  }
  .sec_head_txt{
    font-size: 16px;
  }

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


}


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

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

}
.pg_home .section.sec3{
  padding-top: 85px;
  padding-bottom: 50px;
  background-image: 
    url(https://agent-styleplus.com/system_panel/uploads/images/bg_logo_wh.png),
    url(https://agent-styleplus.com/system_panel/uploads/images/bg_gray.png)
    ;
  background-size: 100% auto, auto auto;
  background-repeat: no-repeat, repeat;
  background-position: center center, center center;
}
.pg_home .section.sec4{
  padding-top: 0;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{
  padding-top: 0;
}
.pg_home .section.sec7{
  padding-top: 0;
}
.pg_home .section.sec8{
  padding-top: 0;
}



@media (max-width:767px){
  .pg_home .section.sec3{
    margin-top: -52px;
    background-position: center top 20%, center center;
  }
}
@media (min-width:768px){

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

  }
  .pg_home .section.sec3{
    padding-top: 50px;
  }
  .pg_home .section.sec4{
    padding-top: 30px;
  }
  .pg_home .section.sec6{
    padding-top: 30px;
  }
}
@media (min-width:1024px){

  .pg_home .section.sec3{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
  }
  .pg_home .section.sec6{
    padding-top: 70px;
  }
  .pg_home .section.sec7{
    padding-top: 70px;
  }
  .pg_home .section.sec8{
    padding-top: 70px;
  }

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


}
@media (min-width:1470px){
  
  .pg_home .section.sec1{
    padding-top: 158px;
    padding-bottom: 158px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 85px;
    padding-bottom: 95px;
  }
  .pg_home .section.sec4{
    padding-top: 90px;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
  }
  .pg_home .section.sec6{
    padding-top: 90px;
  }
  .pg_home .section.sec7{
    padding-top: 80px;
  }
  .pg_home .section.sec8{
    padding-top: 85px;
  }

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


}


/* 概要 */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 25.98%;
  width: 49%;
  margin-top: 60px;
  order: 2;
}
.home_about_box2{
  width: 100%;
  margin-top: 0;
  order: 1;
}
.home_about_box3{
  width: 25.98%;
  width: 49%;
  margin-top: 20px;
  order: 3;
}
.home_about_img1{
  
}
.home_about_img1.img_fit:before{
  padding-top: 147.089%;
}
.home_about_img2{
  
}
.home_about_img2.img_fit:before{
  padding-top: 147.089%;
}

.home_about_title{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.344;
  text-align: center;
  margin-bottom: 20px;
}


/* 概要2 */
.home_about2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about2_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
}
.home_about2_box2{
  width: 100%;
  margin-top: 0;
  order: 1;
}
.home_about2_img{
  -webkit-mask-image: url(https://agent-styleplus.com/system_panel/uploads/images/home_about2_img_frame.png);
  -webkit-mask-size: cover;
}
.home_about2_img.img_fit:before{
  padding-top: 77.595%;
}

/* スタート */
.home_start_sec{
  padding: 0;
  position: relative;
  z-index: 1;
}
.home_start_bg{
}
.home_start_bg.img_fit:before{
  padding-top: 200px;
}
.home_start_inner{
  display: flex;
  justify-content: center;
  width: 100%;
  background: #FFF;
  padding: 10px 15px 15px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.home_start_title{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

/* サポート(head) */
.home_support_head{
  position: relative;
  z-index: 1;
}
.home_support_head_title{
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}
.home_support_head_title strong{
  font-weight: 900;
  font-size: 1.388em;
  color: var(--sub-color);
}
.home_support_head_en{
  font-size: 30px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  transform: rotate(-9deg) translate(-50%, -90%);
}
.home_support_head_msg{
  text-align: justify;
}

/* サポート（一覧） */
.home_support_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  --home-support-img-resize: 0.3;
}
* + .home_support_list{
  margin-top: 95px;
}

.home_support_list_item{
  margin-bottom: 50px;
}
.home_support_list_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_support_list_item_box1_1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_support_list_item_box1_2{
  width: 100%;
}
.home_support_list_item_box2_1{
  width: 100%;
  margin-bottom: 0;
}
.home_support_list_item_box2_2{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_support_list_item_box2_3{
  width: 100%;
}


.home_support_list_item_head{
  background: var(--main-color);
  position: relative;
  z-index: 1;
}
.home_support_list_item_head_num{
  font-size: 60px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #c1e8de;
  position: absolute;
  z-index: 1;
  top: 0;
}
.home_support_list_item_head_en{
  font-size: 20px;
  font-family: var(--font-dance);
  line-height: 1;
  color: #FFF;
  position: absolute;
  z-index: 1;
}
.home_support_list_item_head_img{
  
}
.home_support_list_item_head_title{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--sub-color);
}
.home_support_list_item_img{
  position: absolute;
  z-index: 1;
}

.home_support_list_item_desc{
  background: #FFF;
  padding: 15px 25px 25px 35px;
  padding: 25px 15px;
  filter: drop-shadow(0 0 6px #CCC);
}
.home_support_list_item_desc_title{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.47;
  letter-spacing: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}
.home_support_list_item_desc_title.mb0{
  margin-bottom: 0;
}
.home_support_list_item_desc_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}

.home_support_list_item.tate{
  width: 100%;
}
.home_support_list_item.yoko{
  width: 100%;
}
.home_support_list_item.tate .home_support_list_item_head_en{
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
  /*left: 3px;*/
  /*bottom: 10px;*/
}
.home_support_list_item.tate .home_support_list_item_head_num{
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.home_support_list_item.tate .home_support_list_item_head{
  width: 100%;
  min-height: 45px;
}
.home_support_list_item.tate .home_support_list_item_img{
  bottom: 0;
  left: 30px;
}


.home_support_list_item.yoko .home_support_list_item_head_en{
  /*bottom: 5px;*/
  /*right: 5px;*/
}
.home_support_list_item.yoko .home_support_list_item_head_num{
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_support_list_item.yoko .home_support_list_item_head{
  width: 100%;
  min-height: 45px;
}
.home_support_list_item.yoko .home_support_list_item_img{
  top: 0;
  left: 0;
}

/* 位置調整 */
/*.home_support_list_item.pos2{
  margin-top: 110px;
}
.home_support_list_item.pos3{
  margin-top: -175px;
}
.home_support_list_item.pos4{
  margin-right: 30px;
}
.home_support_list_item.pos4.tate .home_support_list_item_head{
  min-height: 500px;
}*/

.home_support_list_item.pos1 .home_support_list_item_img{
  width: calc(196px * var(--home-support-img-resize));
}
.home_support_list_item.pos2 .home_support_list_item_img{
  width: calc(93px * var(--home-support-img-resize));
}
.home_support_list_item.pos3 .home_support_list_item_img{
  width: calc(170px * var(--home-support-img-resize));
}
.home_support_list_item.pos4 .home_support_list_item_img{
  width: calc(226px * var(--home-support-img-resize));
}

.home_support_list + .read_more{
  margin-top: 0;
}


/* コンテンツ */
.home_contents{
  
}
* + .home_contents{
  margin-top: 50px;
}
.home_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents_row + .home_contents_row{
  margin-top: 50px;
}
.home_contents_box1{
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 2;
  order: 2;
}
.home_contents_box2{
  width: 100%;
  padding: 30px 20px 30px 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  order: 1;
}
.home_contents_box2:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  width: 54.76%;
  background: #f1e5dc;
}

.home_contents_head{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.home_contents_head_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  color: #f5f5f5;
  text-transform: uppercase;
  
}
.home_contents_head_ja{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: -5px;
  padding: 2px 10px 4px;;
}
.home_contents_title{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.428;
  margin-bottom: 15px;
}
.home_contents_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.home_contents_img{
  
}
.home_contents_img.img_fit:before{
  padding-top: 83.478%;
}

.home_contents_row.color1 .home_contents_head_ja{
  background: var(--sub-color);
  color: #FFF;
}
.home_contents_row.color2 .home_contents_head_ja{
  background: var(--main-color);
  color: #FFF;
}
.home_contents_row.color1 .home_contents_box2:after{
  background: #f1e5dc;
}
.home_contents_row.color2 .home_contents_box2:after{
  background: #e9f4f1;
}


.home_tt1{
  text-align: center;
}
.home_tt1_en{
  font-size: 36px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
@media (min-width:768px){
  .home_tt1_en{
    font-size: 54px;
  }
}
@media (min-width:1024px){
  .home_tt1_en{
    font-size: 62px;
  }
}
@media (min-width:1470px){
  .home_tt1_en{
    font-size: 80px;
  }
}

@media (max-width:374px){

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

}

@media (max-width:1023px){


  /* サポート（一覧） */
  .home_support_list{
    --home-support-img-resize: 0.4;
  }

  .home_support_list_item_box1_1{
    margin-bottom: 10px;
  }
  .home_support_list_item_box2_1{
    margin-bottom: 15px;
  }
  .home_support_list_item_box2_2{
    margin-bottom: 15px;
  }
  .home_support_list_item.tate .home_support_list_item_head_num,
  .home_support_list_item.yoko .home_support_list_item_head_num{
    top: 0;
    left: 0;
    right: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .home_support_list_item.tate .home_support_list_item_head_en,
  .home_support_list_item.yoko .home_support_list_item_head_en{
    right: 3px;
    bottom: 3px;
    
  }
  
  
  .home_support_list_item_desc{
    /*padding-right: 75px;*/
  }
  .home_support_list_item_img{
    /*width: 70px;*/
  }
  .home_support_list_item.tate .home_support_list_item_img{
    left: 75px;
  }
  .home_support_list_item.yoko .home_support_list_item_img{
    left: 75px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, calc(-100% + 30px));
  }
  
  .home_support_list_item_head_title{
    display: block;
    position: relative;
    z-index: 2;
  }
  .home_support_list_item.tate .home_support_list_item_head_title{
    margin-top: 15px;
  }
  .home_support_list_item.tate .home_support_list_item_img,
  .home_support_list_item.yoko .home_support_list_item_img {
     left: 125px;
  }
}
@media (max-width:767px){
  
  /* サポート（一覧） */
  .home_support_list{
    --home-support-img-resize: 0.3;
  }
  .home_support_list_item.tate .home_support_list_item_img {
     left: 75px;
  }
  
  .home_support_list_item:last-child{
    margin-bottom: 25px;
  }
}
@media (min-width:768px){

  /* 概要 */
  .home_about{
  }
  .home_about_box1{
  }
  .home_about_box2{
  }
  .home_about_box3{
  }

  .home_about_title{
    font-size: 42px;
    margin-bottom: 30px;
  }
  
  /* 概要2 */
  .home_about2{
  }
  .home_about2_box1{
    margin-top: 30px;
  }
  .home_about2_box2{
  }
  
  /* スタート */
  .home_start_sec{
  }
  .home_start_bg{
    position: absolute;
    z-index: -1;
    inset: 0;
  }
  .home_start_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .home_start_inner{
    justify-content: center;
    width: 200px;
    padding: 25px 0 15px;
  }
  .home_start_title{
    font-size: 30px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  
  /* サポート(head) */
  .home_support_head{
  }
  .home_support_head_title{
    font-size: 45px;
    margin-bottom: 25px;
  }
  .home_support_head_title strong{
    font-size: 1.388em;
  }
  .home_support_head_en{
    font-size: 46px;
    bottom: 100%;
    left: 50%;
    transform: rotate(-9deg) translate(0, -62%);
  }
  .home_support_head_msg{
  }
  
  
  /* サポート（一覧） */
  .home_support_list_item {
    margin-bottom: 75px;
  }

  .home_support_list_item_head_num{
    font-size: 80px;
  }
  .home_support_list_item.tate 
  .home_support_list_item_head{
    min-height: 70px;
  }
  .home_support_list_item_head_title{
    font-size: 26px;
  }
  .home_support_list_item_head_en{
    font-size: 23px;
  }
  .home_support_list_item_desc_title {
    font-size: 26px;
  }
  .home_support_list + .read_more{
    margin-top: -15px;
  }
  
  /* コンテンツ */
  .home_contents{

  }
  * + .home_contents{
    margin-top: 50px;
  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 50px;
  }
  .home_contents_box1{
    margin-top: 0;
  }
  .home_contents_box2{
    padding: 55px 35px 55px 0;
    margin-top: 55px;
  }

  .home_contents_head{
    margin-bottom: 20px;
  }
  .home_contents_head_en{
    font-size: 80px;
  }
  .home_contents_head_ja{
    font-size: 30px;
    margin-top: -10px;
    padding: 1px 10px 5px;;
  }
  .home_contents_title{
    font-size: 32px;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  .home_contents_txt{
    font-size: 16px;
    /*line-height: 2.375;*/
  }

}
@media (min-width:1024px){
  
  /* 概要 */
  .home_about{
  }
  .home_about_box1{
    width: 25%;
    margin-top: 130px;
    order: 1;
  }
  .home_about_box2{
    width: 44%;
    margin-top: 30px;
    order: 2;
  }
  .home_about_box3{
    width: 25%;
    order: 3;
  }
  .home_about_title{
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  /* 概要2 */
  .home_about2{
  }
  .home_about2_box1{
    width: 52%;
    margin-top: 0;
    order: 1;
  }
  .home_about2_box2{
    width: 44%;
    margin-top: 0;
    order: 2;
  }
  .home_about2 .home_about_title{
    text-align: left;
  }
  
  
  /* スタート */
  .home_start_inner{
    width: 300px;
    padding: 25px 0 15px;
  }
  .home_start_title{
    /*font-size: 40px;*/
  }
  
  /* サポート(head) */
  .home_support_head_msg{
    text-align: center;
  }
  
  
  /* サポート（一覧） */
  .home_support_list{
    --home-support-img-resize: 0.5;
  }
  * + .home_support_list{
    margin-top: 95px;
  }
  .home_support_list_item{
    margin-bottom: 50px;
  }
  .home_support_list_item_inner{
  }
  .home_support_list_item_box1_1{
    width: 135px;
  }
  .home_support_list_item_box1_2{
    width: calc(100% - 135px - 15px);
  }
  .home_support_list_item_box2_1{
    width: 100%;
    margin-bottom: 20px;
  }
  .home_support_list_item_box2_2{
    width: 90px;
  }
  .home_support_list_item_box2_3{
    width: calc(100% - 90px - 15px );
  }

  .home_support_list_item_head_num{
    font-size: 100px;
  }
  .home_support_list_item_head_en{
    font-size: 26px;
  }
  .home_support_list_item_head_img{
    
  }
  .home_support_list_item_head_title{
    font-size: 20px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .home_support_list_item_img{
  }

  .home_support_list_item_desc{
    min-height: 400px;
    height: 100%;
    padding: 15px 25px 25px 35px;
    filter: drop-shadow(0 0 6px #CCC);
  }
  .home_support_list_item_desc_title{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .home_support_list_item_desc_txt{
    /*font-size: 18px;*/
    /*line-height: 2;*/
  }

  .home_support_list_item.tate{
    width: 55.26%;
  }
  .home_support_list_item.yoko{
    width: 38.48%;
    width: 42%;
  }
  
  .home_support_list_item.tate .home_support_list_item_head_en{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    left: 3px;
    bottom: 10px;
  }
  .home_support_list_item.tate .home_support_list_item_head_num{
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  .home_support_list_item.tate .home_support_list_item_head{
    width: 60px;
    min-height: 450px;
    height: 100%;
  }
  .home_support_list_item.tate .home_support_list_item_img{
    bottom: 0;
    left: 30px;
  }
  
  .home_support_list_item.yoko .home_support_list_item_head_en{
    bottom: 5px;
    right: 5px;
  }
  .home_support_list_item.yoko .home_support_list_item_head_num{
    top: 0;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .home_support_list_item.yoko .home_support_list_item_head{
    width: 100%;
    min-height: 60px;
  }
  .home_support_list_item.yoko .home_support_list_item_img{
    top: 0;
    left: 0;
  }

  /* 位置調整 */
  .home_support_list_item.pos2{
    margin-top: 110px;
  }
  .home_support_list_item.pos3{
    margin-top: -175px;
  }
  .home_support_list_item.pos4{
    margin-right: 0;
  }
  .home_support_list_item.pos4.tate .home_support_list_item_head{
    min-height: 500px;
  }
  
  /* コンテンツ */
  .home_contents{

  }
  * + .home_contents{
    margin-top: 50px;
  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 50px;
  }
  .home_contents_box1{
    width: 38.48%;
    width: 46%;
    margin-top: 0;
  }
  .home_contents_box2{
    width: 50%;
    
    margin-top: 55px;
  }

  .home_contents_head{
    /*margin-bottom: 50px;*/
  }
  .home_contents_head_en{
    /*font-size: 100px;*/
  }
  .home_contents_head_ja{
    font-size: 26px;
    /*margin-top: -18px;*/
    /*padding: 2px 10px 4px;;*/
  }
  .home_contents_title{
    font-size: 28px;
    white-space: nowrap;
    /*margin-bottom: 48px;*/
  }
  .home_contents_txt{
    /*font-size: 16px;*/
    /*line-height: 2.375;*/
  }

  .home_contents_row:nth-child(odd) .home_contents_box1{
    order: 1;
  }
  .home_contents_row:nth-child(odd) .home_contents_box2{
    order: 2;
    padding: 55px 35px 55px 0;
  }
  .home_contents_row:nth-child(odd) .home_contents_box2:after{
    
  }
  .home_contents_row:nth-child(even) .home_contents_box1{
    order: 2;
  }
  .home_contents_row:nth-child(even) .home_contents_box2{
    padding: 55px 0 55px 35px;
    order: 1;
  }
  .home_contents_row:nth-child(even) .home_contents_box2:after{
    left: 0;
    right: auto;
  }
  
}
@media (min-width:1200px){

  /* 概要 */
  .home_about_title{
    font-size: 46px;
    margin-bottom: 30px;
  }
  
}
@media (min-width:1470px){
  
  /* 概要 */
  .home_about{
  }
  .home_about_box1{
    width: 25.98%;
    margin-top: 130px;
  }
  .home_about_box2{
    width: 39.47%;
    margin-top: 30px;
  }
  .home_about_box3{
    width: 25.98%;
  }
  .home_about_title{
    font-size: 52px;
    margin-bottom: 35px;
  }
  
  /* 概要2 */
  .home_about2{
  }
  .home_about2_box1{
    width: 51.97%;
    margin-top: 0;
  }
  .home_about2_box2{
    width: 41.77%;
    margin-top: 0;
  }
  
  /* スタート */
  .home_start_inner{
    width: 350px;
    padding: 25px 0 0;
  }
  .home_start_title{
    font-size: 40px;
  }
  
  /* サポート(head) */
  .home_support_head{
  }
  .home_support_head_title{
    font-size: 64px;
    margin-bottom: 25px;
  }
  .home_support_head_en{
    font-size: 70px;
    left: 61%;
    /*transform: rotate(-9deg) translate(0, -62%);*/
  }
  .home_support_head_msg{
    text-align: center;
  }

  /* サポート（一覧） */
  .home_support_list{
    --home-support-img-resize: 1.0;
  }
  * + .home_support_list{
    margin-top: 95px;
  }
  .home_support_list_item{
    margin-bottom: 75px;
  }
  .home_support_list_item_inner{
  }
  .home_support_list_item_box1_1{
    width: 305px;
  }
  .home_support_list_item_box1_2{
    width: calc(100% - 305px - 25px);
  }
  .home_support_list_item_box2_1{
    width: 100%;
    margin-bottom: 20px;
  }
  .home_support_list_item_box2_2{
    width: 150px;
  }
  .home_support_list_item_box2_3{
    width: calc(100% - 150px - 25px );
  }

  .home_support_list_item_head_num{
    font-size: 140px;
  }
  .home_support_list_item_head_en{
    font-size: 26px;
  }
  .home_support_list_item_head_img{
    
  }
  .home_support_list_item_head_title{
    font-size: 32px;
  }
  .home_support_list_item_img{
  }

  .home_support_list_item_desc{
    min-height: 400px;
    padding: 15px 25px 25px 35px;
  }
  .home_support_list_item_desc_title{
    font-size: 28px;
    margin-bottom: 15px;
  }
  .home_support_list_item_desc_txt{
    font-size: 18px;
    line-height: 2;
  }

  .home_support_list_item.tate{
    width: 55.26%;
  }
  .home_support_list_item.yoko{
    width: 38.48%;
  }
  
  .home_support_list_item.tate .home_support_list_item_head_en{
    left: 3px;
    bottom: 10px;
  }
  .home_support_list_item.tate .home_support_list_item_head_num{
  }
  .home_support_list_item.tate .home_support_list_item_head{
    width: 100px;
    min-height: 450px;
  }
  .home_support_list_item.tate .home_support_list_item_img{
  }
  
  .home_support_list_item.yoko .home_support_list_item_head_en{
  }
  .home_support_list_item.yoko .home_support_list_item_head_num{
  }
  .home_support_list_item.yoko .home_support_list_item_head{
  }
  .home_support_list_item.yoko .home_support_list_item_head{
    width: 100%;
    min-height: 100px;
  }
  .home_support_list_item.yoko .home_support_list_item_img{
  }

  /* 位置調整 */
  .home_support_list_item.pos2{
    margin-top: 110px;
  }
  .home_support_list_item.pos3{
    margin-top: -175px;
  }
  .home_support_list_item.pos4{
    margin-right: 30px;
  }
  .home_support_list_item.pos4.tate .home_support_list_item_head{
    min-height: 500px;
  }
  
  /* コンテンツ */
  .home_contents{

  }
  * + .home_contents{
    margin-top: 50px;
  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 50px;
  }
  .home_contents_box1{
    width: 38.48%;
    margin-top: 0;
  }
  .home_contents_box2{
    width: 55.26%;
    margin-top: 55px;
  }

  .home_contents_head{
    margin-bottom: 25px;
  }
  .home_contents_head_en{
    font-size: 80px;
  }
  .home_contents_head_ja{
    font-size: 30px;
    margin-top: -18px;
    padding: 2px 10px 4px;;
  }
  .home_contents_title{
    font-size: 30px;
    white-space: nowrap;
    margin-bottom: 25px;
  }
  .home_contents_txt{
    line-height: 2.375;
  }
  
}
@media (min-width:1536px){

  /* 概要 */
  .home_about_title{
    /*font-size: 54px;*/
    /*margin-bottom: 42px;*/
  }
  
  .home_contents_head{
    margin-bottom: 50px;
  }
  .home_contents_head_en{
    font-size: 90px;
  }
  .home_contents_head_ja{
    font-size: 36px;
    margin-top: -18px;
    padding: 2px 10px 4px;;
  }
  .home_contents_title{
    font-size: 36px;
    white-space: nowrap;
    margin-bottom: 48px;
  }
  .home_contents_txt{
    font-size: 16px;
    line-height: 2.375;
  }
}
@media (min-width:1720px){

  /* 概要 */
  .home_about_title{
    font-size: 58px;
    margin-bottom: 42px;
  }
  
  .home_contents_head{
    margin-bottom: 50px;
  }
  .home_contents_head_en{
    font-size: 100px;
  }
  .home_contents_head_ja{
    font-size: 42px;
    margin-top: -18px;
    padding: 2px 10px 4px;;
  }
  .home_contents_title{
    font-size: 42px;
    white-space: nowrap;
    margin-bottom: 48px;
  }
  .home_contents_txt{
    font-size: 16px;
    line-height: 2.375;
  }
  
  /* サポート(head) */
  .home_support_head{
  }
  .home_support_head_title{
    font-size: 72px;
    margin-bottom: 25px;
  }
  
  .home_support_list_item_desc_title{
    font-size: 34px;
    margin-bottom: 15px;
  }
}




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

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

}
.pg_seekers .section.sec1{
  padding-top: 0;
  padding-bottom: 50px;
  background-image: url('https://agent-styleplus.com/system_panel/uploads/images/bg_logo_or.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom -100px;
}
.pg_seekers .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f5f5;
}
.pg_seekers .section.sec3{
  padding-top: 50px;
  background-image: url('https://agent-styleplus.com/system_panel/uploads/images/seekers_sec2_bg.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right top -130px;
}
.pg_seekers .section.sec4{
  padding-top: 0;
}


@media (max-width:374px){

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

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

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

  .pg_seekers{

  }
  .pg_seekers .section.sec1{
    padding-top: 0;
    padding-bottom: 100px;
    background-size: 100% auto;
    background-position: center bottom -300px;
  }
  .pg_seekers .section.sec2{
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .pg_seekers .section.sec3{
    padding-top: 70px;
    background-size: 100% auto;
    background-position: right top -320px;
  }
  .pg_seekers .section.sec4{
    padding-top: 30px;
  }

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


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


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

  .pg_seekers .section.sec1{
    padding-top: 20px;
    padding-bottom: 270px;
    background-size: 100% auto;
    background-position: center top -46%;
  }
  .pg_seekers .section.sec2{
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .pg_seekers .section.sec3{
    padding-top: 105px;
    background-size: 100% auto;
    background-position: right top -720px;
  }
  .pg_seekers .section.sec4{
    padding-top: 115px;
  }

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


}

/* メイン部分 */

/* 概要 */
.seekers_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_about_box1{
  width: 100%;
}
.seekers_about_box2{
  width: 100%;
  margin-top: 20px;
}
.seekers_about_box3{
  width: 100%;
  margin-top: 10px;
}
.seekers_about_side_title{
  
}
.seekers_about_side_title_line{
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
}
.seekers_about_side_title_line + .seekers_about_side_title_line{
  margin-top: 5px;
}
.seekers_about_side_title_line p{
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  background: var(--main-color);
  color: #FFF;
  padding: 10px 10px 11px;
}
.seekers_about_title{
  font-size: 26px;
  font-weight: 900;
  line-height: 1.31;
  margin-bottom: 20px;
}
.seekers_about_txt{
  /*padding: 0 70px 0 10px;*/
}
.seekers_about_img1{
  
}
.seekers_about_img1.img_fit:before{
  padding-top: 75.676%;
}
.seekers_about_img2{
  
}
* + .seekers_about_img2{
  margin-top: 12px;
}
.seekers_about_img2.img_fit:before{
  padding-top: 44.324%;
}

/* REASON */
.seekers_reason{
  
}
* + .seekers_reason{
  /*margin-top: 110px;*/
}
.seekers_reason_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seekers_reason_row + .seekers_reason_row{
  margin-top: 50px;
}
.seekers_reason_box1{
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.seekers_reason_box2{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.seekers_reason_head{
  display: flex;
  border-bottom: 1px solid #181818;
  padding-top: 0;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.seekers_reason_head_num{
  font-size: 50px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.seekers_reason_head_en{
  font-size: 50px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  white-space: nowrap;
  /*filter: drop-shadow(0 0 2px #ddd);*/
  /*filter: drop-shadow(0 0 2px #aaa);*/
  color: #FFF;
  margin-left: 15px;
}
.seekers_reason_title{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3888;
  margin-bottom: 5px;
}
.seekers_reason_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.seekers_reason_img{
  
}
.seekers_reason_img.img_fit:before{
  padding-top: 79.412%;
}

.seekers_reason_row:nth-child(odd) .seekers_reason_box1{
}
.seekers_reason_row:nth-child(odd) .seekers_reason_box2{
}
.seekers_reason_row:nth-child(even) .seekers_reason_box1{
}
.seekers_reason_row:nth-child(even) .seekers_reason_box2{
}

/*.seekers_reason_row:nth-child(odd) .seekers_reason_head_num{
  margin-left: auto;
  color: var(--main-color);
}
.seekers_reason_row:nth-child(odd) .seekers_reason_head_en{
  right: 100%;
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
}
.seekers_reason_row:nth-child(even) .seekers_reason_head_num{
  color: var(--sub-color);
}
.seekers_reason_row:nth-child(even) .seekers_reason_head_en{
  left: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}*/

/* MENU */
.seekers_menu{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12.5px;
  margin-right: -12.5px;
}
.seekers_menu_item{
  width: 100%;
  padding: 0 12.5px;
}
.seekers_menu_item:nth-child(n+2){
  margin-top: 15px;
}
.seekers_menu_item_inner{
  background: #f6f6f6;
  background: #fff;
  border: 1px solid var(--main-color);
  border-right: 10px solid var(--main-color);
  position: relative;
  z-index: 1;
  padding: 50px 15px 30px;
  height: 100%;
}
.seekers_menu_item_num{
  font-size: 70px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 15px;
}
.seekers_menu_item_illust{
  text-align: center;
}
.seekers_menu_item_illust img{
  height: 100px;
}
.seekers_menu_item_title{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.seekers_menu_item_title_txt1{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}
.seekers_menu_item_title_txt2{
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 10px;
}
.seekers_menu_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


/* FLOW(head) */
.seekers_flow_head{
  width: 100%;
  margin-bottom: 30px;
}
* + .seekers_flow_head{
}
.seekers_flow_head_title{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4166;
  text-align: center;
  margin-bottom: 10px;
}
.seekers_flow_head_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* FLOW */
.seekers_flow{
  display: flex;
  flex-wrap: wrap;
  /*flex-direction: row-reverse;*/
  margin-left: -10px;
  margin-right: -10px;
}
.seekers_flow_item{
  width: 100%;
  padding: 0 10px;
}
.seekers_flow_item:nth-child(n+2){
  margin-top: 15px;
}
.seekers_flow_item_inner{
  background: #f3fcf4;
  border: 1px solid var(--main-color);
  padding: 20px 20px;
  height: 100%;
}
.seekers_flow_item_head{
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 15px;
}
.seekers_flow_item_head_num{
  font-size: 40px;
  font-weight: 500;
  margin-right: 10px;
}
.seekers_flow_item_head_title{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--main-color);
}
.seekers_flow_item_txt{
  
}
.seekers_flow_item_img{
  
}
.seekers_flow_item_img.img_fit:before{
  padding-top: 47.619%;
}

@media (max-width:767px){

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

  /* 概要 */
  .seekers_about{
  }
  .seekers_about_box1{
    width: 145px;
  }
  .seekers_about_box2{
    width: calc(100% - 145px);
    margin-top: 0;
  }
  .seekers_about_box3{
    width: 100%;
    margin-top: 30px;
  }
  .seekers_about_side_title{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .seekers_about_side_title_line{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .seekers_about_side_title_line + .seekers_about_side_title_line{
    margin-top: 0;
    margin-right: 5px;
  }
  .seekers_about_side_title_line p{
    font-size: 28px;
    padding: 12px 12px 0;
  }
  .seekers_about_title{
    font-size: 42px;
    margin-top: -10px;
    margin-bottom: 15px;
  }
  .seekers_about_txt{
    padding: 0 ;
  }
  
  .seekers_about_img1.img_fit:before{
    padding-top: 75.676%;
    padding-top: 50%;
  }
  .seekers_about_img2.img_fit:before{
    padding-top: 50%;
  }

  * + .seekers_about_img2{
    margin-top: 12px;
  }

  /* REASON */
  .seekers_reason{

  }
  .seekers_reason_row{
  }
  .seekers_reason_row + .seekers_reason_row{
    margin-top: 50px;
  }
  .seekers_reason_box1{
    margin-top: 0;
  }
  .seekers_reason_box2{
    margin-top: 0;
  }
  .seekers_reason_head{
    padding-top: 40px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .seekers_reason_head_num{
    font-size: 72px;
  }
  .seekers_reason_head_en{
    font-size: 74px;
  }
  .seekers_reason_title{
    font-size: 26px;
    margin-bottom: 15px;
  }
  .seekers_reason_txt{
    font-size: 16px;
  }
  
  /* MENU */
  .seekers_menu{
    margin-left: -8px;
    margin-right: -8px;
  }
  .seekers_menu_item{
    width: 50%;
    padding: 0 8px;
  }
  .seekers_menu_item:nth-child(n+2){
    margin-top: 0;
  }
  .seekers_menu_item:nth-child(n+3){
    margin-top: 50px;
  }
  .seekers_menu_item:nth-child(2n){
    /*margin-top: 50px;*/
  }
  /*.seekers_menu_item:nth-child(3n+2){
    margin-top: 70px;
  }*/
  
  .seekers_menu_item_inner{
    padding: 100px 15px 30px;
  }
  .seekers_menu_item_num{
    font-size: 80px;
    top: 10px;
    left: 15px;
  }
  .seekers_menu_item_illust{
  }
  .seekers_menu_item_illust img{
    height: 100px;
  }
  .seekers_menu_item_title{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .seekers_menu_item_title_txt1{
    font-size: 24px;
  }
  .seekers_menu_item_title_txt2{
    font-size: 17px;
    margin-top: 10px;
  }
  .seekers_menu_item_txt{
    font-size: 16px;
  }


  /* FLOW(head) */
  .seekers_flow_head{
    width: 50%;
    margin-bottom: 30px;
    padding-right: 10px;
  }
  * + .seekers_flow_head{
    margin-top: 50px;
  }
  .seekers_flow_head_title{
    font-size: 25px;
    text-align: left;
    margin-bottom: 20px;
  }
  .seekers_flow_head_txt{
    font-size: 16px;
    /*line-height: 2.125;*/
  }

  /* FLOW */
  .seekers_flow{
    flex-direction: row-reverse;
    margin-left: -10px;
    margin-right: -10px;
  }
  .seekers_flow_item{
    width: 50%;
    padding: 0 10px;
  }
  .seekers_flow_item:nth-child(n+2){
    margin-top: 0;
  }
  .seekers_flow_item:nth-child(n+3){
    margin-top: 20px;
  }
  .seekers_flow_item:nth-child(2n+1) {
    transform: translate(0, -325px);
  }
  .seekers_flow_item_inner{
    padding: 25px 25px;
  }
  .seekers_flow_item_head{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .seekers_flow_item_head_num{
    font-size: 50px;
    margin-right: 10px;
  }
  .seekers_flow_item_head_title{
    font-size: 20px;
  }

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

  /* 概要 */
  .seekers_about{
  }
  .seekers_about_box1{
    width: 12.5%;
  }
  .seekers_about_box2{
    width: 50.68%;
  }
  .seekers_about_box3{
    width: 36.51%;
    margin-top: 0;
  }
  .seekers_about_side_title_line p{
    font-size: 20px;
    padding: 12px 12px 0;
  }
  .seekers_about_title{
    font-size: 36px;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  .seekers_about_txt{
    padding: 0 20px 0 5px;
  }
  
  .seekers_about_img1.img_fit:before{
    padding-top: 75.676%;
  }
  .seekers_about_img2.img_fit:before{
    padding-top: 44.324%;
  }

  /* REASON */
  .seekers_reason{

  }
  .seekers_reason_row{
  }
  .seekers_reason_row + .seekers_reason_row{
    margin-top: 75px;
  }
  .seekers_reason_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .seekers_reason_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .seekers_reason_head{
    padding-top: 5px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .seekers_reason_head_num{
    font-size: 72px;
  }
  .seekers_reason_head_en{
    font-size: 90px;
    margin-left: 0;
    position: absolute;
    z-index: 1;
    top: -12px;
  }
  .seekers_reason_title{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .seekers_reason_txt{
    font-size: 16px;
  }
  
  
  
  .seekers_reason_row:nth-child(odd) .seekers_reason_box1{
    order: 1;
  }
  .seekers_reason_row:nth-child(odd) .seekers_reason_box2{
    order: 2;
  }
  .seekers_reason_row:nth-child(even) .seekers_reason_box1{
    order: 2;
  }
  .seekers_reason_row:nth-child(even) .seekers_reason_box2{
    order: 1;
  }

  .seekers_reason_row:nth-child(odd) .seekers_reason_head_num{
    margin-left: auto;
    color: var(--main-color);
  }
  .seekers_reason_row:nth-child(odd) .seekers_reason_head_en{
    right: 100%;
    -webkit-transform: translate(50%, -1%);
    transform: translate(50%, -1%);
  }
  .seekers_reason_row:nth-child(even) .seekers_reason_head_num{
    color: var(--sub-color);
  }
  .seekers_reason_row:nth-child(even) .seekers_reason_head_en{
    left: 100%;
    -webkit-transform: translate(-50%, -1%);
    transform: translate(-50%, -1%);
  }
  
  /* FLOW(head) */
  .seekers_flow_head{
    width: 50%;
    /*margin-bottom: 75px;*/
  }
  * + .seekers_flow_head{
    /*margin-top: 95px;*/
  }
  .seekers_flow_head_title{
    font-size: 32px;
    margin-bottom: 20px;
  }
  .seekers_flow_head_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  
  /* FLOW */
  .seekers_flow{
    margin-left: -10px;
    margin-right: -10px;
  }
  .seekers_flow_item{
    width: 50%;
    padding: 0 10px;
  }
  .seekers_flow_item:nth-child(2n+1) {
    transform: translate(0, -340px);
  }
  .seekers_flow_item_inner{
    padding: 30px 30px;
  }
  .seekers_flow_item_head{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .seekers_flow_item_head_num{
    font-size: 60px;
    margin-right: 25px;
  }
  .seekers_flow_item_head_title{
    font-size: 24px;
  }
}
@media (min-width:1200px){

  /* 概要 */
  .seekers_about_side_title_line p{
    font-size: 28px;
  }
  .seekers_about_title{
    font-size: 42px;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  
  /* MENU */
  .seekers_menu{
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .seekers_menu_item{
    width: 33.333%;
    padding: 0 12.5px;
  }
  .seekers_menu_item:nth-child(2n){
    margin-top: 0;
  }
  .seekers_menu_item:nth-child(n+3){
    margin-top: 0;
  }
  .seekers_menu_item:nth-child(n+4){
    margin-top: 70px;
  }
  .seekers_menu_item:nth-child(3n+2){
    /*margin-top: 70px;*/
  }
  
  .seekers_menu_item_inner{
    /*padding: 100px 15px 30px;*/
  }
  .seekers_menu_item_num{
    /*font-size: 120px;*/
    top: 10px;
    left: 15px;
  }
  .seekers_menu_item_illust{
  }
  .seekers_menu_item_illust img{
    height: 110px;
  }
  .seekers_menu_item_title{
    /*margin-top: 45px;*/
    /*margin-bottom: 35px;*/
  }
  .seekers_menu_item_title_txt1{
    font-size: 30px;
  }
  .seekers_menu_item_title_txt2{
    font-size: 20px;
    /*margin-top: 10px;*/
  }
  .seekers_menu_item_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  
  /* FLOW */
  .seekers_flow_item:nth-child(2n+1) {
    transform: translate(0, -275px);
  }

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

  /* 概要 */
  .seekers_about_side_title_line p{
    font-size: 34px;
  }
  .seekers_about_title{
    font-size: 48px;
    margin-top: -10px;
    margin-bottom: 30px;
  }
  .seekers_about_txt{
    padding: 0 40px 0 5px;
  }
  
  /* REASON */
  .seekers_reason{

  }
  * + .seekers_reason{
    margin-top: 110px;
  }
  .seekers_reason_row{
  }
  .seekers_reason_row + .seekers_reason_row{
    margin-top: 100px;
  }
  .seekers_reason_box1{
    /*width: 44.73%;*/
    /*margin-top: 0;*/
  }
  .seekers_reason_box2{
    /*width: 50.98%;*/
    /*margin-top: 0;*/
  }
  .seekers_reason_head{
    padding-top: 40px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  .seekers_reason_head_num{
    font-size: 72px;
  }
  .seekers_reason_head_en{
    font-size: 130px;
    margin-left: 0;
    position: absolute;
    z-index: 1;
    top: -15px;
  }
  .seekers_reason_title{
    font-size: 32px;
    margin-bottom: 15px;
  }
  .seekers_reason_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  
  /* MENU */
  .seekers_menu{
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .seekers_menu_item{
    width: 33.333%;
    padding: 0 12.5px;
  }
  .seekers_menu_item:nth-child(2n+1){
    /*margin-top: 0;*/
  }
  .seekers_menu_item:nth-child(3n+2){
    /*margin-top: 70px;*/
  }
  
  .seekers_menu_item_inner{
    padding: 100px 15px 30px;
    min-height: 610px;
  }
  .seekers_menu_item_num{
    font-size: 120px;
    top: 10px;
    left: 15px;
  }
  .seekers_menu_item_illust{
  }
  .seekers_menu_item_illust img{
    height: auto;
  }
  .seekers_menu_item_title{
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .seekers_menu_item_title_txt1{
    font-size: 32px;
  }
  .seekers_menu_item_title_txt2{
    font-size: 24px;
  }
  .seekers_menu_item_txt{
    font-size: 16px;
  }
  .seekers_menu + .read_more{
    margin-top: 75px;
  }
  
  /* FLOW(head) */
  .seekers_flow_head{
    width: 50%;
    margin-bottom: 75px;
  }
  * + .seekers_flow_head{
    margin-top: 95px;
  }
  .seekers_flow_head_title{
    font-size: 48px;
    text-align: left;
    margin-bottom: 20px;
  }
  .seekers_flow_head_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  
  /* FLOW */
  .seekers_flow{
    margin-left: -10px;
    margin-right: -10px;
  }
  .seekers_flow_item{
    width: 50%;
    padding: 0 10px;
  }
  .seekers_flow_item:nth-child(2n+1) {
    transform: translate(0, -358px);
  }
  .seekers_flow_item_inner{
    padding: 60px 60px;
  }
  .seekers_flow_item_head{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .seekers_flow_item_head_num{
    font-size: 72px;
    margin-right: 25px;
  }
  .seekers_flow_item_head_title{
    font-size: 30px;
  }
}
@media (min-width:1536px){

  

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

  /* 概要 */
  .seekers_about{
  }
  .seekers_about_box1{
    width: 12.5%;
  }
  .seekers_about_box2{
    width: 48.68%;
    width: 50.68%;
    margin-top: 0;
  }
  .seekers_about_box3{
    width: 36.51%;
    margin-top: 0;
  }
  .seekers_about_side_title_line p{
    font-size: 42px;
    padding: 12px 12px 0;
  }
  .seekers_about_title{
    font-size: 58px;
    margin-top: -10px;
    margin-bottom: 40px;
  }
  .seekers_about_txt{
    padding: 0 70px 0 10px;
  }
  
  /* REASON */
  .seekers_reason_title{
    font-size: 36px;
  }
  
  .seekers_menu_item_title_txt1{
    font-size: 38px;
  }

}



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

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

}
.pg_companies .section.sec1{
  padding-bottom: 50px;
  background-image: url(https://agent-styleplus.com/system_panel/uploads/images/bg_logo_gr.png);
  background-size: 140% auto;
  background-repeat: no-repeat;
  /*background-position: left -525px bottom 45px;*/
  background-position: left -55px top 30%;
}
.pg_companies .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(https://agent-styleplus.com/system_panel/uploads/images/bg_gray.png);
  background-size: auto auto;
  background-repeat: repeat;
}
.pg_companies .section.sec3{
  padding-top: 50px;
  background-image: url(https://agent-styleplus.com/system_panel/uploads/images/bg_logo_or2.png);
  background-size: 140% auto;
  background-repeat: no-repeat;
  /*background-position: right -855px top 345px;*/
  background-position: right -150px top 20%;
}


@media (max-width:374px){

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

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

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

  .pg_companies .section.sec1{
    padding-bottom: 75px;
    /*background-size: auto auto;*/
    /*background-position: left -525px bottom 45px;*/
  }
  .pg_companies .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
    background-size: auto auto;
  }
  .pg_companies .section.sec3{
    padding-top: 75px;
    /*background-size: auto auto;*/
    /*background-position: right -855px top 345px;*/
  }

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


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


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


  .pg_companies .section.sec1{
    padding-bottom: 135px;
    background-size: 100% auto;
    background-position: left -250px bottom 45px;
  }
  .pg_companies .section.sec2{
    padding-top: 90px;
    padding-bottom: 100px;
    background-size: auto auto;
  }
  .pg_companies .section.sec3{
    padding-top: 90px;
    background-size: 100% auto;
    background-position: right -400px top 345px;
  }
  
}
@media (min-width:1720px){


  .pg_companies .section.sec1{
    background-size: auto auto;
    background-position: left -525px bottom 45px;
  }
  .pg_companies .section.sec2{
    background-size: auto auto;
  }
  .pg_companies .section.sec3{
    background-size: auto auto;
    background-position: right -855px top 345px;
  }
  
}

/* メイン部分 */

/* ABOUT */
.companies_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.companies_about_box1{
  width: 100%;
  margin-top: 0;
}
.companies_about_box2{
  width: 100%;
  margin-top: 10px;
}
.companies_about_box3{
  width: 100%;
  margin-top: 20px;
}
.companies_about_head{
  margin-bottom: 10px;
}
.companies_about_head_en{
  font-size: 60px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.companies_about_head_ja{
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  background: var(--main-color);
  color: #FFF;
  padding: 2px 8px 3px;
}
* + .companies_about_head_ja{
  margin-top: 15px;
}
.companies_about_title{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
}
.companies_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.companies_about_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.companies_about_imgs_img1{
  width: 42.76%;
}
.companies_about_imgs_img1.img_fit:before{
  padding-top: 100%;
}
.companies_about_imgs_img2{
  width: 55.26%;
  margin-top: 30px; 
}
.companies_about_imgs_img2.img_fit:before{
  padding-top: 77.381%;
}

/* ASSIGN */
.companies_assign_wrap{
  
}
* + .companies_assign_wrap{
  margin-top: 50px;
}
.companies_assign{
  display: flex;
  flex-wrap: wrap;
  
  margin-left: -12px;
  margin-right: -12px;
}
.companies_assign_item{
  width: 100%;
  padding: 0 12px;
}
.companies_assign_item:nth-child(n+2){
  margin-top: 15px;
}

.companies_assign_item_inner{
  background: var(--main-color);
  padding: 36px 30px ;
  height: 100%;
  position: relative;
  z-index: 1;
}
.companies_assign_item_inner:after{
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15px;
  background: #FFF;
  border: 1px solid #e9e5db;
}
.companies_assign_item_title{
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--sub-color);
  padding-left: 28px;
  /*padding-left: 45px;*/
  position: relative;
  z-index: 1;
}
.companies_assign_item_title:before{
  content: "\f058";
  /*font-size: 38px;*/
  font-size: 1.46em;
  font-size: 20px;
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 0;
  /*left: 5px;*/
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.companies_assign_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  border-top: 1px solid #c9c9c9;
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 0;
}

/* STRENGTH */
.companies_strength{
  
}
* + .companies_strength{
  margin-top: 50px;
}
.companies_strength_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.companies_strength_row + .companies_strength_row{
  margin-top: 30px;
}
.companies_strength_box1{
  width: 100%;
}
.companies_strength_box2{
  width: 100%;
  margin-top: 30px;
}
.companies_strength_img{
  
}
.companies_strength_img.img_fit:before{
  padding-top: 118.367%;
}
.companies_strength_head{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CCC;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 10px;
}
.companies_strength_head_num{
  display: flex;
  /*width: 190px;*/
  /*font-size: 1em;*/
  width: 85px;
  font-size: 1em;
}
.companies_strength_head_num_p1{
  display: flex;
  font-size: 1em;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*padding-top: 15px;*/
  padding-top: 0.75em;
}
.companies_strength_head_num_p1:after{
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  margin: 5px auto 0 0.3571em;
  background: var(--main-color);
}
.companies_strength_head_num_p2{
  font-size: 6em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.companies_strength_head_title{
  width: calc(100% - 85px);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.578;
}
.companies_strength_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* SKILL */
.companies_skill{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tt3 + .companies_skill{
  margin-top: -10px;
}
.companies_skill_box1{
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.companies_skill_box1:before{
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: #c9c9c9;
  background: none;
  margin: 0 auto 15px;
}
.companies_skill_box1:before{
  /*display: none;*/
}
.companies_skill_box2{
  width: 100%;
  /*width: 38.48%;*/
  margin-top: 20px;
}
.companies_skill_box3{
  width: 100%;
  /*width: 58.22%;*/
  margin-top: 20px;
}
.companies_skill_box4{
  width: 100%;
  margin-top: 30px;
}
.companies_skill_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.companies_skill_imgs_img1{
  width: 44.63%;
  margin-top: 50px;
}
.companies_skill_imgs_img1.img_fit:before{
  padding-top: 131.646%;
}
.companies_skill_imgs_img2{
  width: 51.97%;
  
}
.companies_skill_imgs_img2.img_fit:before{
  padding-top: 113.043%;
}

.companies_skill_title{
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.companies_skill_title p{
  letter-spacing: 0;
}
.companies_skill_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}

.companies_skill_title2{
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9c9c9;
}

.companies_skill + .seekers_menu{
  margin-top: 20px;
}

.companies_skill_msg{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}
* + .companies_skill_msg{
  margin-top: 30px;
}
.companies_skill_msg + .read_more{
  margin-top: 15px;
}

@media (max-width:767px){

  .companies_assign_item_title{
    letter-spacing: 0.02em;
  }
  
}
@media (min-width:768px){

  /* ABOUT */
  .companies_about{
  }
  .companies_about_box1{
    margin-top: 0;
  }
  .companies_about_box2{
    margin-top: 20px;
  }
  .companies_about_box3{
    margin-top: 30px;
  }
  .companies_about_head{
    margin-bottom: 25px;
  }
  .companies_about_head_en{
    font-size: 110px;
  }
  .companies_about_head_ja{
    font-size: 24px;
    padding: 2px 8px 3px;
  }
  * + .companies_about_head_ja{
    margin-top: 15px;
  }
  .companies_about_title{
    font-size: 45px;
  }
  .companies_about_txt{
    /*font-size: 18px;*/
    /*line-height: 2.666;*/
  }
  .companies_about_imgs{
  }
  .companies_about_imgs_img1{
  }
  .companies_about_imgs_img2{
    margin-top: 40px; 
  }
  
  /* ASSIGN */
  .companies_assign_wrap{

  }
  * + .companies_assign_wrap{
    margin-top: 100px;
  }
  .companies_assign{
    margin-left: -12px;
    margin-right: -12px;
  }
  .companies_assign_item{
    width: 50%;
    padding: 0 12px;
  }
  .companies_assign_item:nth-child(n+2){
    margin-top: 0;
  }
  .companies_assign_item:nth-child(n+4){
    margin-top: 20px;
  }
  /*.companies_assign_item:nth-child(3n+2){
    margin-top: 30px;
  }
  .companies_assign_item:nth-child(3n){
    margin-top: 60px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+1){
    margin-top: -70px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+2){
    margin-top: -45px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n){
    margin-top: 20px;
  }*/
  .companies_assign_item_inner{
    /*min-height: 280px;*/
    /*padding: 36px 40px 60px;*/
    height: 100%;
  }
  .companies_assign_item_inner:after{
    inset: 15px;
  }
  .companies_assign_item_title{
    font-size: 18px;
    /*padding-left: 65px;*/
    /*padding-left: 45px;*/
  }
  .companies_assign_item_title:before{
    /*font-size: 38px;*/
    /*left: 20px;*/
    /*left: 5px;*/
  }
  .companies_assign_item_txt{
    font-size: 16px;
    line-height: 1.875;
    margin-top: 15px;
    padding-top: 12px;
    /*padding-left: 10px;*/
  }
  
  /* STRENGTH */
  .companies_strength{

  }
  * + .companies_strength{
    margin-top: 50px;
  }
  .companies_strength_row{
  }
  .companies_strength_row + .companies_strength_row{
    margin-top: 50px;
  }
  .companies_strength_box1{
    /*width: 32.22%;*/
  }
  .companies_strength_box2{
    /*width: 57.23%;*/
  }
  .companies_strength_head{
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .companies_strength_head_num{
    width: 120px;
  }
  .companies_strength_head_num_p1{
  }
  .companies_strength_head_num_p2{
  }
  .companies_strength_head_title{
    width: calc(100% - 120px);
    font-size: 28px;
  }
  .companies_strength_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  
  /* SKILL */
  .companies_skill{
  }
  .tt3 + .companies_skill{
    margin-top: -30px;
  }
  .companies_skill_box1{
    width: 100%;
    margin-bottom: 0;
  }
  .companies_skill_box1:before{
    /*height: 70px;*/
    margin: 0 auto 15px;
  }
  .companies_skill_box2{
    width: 100%;
    margin-top: 30px;
  }
  .companies_skill_box3{
    width: 100%;
    margin-top: 30px;
  }
  .companies_skill_box4{
    width: 100%;
    margin-top: 70px;
  }
  .companies_skill_imgs_img1{
    margin-top: 90px;
  }
  
  .companies_skill_title{
    font-size: 32px;
  }
  .companies_skill_txt{
    font-size: 18px;
    line-height: 2;
  }

  .companies_skill_title2{
    font-size: 30px;
    padding-bottom: 20px;
  }

  .companies_skill + .seekers_menu{
    margin-top: 35px;
  }

  .companies_skill_msg{
    font-size: 30px;
  }
  * + .companies_skill_msg{
    margin-top: 50px;
  }
  .companies_skill_msg + .read_more{
    margin-top: 30px;
  }
  
}
@media (min-width:1024px){

  /* ABOUT */
  .companies_about{
  }
  .companies_about_box1{
    width: 57.23%;
    width: 50%;
  }
  .companies_about_box2{
    width: 38.48%;
    width: 48%;
    margin-top: 0;
  }
  .companies_about_box3{
    width: 100%;
    margin-top: 50px;
  }
  .companies_about_head{
    margin-bottom: 25px;
  }
  .companies_about_head_en{
    font-size: 80px;
  }
  .companies_about_head_ja{
    font-size: 24px;
    padding: 2px 12px 4px;
  }
  .companies_about_title{
    font-size: 45px;
  }
  .companies_about_txt{
    /*font-size: 18px;*/
    /*line-height: 2.666;*/
  }
  .companies_about_imgs_img1{
  }
  .companies_about_imgs_img2{
    margin-top: 50px; 
  }
  
  
  /* ASSIGN */
  .companies_assign_item_inner{
    padding: 36px 40px 60px;
  }
  .companies_assign_item_title{
    font-size: 22px;
    padding-left: 65px;
    /*padding-left: 45px;*/
  }
  .companies_assign_item_title:before{
    font-size: 30px;
    left: 20px;
    /*left: 5px;*/
  }
  .companies_assign_item_txt{
    padding-left: 10px;
  }
  
  
  /* STRENGTH */
  .companies_strength{

  }
  * + .companies_strength{
    margin-top: 50px;
  }
  .companies_strength_row{
  }
  .companies_strength_row + .companies_strength_row{
    margin-top: 50px;
  }
  .companies_strength_box1{
    width: 32.22%;
    margin-top: 0;
  }
  .companies_strength_head_num_p1:after{
    height: 20px;
  }
  .companies_strength_box2{
    width: 57.23%;
    margin-top: 0;
  }
  .companies_strength_head{
    /*align-items: center;*/
    /*padding-bottom: 35px;*/
    /*margin-bottom: 40px;*/
  }
  .companies_strength_head_num{
    width: 120px;
    font-size: 14px;
  }
  .companies_strength_head_title{
    width: calc(100% - 120px);
    font-size: 30px;
  }
  .companies_strength_txt{
    font-size: 16px;
    line-height: 1.875;
  }

  .companies_strength_row:nth-child(odd) .companies_strength_box1{
    order: 1;
  }
  .companies_strength_row:nth-child(odd) .companies_strength_box2{
    order: 2;
  }
  .companies_strength_row:nth-child(even) .companies_strength_box1{
    order: 2;
  }
  .companies_strength_row:nth-child(even) .companies_strength_box2{
    order: 1;
  }

  /* SKILL */
  .companies_skill{
  }
  .tt3 + .companies_skill{
    margin-top: -30px;
  }
  .companies_skill_box1{
    width: 100%;
    margin-bottom: 50px;
  }
  .companies_skill_box1:before{
    /*height: 100px;*/
    height: 50px;
    margin: 0 auto 15px;
  }
  .companies_skill_box2{
    width: 100%;
    width: 38.48%;
    margin-top: 30px;
  }
  .companies_skill_box3{
    width: 100%;
    width: 58.22%;
    margin-top: 0;
  }
  .companies_skill_box4{
    width: 100%;
    margin-top: 70px;
  }
  .companies_skill_imgs_img1{
    margin-top: 90px;
  }
  
  .companies_skill_title{
    font-size: 42px;
  }
  .companies_skill_txt{
    font-size: 18px;
    line-height: 2;
  }

  .companies_skill_title2{
    font-size: 30px;
    padding-bottom: 20px;
  }

  .companies_skill + .seekers_menu{
    margin-top: 35px;
  }

  .companies_skill_msg{
    font-size: 30px;
  }
  * + .companies_skill_msg{
    margin-top: 50px;
  }
  .companies_skill_msg + .read_more{
    margin-top: 30px;
  }
  
}
@media (min-width:1200px){

  /* ASSIGN */
  .companies_assign_item_inner{
    padding: 36px 40px 60px;
  }
  .companies_assign_item_title{
    font-size: 26px;
    padding-left: 65px;
    /*padding-left: 45px;*/
  }
  .companies_assign_item_title:before{
    font-size: 38px;
    left: 20px;
    /*left: 5px;*/
  }
  .companies_assign_item_txt{
    padding-left: 10px;
  }

}
@media (min-width:1366px){
  
  /* ASSIGN */
  .companies_assign_wrap{

  }
  * + .companies_assign_wrap{
    margin-top: 100px;
  }
  .companies_assign{
    margin-left: -12px;
    margin-right: -12px;
  }
  .companies_assign_item{
    width: 33.333%;
    padding: 0 12px;
  }
  .companies_assign_item:nth-child(n+4){
    margin-top: 30px;
  }
  /*.companies_assign_item:nth-child(3n+2){
    margin-top: 30px;
  }
  .companies_assign_item:nth-child(3n){
    margin-top: 60px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+1){
    margin-top: -30px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+2){
    margin-top: 0px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n){
    margin-top: 30px;
  }*/
  .companies_assign_item_inner{
    min-height: 300px;
    padding: 36px 40px 60px;
  }
  .companies_assign_item_inner:after{
    inset: 15px;
  }
  .companies_assign_item_title{
    font-size: 20px;
    padding-left: 65px;
    /*padding-left: 45px;*/
  }
  .companies_assign_item_title:before{
    font-size: 38px;
    left: 20px;
    /*left: 5px;*/
  }
  .companies_assign_item_txt{
    font-size: 16px;
    margin-top: 24px;
    padding-top: 18px;
    padding-left: 10px;
  }
  
}
@media (min-width:1470px){

  /* ABOUT */
  .companies_about{
  }
  .companies_about_box1{
    width: 57.23%;
  }
  .companies_about_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .companies_about_box3{
    width: 100%;
    margin-top: 70px;
  }
  .companies_about_head{
    margin-bottom: 25px;
  }
  .companies_about_head_en{
    font-size: 140px;
  }
  .companies_about_head_ja{
    font-size: 30px;
    padding: 0px 12px 4px;
  }
  .companies_about_title{
    font-size: 55px;
  }
  .companies_about_txt{
    font-size: 18px;
    line-height: 2.5;
  }
  .companies_about_imgs_img1{
  }
  .companies_about_imgs_img2{
    margin-top: 80px; 
  }
  
  /* STRENGTH */
  .companies_strength{

  }
  * + .companies_strength{
    margin-top: 50px;
  }
  .companies_strength_row{
  }
  .companies_strength_row + .companies_strength_row{
    margin-top: 50px;
  }
  .companies_strength_box1{
    width: 32.22%;
  }
  .companies_strength_box2{
    width: 57.23%;
  }
  .companies_strength_head{
    padding-bottom: 35px;
    margin-bottom: 40px;
    
  }
  .companies_strength_head_num{
    width: 190px;
    font-size: 20px;
  }
  .companies_strength_head_title{
    width: calc(100% - 190px);
    font-size: 38px;
  }
  .companies_strength_txt{
    line-height: 2.25;
  }

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

  /* ABOUT */
  .companies_about{
  }
  .companies_about_box1{
    width: 57.23%;
  }
  .companies_about_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .companies_about_box3{
    width: 100%;
    margin-top: 110px;
  }
  .companies_about_head{
    margin-bottom: 25px;
  }
  .companies_about_head_en{
    font-size: 160px;
  }
  .companies_about_head_ja{
    font-size: 30px;
    padding: 0px 12px 4px;
  }
  .companies_about_title{
    font-size: 60px;
  }
  .companies_about_txt{
    font-size: 18px;
    line-height: 2.666;
  }
  .companies_about_imgs_img1{
  }
  .companies_about_imgs_img2{
    margin-top: 80px; 
  }

  /* ASSIGN */
  .companies_assign_wrap{

  }
  * + .companies_assign_wrap{
    margin-top: 100px;
  }
  .companies_assign{
    margin-left: -12px;
    margin-right: -12px;
  }
  .companies_assign_item{
    width: 33.333%;
    padding: 0 12px;
  }
  .companies_assign_item:nth-child(n+4){
    margin-top: 30px;
  }
  /*.companies_assign_item:nth-child(3n+2){
    margin-top: 30px;
  }
  .companies_assign_item:nth-child(3n){
    margin-top: 60px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+1){
    margin-top: -70px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n+2){
    margin-top: -45px;
  }
  .companies_assign_item:nth-child(n+4):nth-child(3n){
    margin-top: 20px;
  }*/
  .companies_assign_item_inner{
    min-height: 280px;
    padding: 36px 40px 60px;
  }
  .companies_assign_item_inner:after{
    inset: 15px;
  }
  .companies_assign_item_title{
    font-size: 26px;
    padding-left: 65px;
    /*padding-left: 45px;*/
  }
  .companies_assign_item_title:before{
    font-size: 38px;
    left: 20px;
    /*left: 5px;*/
  }
  .companies_assign_item_txt{
    font-size: 16px;
    margin-top: 24px;
    padding-top: 18px;
    padding-left: 10px;
  }
  
}







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

/* セクション設定 */
.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){


}




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

/* セクション設定 */
.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){


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}

.body_company .pg_header{
  margin-bottom: 0;
}
.pg_company {
  background-image: url('https://agent-styleplus.com/system_panel/uploads/images/company_logo_bg.png');
  background-size: 100% auto;
  background-position: center top -80px;
  background-repeat: no-repeat;
  padding-top: 40px;
}


@media (max-width:374px){

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

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

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

  .pg_company {
    padding-top: 125px;
    background-size: 100% auto;
    background-position: center top -120px;
  }

  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }
  .pg_company .section.sec3{
    padding-top: 125px;
  }
  .pg_company .section.sec4{
    padding-top: 90px;
  }

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


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


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

  .pg_company {
    background-size: 100% auto;
    background-position: center top -588px;
  }

}
@media (min-width:1720px){
  
  .pg_company{
    padding-top: 185px;
  }

}


/* メイン部分 */


/* 概要 */
.company_about_wrap{
  
}
.company_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company_about + .company_about{
  margin-top: 50px;
}
.company_about_box1{
  width: 100%;
}
.company_about_box2{
  width: 100%;
  margin-top: 20px;
}
.company_about_title{
  margin-bottom: 15px;
}
.company_about_title_en{
  font-size: 80px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.company_about_title_ja{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.75;
}
.company_about_txt{
  
}
.company_about_txt p+p{
  margin-top: 1em;
}
.company_about_txt .name{
  font-size: 14px;
}
.company_about_txt strong{
  font-size: 1.28em;
}
.company_about_img{
  
}
.company_about_img.img_fit:before{
  padding-top: 122.222%;
}


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

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

  /* 概要 */
  .company_about{
  }
  .company_about_box1{
    width: 54.05%;
  }
  .company_about_box2{
    width: 40.54%;
    margin-top: 20px;
  }
  .company_about_title{
    margin-bottom: 15px;
  }
  .company_about_title_en{
    font-size: 90px;
    margin-bottom: 25px;
  }
  .company_about_title_ja{
    font-size: 26px;
  }
  .company_about_txt{

  }
  
  .company_about:nth-child(odd) .company_about_box1{
    order: 1;
  }
  .company_about:nth-child(odd) .company_about_box2{
    order: 2;
  }
  .company_about:nth-child(even) .company_about_box1{
    order: 2;
  }
  .company_about:nth-child(even) .company_about_box2{
    order: 1;
  }
  
  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

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

  
  

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

  /* 概要 */
  .company_about{
  }
  .company_about_box1{
    width: 54.05%;
  }
  .company_about_box2{
    width: 40.54%;
    margin-top: 20px;
  }
  .company_about_title{
    margin-bottom: 35px;
  }
  .company_about_title_en{
    font-size: 120px;
    margin-bottom: 40px;
  }
  .company_about_title_ja{
    font-size: 40px;
  }
  .company_about_txt{

  }
  
  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }
  
  * + .company_map{
    margin-top: 80px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 75px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

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


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


}



/* カテゴリNav */
.cmn_cat_nav{
  margin-bottom: 30px;
}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  min-height: 50px;
  padding: 2px 10px 3px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-gothic);
  color: var(--main-color);
  color: #181818;
  background: #FFF;
  border: 2px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border-radius: 25px;
}

.cmn_cat_nav .webgene-item a:after{
  content: "\f13a";
  font-size: 14px;
  font-family: "FontAwesome";
  color: var(--main-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  /*margin-right: -2px;*/
  color: #FFF;
}

.cmn_cat_nav.color2 .webgene-item a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 .webgene-item a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 .webgene-item a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp .webgene-item{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp .webgene-item{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp .webgene-item{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 70px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{
    font-size: 18px;
  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 20px;
    right: 16px;
  }
  .cmn_cat_nav .webgene-item a:hover:after{
    /*margin-right: -5px;*/
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 130px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{
    padding-left: 28px;
  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    width: 20%;
  }

}




/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.news_list_thumb:before,
.news_list_thumb:after{
  content: "";
  top: 0;
  bottom: 0;
  width: 20px;
  background: #FFF;
  pointer-events: none;
}
.news_list_thumb:before{
  right: 100%;
}
.news_list_thumb:after{
  left: 100%;
}
* + .news_list_thumb{
  margin-top: 50px;
}
.sec_head + .news_list_thumb{
  margin-top: 0;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 10px;
  border-right: 1px solid #bfbfbf;
}

.news_list_thumb .webgene-item:nth-child(n+3){
  /*margin-top: 15px;*/
}
.news_list_thumb .webgene-item{
  position: relative;
    z-index: 1;
}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  height: 100%;
  padding: 0;
  padding-bottom: 25px;
}
.news_list_thumb .webgene-item .inner:hover{
  /*background: #e6e1d9;*/
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 0px 0;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  border-radius: 0;
  background-color: #CCC;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: var(--main-color);
  /*border: 1px solid var(--bdr-color);*/
  color: #fff;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
  min-width: 100px;
  text-align: center;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:1023px){
  .news_list_thumb .webgene-item:nth-child(2n){
    border-right: 0;
  }
  .news_list_thumb .webgene-item:nth-child(n+3) .inner{
    padding-top: 15px;
  }
  .news_list_thumb .webgene-item:nth-child(2n+1):nth-child(n+3):before{
    content: "";
    width: 200%;
    height: 1px;
    background: #bfbfbf;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
  }
}
@media (max-width:767px){

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    /*margin-top: 15px;*/
  }
  .news_list_thumb .webgene-item{
    
  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb.home .webgene-item .inner{
    padding-bottom: 0;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

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

  /* 一覧（サムネあり） */

  
  .news_list_thumb .webgene-item .meta .category{
    min-width: 138px;
  }

  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    /*margin-top: 15px;*/
  }
  .news_list_thumb.col3 .webgene-item:nth-child(3n){
    border-right: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    /*border-top: 1px solid #bfbfbf;*/
  }
  .news_list_thumb.col3 .webgene-item:nth-child(3n+1):nth-child(n+4):before{
    content: "";
    width: 300%;
    height: 1px;
    background: #bfbfbf;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
  }
  
  
  .news_list_thumb.col3 .webgene-item:nth-child(n+4) .inner{
    padding-top: 25px;
  }
  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item .inner{
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    /*margin-top: 15px;*/
  }

  .news_list_thumb.col4 .webgene-item:nth-child(4n){
    border-right: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+5) .inner{
    padding-top: 25px;
  }
  
}
@media (min-width:1200px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -20px;
    margin-right: -20px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 20px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: var(--main-color);
  color: #fff;
  padding: 10px 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 5px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #f8751a;
}

/* 詳細 */
.posts_detail{
  border: 0;
  border-bottom: 1px solid var(--bdr-color);
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--bdr-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-right: 20px;
}
.posts_detail .meta .category span{
  display: inline-block;
  min-width: 100px;
  background: var(--main-color);
  /*border: 1px solid var(--bdr-color);*/
  border-radius: 0;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 4px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.posts_detail .meta .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  margin-top: 15px;

}
.posts_detail .post_content{
  /*line-height: 1.875;*/
  text-align: justify;
  word-break: break-all;
}
.posts_detail .post_txt{
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0;
}
.posts_detail .post_txt h1,
.posts_detail .post_txt h2,
.posts_detail .post_txt h3,
.posts_detail .post_txt h4,
.posts_detail .post_txt h5,
.posts_detail .post_txt h6{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  background: #f3fcf4;
  border-left: 5px solid var(--main-color);
  padding: 5px 12px;
  margin-bottom: 10px;
}
.posts_detail .post_txt * + h1,
.posts_detail .post_txt * + h2,
.posts_detail .post_txt * + h3,
.posts_detail .post_txt * + h4,
.posts_detail .post_txt * + h5,
.posts_detail .post_txt * + h6{
  margin-top: 15px;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 12px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    min-width: 100px;
  }
  .posts_detail .meta .category span{
    font-size: 12px;
    /*padding: 2px 5px;*/
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 ;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .posts_detail + .read_more{
    margin-top: 55px;
  }

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

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }


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

  .pg_news{
  }

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

  .pg_news{

  }

  .container.wide .posts_layout_box1{
    width: calc(100% - 255px - 45px);
  }
  .container.wide .posts_layout_box2{
    width: 255px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}





/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact * + .form.formWrap {
  margin-top: 30px;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
  ;
}
.pg_contact .formTd {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd input[name="area[]"]{
  margin-right: 5px;
}
.pg_contact .formTd select[name="pref"],
.pg_contact .formTd select[name="area_select"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: var(--main-color);
}
.pg_contact .formBtn{
  
}
.pg_contact .formBtn.formSend{
  min-width: 250px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #181818;
  border: 2px solid var(--main-color);
  background: #FFF;
  border-radius: 20px;
  padding: 8px 20px 9px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  
  
}

.pg_contact .formBtn.formSend:after{
  content: "\f138";
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  color: var(--main-color);
}
.pg_contact .formBtn.formSend:hover{
  color: #FFF;
  background: var(--main-color);
}
.pg_contact .formBtn.formSend:hover:after{
  margin-right: -5px;
  color: #FFF;
}



.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  height: 39px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_box {
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 0;
  color: #000000;
  margin-top: 60px;
}
@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
  
  .pg_contact .formBtn.formSend{
    min-width: 410px;
    font-size: 18px;
    padding: 20px 20px;
    border-radius: 34px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid var(--main-color);
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 1023px){
  
  .contact_tt{
    font-size: 20px;
    margin-bottom: 25px;
  }
  .contact_tt.privacy{
    margin-bottom: 25px;
  }
  
}
@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 14px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
  
  .privacy_box{
    padding: 20px 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/* 目立たせたいボタンに付けるクラス */
.btn-pulse{
  display: inline-block; /* transform を効かせる */
  animation: btnPulse 1.2s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

/* 拡大縮小アニメーション */
@keyframes btnPulse{
  0%   { transform: scale(1); }
  45%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* hover時は止めたい場合（任意） */
.btn-pulse:hover{
  animation: none;
  transform: scale(1.03);
}

/* 動きが苦手な人向け配慮（推奨） */
@media (prefers-reduced-motion: reduce){
  .btn-pulse{ animation: none; }
}