@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #32333d;
  --sub-color: #3167ae;
  --txt-color: #32333d;

  /* フォント関連 */
  --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;
  
  --arrow-right: url('https://ms-base.co.jp/system_panel/uploads/images/arrow-right.png');
  --arrow-right2: url('https://ms-base.co.jp/system_panel/uploads/images/arrow-right2.svg');
}


/* ******************************
   全体設定
   ****************************** */
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;
}


body{
  background-color: #f3f3f6;
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/body_bg2.png');
  background-repeat: no-repeat;
  background-position: right top;
}
body.body_home{
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/body_bg1.png');
}
body.body_realEstate,
body.body_food,
body.body_consulting{
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/body_bg3.png');
}

#root{
  overflow: hidden;
}

body.gjs-dashed {
  padding-top: 0;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 50px;
  padding: 10px;
  transition: 0.2s all;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo{
    width: 65px;
    display: block;
  }

  .hdr_link{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  /*ボタン*/
  .hdr_link{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    height: 50px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 258px;
    background: #fff;
    color: #32333d;
    /* border-radius: 27px; */
    padding: 0 10px;;
    margin: 5px 5px;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  }
  .hdr_link:hover{
    transform: scale(1.02);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.3);
  }
  .hdr_link p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
  }
  .hdr_link.bg_bl{
    color: #fff;
    border: 1px solid #fff;
    background: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  }
  .hdr_link p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 11px;
  }
  .hdr_link.no1{
    font-size: 24px;
    font-family: "Cardo", serif;

  }
  .hdr_link.no1 p{
    letter-spacing: 0;
  }
  .hdr_link.no1 p:before{
    width: 21px;
    aspect-ratio:1;
    background-image: url(https://ms-base.co.jp/system_panel/uploads/images/tel3.png);
  }
  .hdr_link.no1{

  }
  .hdr_link.no2 p:before{
    width: 21px;
    aspect-ratio:21 / 15;
    background-image: url(https://ms-base.co.jp/system_panel/uploads/images/mail.png);
  }
  .hdr_link.no3 p:before{
    font-family: 'FontAwesome';
    content: "\f002";
  }
  .hdr_link.no3{
    padding: 0 24px;
  }
}  
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding: 34px 51px 34px 50px;
    
  }

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

  /* ヘッダースリム */
  .header.slim{
    padding-top: 15px;
    padding-bottom: 0;
  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  /*ボタン*/
  .hdr_link{
    padding: 0 30px;
  }
  .hdr_link.no1{

  }
  .hdr_link.no2{

  }
  .hdr_link.no3{

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

  .header{
    --logo-height: 80px;
  }
  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: 20px;
  }
  .hdr_logo img{
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  /*overflow: hidden;*/
  position: relative;
  z-index: 2;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* スライド */
.mv_slides_clip{
  margin-left: 50px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.mv_slides{
  display: flex;
  margin-left: -50px;
  position: relative;
  z-index: 1;
}
.mv_slides .swiper-slide{
  width: 500px;
}
.mv_slides_item{
  width: 100%;
  padding: 0 10px;
}
.mv_slides_img{
  border-radius: 20px;
}
.mv_slides_img.img_fit:before{
  padding-top: 83.333%;
}

.gjs-dashed .mv_slides{
  margin-left: 0;
}

/* キャッチコピー */
.mv_txt_wrap{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_txt1{
  
}
.mv_txt1_line{
  display: flex;
}
.mv_txt1_line + .mv_txt1_line{
  margin-top: 10px;
}
.mv_txt1_line p{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 0.9;
  background: #f3f3f6;
  color: #32333d;
  border-radius: 5px;
  padding: 6px 10px 2px 10px;
}

.mv_txt2{
  
}
* + .mv_txt2{
  margin-top: 30px;
}
.mv_txt2_line{
  display: flex;
}
.mv_txt2_line + .mv_txt2_line{
  margin-top: 10px;
}
.mv_txt2_line_txt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  background: #f3f3f6;
  color: #32333d;
  border-radius: 5px;
  padding: 5px 0px 7px 15px;
}

/* SCROLL DOWN */
.mv_scr_down{
  width: 100px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.mv_scr_down:before{
  content: "";
  width: 17px;
  aspect-ratio: 17 / 25;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/scroll_down_arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.mv_scr_down:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/scroll_down.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: rotateCircle 10s linear infinite;
}


/* MV NEWS */
.mv_news{
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: var(--main-color);
  color: #FFF;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 15px;
  right: 15px;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  border-radius: 5px 5px;
  padding: 20px 30px;
  width: calc(100% - 30px);
}
.gjs-dashed .mv_news{
  visibility: visible;
}
.mv_news_box1{
  width: 100%;
}
.mv_news_box2{
  width: 100%;
}
.mv_news_box3{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.mv_news_ttl_en{
  font-size: 20px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.mv_news_more{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: right;
  padding-right: 30px;
  position: relative;
  z-index: 1;
}
.mv_news_more:hover{
  color: #1eb9ee;
}
.mv_news_more:after{
  content: "";
  width: 14px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--arrow-right2);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.mv_news_more:hover:after{
  margin-right: -5px;
}

.mv_news_list{
  
}
.mv_news_list .webgene-item{
  
}
.mv_news_list .webgene-item .inner{
  display: flex;
  flex-wrap: wrap;
}
.mv_news_list .webgene-item .inner:hover{
  color: #1eb9ee;
}
.mv_news_list .webgene-item .inner .meta{
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 20px;
}
.mv_news_list .webgene-item .inner .date{
  width: 85px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
}
.mv_news_list .webgene-item .inner .category{
  min-width: 80px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  background: #FFF;
  color: var(--main-color);
  border-radius: 13px;
  padding: 4px 5px 3px;
}


/**/
.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:1023px){
  
  .mv_scr_down{
    left: auto !important;
    right: 20px;
    bottom: 135px;
  }
  
  .mv_scr_down:after{
    background-image: url('https://ms-base.co.jp/system_panel/uploads/images/scroll_down_wh.png');
  }
  .mv_scr_down:before{
    width: 10px;
    background-image: url('https://ms-base.co.jp/system_panel/uploads/images/scroll_down_arrow_wh.png');
  }
  
}
@media (max-width:767px){
  
  .mv_scr_down{
    left: auto;
    right: 20px;
    bottom: 135px;
  }
  .mv_news_box1{
    margin-bottom: 10px;
  }
  .mv_news_box2{
    margin-bottom: 10px;
  }
  
}
@media (min-width:768px){

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

  
  /* スライド */
  .mv_slides_clip{
    margin-left: 100px;
    border-radius: 20px 0 0 20px;
  }
  .mv_slides{
    margin-left: -185px;
  }
  .mv_slides .swiper-slide{
    width: 600px;
  }
  .mv_slides_item{
    width: 100%;
    padding: 0 10px;
  }

  /* キャッチコピー */
  .mv_txt_wrap{
    top: 50%;
    left: 35px;
  }
  .mv_txt1{

  }
  .mv_txt1_line{
  }
  .mv_txt1_line + .mv_txt1_line{
    margin-top: 26px;
  }
  .mv_txt1_line p{
    font-size: 60px;
    padding: 12px 15px 0px 15px;
  }

  .mv_txt2{

  }
  * + .mv_txt2{
    margin-top: 60px;
  }
  .mv_txt2_line{
    display: flex;
  }
  .mv_txt2_line + .mv_txt2_line{
    margin-top: 10px;
  }
  .mv_txt2_line_txt{
    font-size: 24px;
    padding: 5px 0px 7px 15px;
  }
  
  /* SCROLL DOWN */
  .mv_scr_down{
    width: 100px;
    left: 40px;
  }

  
  /* MV NEWS */
  .mv_news{
    left: auto;
    right: 0;
    border-radius: 5px 0 0 5px;
    padding: 20px 30px;
    width:700px;
  }
  .mv_news_box1{
    width: 100px;
  }
  .mv_news_box2{
    width: calc(100% - 100px - 160px);
  }
  .mv_news_box3{
    width: 160px;
  }
  .mv_news_ttl_en{

  }
  .mv_news_ttl_en{
    font-size: 24px;
  }
  .mv_news_more{
    font-size: 14px;
    padding-right: 30px;
  }
  .mv_news_more:after{
    width: 14px;
  }
  
  

  .mv_news_list{

  }
  .mv_news_list .webgene-item{

  }
  .mv_news_list .webgene-item .inner{
    flex-wrap: nowrap;
  }
  .mv_news_list .webgene-item .inner:hover{
  }
  .mv_news_list .webgene-item .inner .meta{
    padding-right: 20px;
  }
  .mv_news_list .webgene-item .inner .meta{
    width: auto;
  }
  .mv_news_list .webgene-item .inner .date{
    width: 85px;
    font-size: 16px;
  }
  .mv_news_list .webgene-item .inner .category{
    min-width: 80px;
    font-size: 13px;
    padding: 4px 5px 3px;
  }

}

@media (min-width:1024px){


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

  /* MV NEWS */
  .mv_news{
    padding: 20px 30px;
    width:800px;
  }

  
}
@media (min-width:1200px){
  
  body{
    padding-top: 155px;
  }
  
  /* MV */
  .mv{
    height: 750px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 750px;
  }

  .mv_slides .swiper-slide{
    width: 700px;
  }
  
  /* MVテキスト */
  .mv_txt{
    
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  /* MV NEWS */
  .mv_news{
    right: 0;
    border-radius: 5px 0 0 5px;
    padding: 20px 30px;
    width: 1000px;
  }
  .mv_news_box1{
    width: 100px;
  }
  .mv_news_box2{
    width: calc(100% - 100px - 160px);
  }
  .mv_news_box3{
    width: 160px;
  }
  .mv_news_ttl_en{

  }
  .mv_news_ttl_en{
    font-size: 24px;
  }
  .mv_news_more{
    font-size: 14px;
    padding-right: 30px;
  }
  .mv_news_more:after{
    width: 14px;
  }

  .mv_news_list{

  }
  .mv_news_list .webgene-item{

  }
  .mv_news_list .webgene-item .inner{
    flex-wrap: nowrap;
  }
  .mv_news_list .webgene-item .inner:hover{
  }
  .mv_news_list .webgene-item .inner .meta{
    padding-right: 20px;
  }
  .mv_news_list .webgene-item .inner .date{
    width: 85px;
    font-size: 16px;
  }
  .mv_news_list .webgene-item .inner .category{
    min-width: 80px;
    font-size: 13px;
    padding: 4px 5px 3px;
  }
  
}
@media (min-width:1440px){
  
  /* スライド */
  .mv_slides_clip{
    margin-left: 370px;
    border-radius: 20px 0 0 20px;
  }
  .mv_slides{
    margin-left: -185px;
  }
  .mv_slides .swiper-slide{
    width: 920px;
  }
  .mv_slides_item{
    width: 100%;
    padding: 0 10px;
  }

  /* キャッチコピー */
  .mv_txt_wrap{
    top: 50%;
    left: 95px;
  }
  .mv_txt1{

  }
  .mv_txt1_line{
  }
  .mv_txt1_line + .mv_txt1_line{
    margin-top: 26px;
  }
  .mv_txt1_line p{
    font-size: 120px;
    padding: 12px 15px 0px 15px;
  }

  .mv_txt2{

  }
  * + .mv_txt2{
    margin-top: 60px;
  }
  .mv_txt2_line{
    display: flex;
  }
  .mv_txt2_line + .mv_txt2_line{
    margin-top: 10px;
  }
  .mv_txt2_line_txt{
    font-size: 24px;
    padding: 5px 0px 7px 15px;
  }
  
  /* SCROLL DOWN */
  .mv_scr_down{
    width: 180px;
    left: 120px;
  }

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_en{
  
}
.pg_header_title_ja{
  
}




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  background: #fff;
  margin-top: 50px;
      position: relative;
    z-index: 2;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  padding: 7px;
  margin-top: 40px;
}

/* 追尾スマホメニュー */
.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: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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

.ftr_contact_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 650px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  border-bottom: none;
  padding: 30px 0;
  color: #fff;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 30px;
}
.ftr_contact_box1 .content_desc{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tt{
  position: relative; 
  text-align: center;
}
.ftr_contact_box2_item_tt:after{
  display: none;
}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(https://ms-base.co.jp/system_panel/uploads/images/tel2.png);

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

  background-image: url(https://ms-base.co.jp/system_panel/uploads/images/meil.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;;
}
.ftr_contact_box2_item_link{
  margin-top: 10px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 700;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 240px;
  background: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  background-color: #FFF;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 23.5px;
  border: 1px solid #2f8aca;
  margin-inline:auto;
  padding: 13px 0;
  transition: all .2s;
}
.link_1:hover{
  background: #fff;
  color: #181818;
}
.link_1 p{
  letter-spacing: 0;
}
.ftr_contact_box1_en{
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.content_desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}


.ftr_1{
  background: #fff;
  padding-top: 65px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 25px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  letter-spacing: 0.025em;
}
.ftr_add_items{

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

}
.ftr_link{

}
.link_num:hover,
.ftr_add_txt a:hover,
.ftr_link:hover{
  color: var(--main-color); 
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

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

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }

  .ftr_add_item{
    width: 175px;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_img:before{
    padding-top: 500x;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{

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

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

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

  }
  .link_1{

  }
  .ftr_contact_box1_en{
    font-size: 50px;
  }
  .content_desc{

  }

  .ftr_1{

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

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

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


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(https://ms-base.co.jp/system_panel/uploads/images/arrow-right2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .ftr_copy{
    margin-top: 75px;
  }
  
  .ftr_contact_box2_item:before{
            content: "";
        display: block;
        width: 1px;
        height: 100%;
        background: #bfbfbf;
        position: absolute;
        top: 0;
        left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
        display: block;
        width: 1px;
        height: 100%;
        background: #bfbfbf;
        position: absolute;
        top: 0;
        right: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_contact_img:before{
    padding-top: 360px;
  }
  .ftr_contact_box1{
    width: 40.23%;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 42px;
  }
  .ftr_contact_box1 .content_desc{

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

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 32px;
  }
  .ftr_contact_box1_en{
    font-size: 80px;
  }
  .content_desc{

  }

  .ftr_1_box1{
    width: 36.51%;
  }
  .ftr_1_box2{
    width: 34.53%;
  }

  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }
  
  .ftr_contact_box2_item:last-child:after{
    display: none;
  }
}
@media (min-width:1200px){
  .ftr_contact_img:before{
    padding-top: 360px;
  }

  .ftr_contact_box2_ite_tel1{
    font-size: 40px;
  }

  .ftr_1_box2{
    width: 55.59%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 23px;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    width: 33.333%;
    padding-inline: 30px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}


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


/* テーブル用 */
.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: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid currentColor;
  background: var(--main-color);
  border-radius: 5px;
  color: #FFF;
  padding: 16px 20px 16px 30px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--arrow-right2);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a.external:after{
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/arrow-external2.svg');
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more a.wh{
  background: #FFF;
  color: var(--txt-color);
}


/* 見出し */
.tt2{
  text-align: left;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 5px;
}
.tt2.wh{
  color: #FFF;
}


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

}

.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
@media (min-width:1024px){

  .cmn_txt{
    line-height: 2.5;
  }
}


/* コンテンツ */
.cmn_contents{
  
}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(255,255,255,0.5);
  border-radius: 20px;
  overflow: hidden;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 30px;
}
.cmn_contents_box1{
  width: 100%;
}
.cmn_contents_box2{
  width: 100%;
}

.cmn_contents_img{
  width: 100%;
}
.cmn_contents_img.img_fit:before{
  padding-top: 83.481%;
}
.cmn_contents_box2{
  padding: 30px 20px;
}

.cmn_contents_ttl{
  margin-bottom: 15px;
}
.cmn_contents_ttl_en{
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
.cmn_contents_ttl_en.blue{
  color: #1eb9ee;
}
.cmn_contents_ttl_ja{
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cmn_contents_ttl2{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.cmn_contents_txt{
  font-weight: 400;
}

.cmn_contents_box2 .cmn_contents_txt{
  font-weight: 500;
  line-height: 2.5em;
}

@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .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: 300px;
    font-size: 18px;
    padding: 18px 20px 19px 30px;
    margin: 5px 7.5px;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */
  .tt2{
    text-align: left;
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 60px;
  }
  .tt2_ja{
    font-size: 20px;
  }

  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
  }
  .cmn_contents_box2{
    padding: 40px 30px;
  }

  .cmn_contents_ttl{
    margin-bottom: 20px;
  }
  .cmn_contents_ttl_en{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cmn_contents_ttl_ja{
    font-size: 30px;
  }
  
  .cmn_contents_ttl2{
    font-size: 20px;
    margin-bottom: 20px;
  }
  

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

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

  /* 見出し */
  
  
  
  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    width: 44.74%;
  }
  .cmn_contents_box2{
    width: 55.26%;
    padding: 40px 30px;
  }

  .cmn_contents_img{
    width: 100%;
    height: 100%;
  }
  .cmn_contents_img.img_fit:before{
    height: 100%;
  }

  .cmn_contents_ttl{
    margin-bottom: 20px;
  }
  .cmn_contents_ttl_en{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cmn_contents_ttl_ja{
    font-size: 26px;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }

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


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

  .cmn_contents_ttl_en{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cmn_contents_ttl_ja{
    font-size: 32px;
  }
  
  .cmn_contents_ttl2{
    font-size: 24px;
    margin-bottom: 25px;
  }
  

}


@media (min-width:1470px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja{
    font-size: 24px;
  }
  
  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 80px;
  }
  .cmn_contents_box1{
    width: 44.74%;
  }
  .cmn_contents_box2{
    width: 55.26%;
  }
  .cmn_contents_box2{
    min-height: 566px;
    padding: 50px 50px;
  }
  .cmn_contents_ttl{
    margin-bottom: 30px;
  }
  .cmn_contents_ttl_en{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cmn_contents_ttl_ja{
    font-size: 36px;
  }

  .cmn_contents_ttl2{
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  
}


@media (min-width:1720px){
  
  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 80px;
  }
  .cmn_contents_box1{
    /*width: 44.74%;*/
  }
  .cmn_contents_box2{
    /*width: 55.26%;*/
  }

  .cmn_contents_box2{
    min-height: 566px;
  }
  .cmn_contents_ttl{
    margin-bottom: 42px;
    margin-right: -75px;
  }
  .cmn_contents_ttl_en{
  }
  .cmn_contents_ttl_ja{
    font-size: 40px;
  }
  
  .cmn_contents_ttl2{
    font-size: 30px;
    margin-bottom: 60px;
  }
  
  
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    padding: 70px 145px 65px 90px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    padding: 70px 100px 65px 138px;
  }
  
}

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




/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
  z-index: 1;
  --sec-mt-distance: -50px;
}
.gjs-dashed .pg_home{
  --sec-mt-distance: 0;
}

.pg_home .section{
  position: relative;
}
.pg_home .section.sec1{
  padding-top: 120px;
  z-index: 1;
}
.pg_home .section.sec2{
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  /*margin-top: -80px;*/
  position: relative;
  z-index: 1;
  margin-top: var(--sec-mt-distance);
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/home_our_service_bg.jpg');
  background-size: cover;
  background-position: top center;
}
.pg_home .section.sec4{
  padding-top: 50px;
  background-color: #f3f3f6;
  z-index: 4;
  margin-top: var(--sec-mt-distance);
}
.pg_home .section.sec5{
  background-image: url(https://ms-base.co.jp/system_panel/uploads/images/home_company_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 5;
  margin-top: var(--sec-mt-distance);
}
.pg_home .section.sec6{
  padding-top: 50px;
  background-color: #f3f3f6;
  z-index: 6;
  margin-top: var(--sec-mt-distance);
}


.home_bg_service{
  background: #dff0f9;
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--margin-for-device-side-w);
  right: 0;
  bottom: 0;
}



@media (max-width:767px){

}
@media (min-width:768px){
  
  .pg_home{
    --sec-mt-distance: -200px;
  }
  
  .pg_home .section.sec1{
    padding-top: 180px;
  }
  .pg_home .section.sec2{
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    margin-top: var(--sec-mt-distance);
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 150px;
    padding-bottom: 155px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }

  .home_bg_service{
    left: var(--margin-for-device-side-w);
    right: 0;
    bottom: 0;
  }

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

  .pg_home .section.sec3{
    padding-top: 200px;
  }

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


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


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


}
.big_int{
  position: relative;
}
.big_int:before{
    content: "";
    display: block;
    width: 1920px;
    height: 3763px;
    aspect-ratio: 1920 / 3763;
    background-image: url(https://ms-base.co.jp/system_panel/uploads/images/iiiii.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
    top: -356px;
    /* top: auto; */
    left: 50%;
    bottom:auto;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_about:after{
  content: "";
  background: #FFF;
  border-radius: 0 20px 20px 0;
  position: absolute;
  z-index: -1;
  top: 180px;
  bottom: 70px;
  left: var(--margin-for-device-side-w);
  right: 260px;
  pointer-events: none;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  padding-top: 40px;
}
.home_about_imgs{
  
}
.home_about_imgs_item1{
  width: 88.57%;
  border-radius: 20px;
  z-index: 1;
}
.pg_estate .home_about_box1 .home_about_imgs_item1{
  margin-left: auto;
  margin-right: 0;
}
.pg_consul .home_about_box1 .home_about_imgs_item1{
   margin-left: auto;
  margin-right: 0;
}
.home_about_imgs_item1.img_fit:before{
  padding-top: 85.714%;
}
.home_about_imgs_item2{
  width: 64.28%;
  border-radius: 20px;
  margin-left: auto;
  margin-top: -105px;
  z-index: 2;
}
.pg_estate .home_about_box1 .home_about_imgs_item2{
  margin-left: 0;
  margin-right: auto;
}
.pg_consul .home_about_box1 .home_about_imgs_item2{
   margin-left: 0;
  margin-right: auto;
}
.home_about_imgs_item2.img_fit:before{
  padding-top: 93.333%;
}
.home_about_imgs_item3{
  width: 50%;
  border-radius: 20px;
  margin-top: -65px;
  margin-left: 32px;
  z-index: 3;
}
.home_about_imgs_item3.img_fit:before{
  padding-top: 91.429%;
}

.home_about_en{
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.home_about_title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.666;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.home_about_txt{
  
}


/* Instagram */
.home_insta_wrap{
  background: #FFF;
  padding: 30px 20px ;
  border-radius: 20px;
}
.home_insta_head{
  font-size: 42px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #92d5f1;
}

/* Service */
.home_service_wrap{
  
}
* + .home_service_wrap{
  margin-top: 50px;
}
.home_service_head{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  color: #FFF;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  margin-bottom: 20px;
}

.home_service_head{
  white-space: nowrap;
}

.home_service_wrap .infiniteslide_wrap{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.infiniteslide_wrap p{
  padding: 0 15px;
}

.home_service_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 20px;
  padding: 60px 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_service_row:after{
  content: "";
  background: rgba(255,255,255,0.5);
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}
.home_service_row.estimate:after{
  display: none;
}
.home_service_row + .home_service_row{
  margin-top: 30px;
}
.home_service_row_box1{
  width: 100%;
}
.home_service_row_box2{
  width: 100%;
  /*width: calc(100% - 400px - 80px);*/
}
.home_service_row_box3{
  width: 640px;
  max-width: 100%;
  /*padding-top: 18px;*/
  /*padding-left: 22px;*/
  /*padding-bottom: 25px;*/
  color: #FFF;
  order: 2;
}
.home_service_ttl{
  margin-bottom: 15px;
}
.home_service_ttl_en{
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
.home_service_ttl_ja{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home_service_bg1{
  order: 1;
}
.home_service_bg1.img_fit:before{
  padding-top: 92.02%;
}

.home_service_row_box3 .read_more{
  margin-top: 25px;
}

.home_service_row .search_btn{
  padding: 0;
  margin-top: 30px;
}
.home_service_row .search_submit{
  max-width: 235px;
}

/* Service(その他) */
.home_service_ttl2{
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home_service_ttl2:before{
  content: "";
  width: 9px;
  height: 9px;
  background: #1eb9ee;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: -2px;
}
.home_service_ttl2:after{
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main-color);
  margin-left: 18px;
  margin-bottom: -2px;
}
.home_service_other{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.home_service_other_box1{
  width: 100%;
  /*width: 42.85%;*/
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home_service_other_box2{
  width: 100%;
  /*width: 55.71%;*/
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.home_service_other_item1,
.home_service_other_item2,
.home_service_other_item3{
  border-radius: 20px;
  overflow: hidden;
  background: #CCC;
  color: #FFF;
  padding: 20px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.home_service_other_item1{
  width: 100%;
  /*padding-right: 50px;*/
}
.home_service_other_item2{
  width: 100%;
  /*padding-right: 50px;*/
}
.home_service_other_item3{
  /*width: calc(50% - 10px);*/
  width: 100%;
  /*padding-right: 50px;*/
}
.home_service_other_item1 *,
.home_service_other_item2 *,
.home_service_other_item3 *{
  position: relative;
  z-index: 1;
}

.home_service_bg1:after,
.home_service_other_item1:before,
.home_service_other_item2:before,
.home_service_other_item3:before{
  content: "";
  width: 637px;
  width: 106.1%;
  aspect-ratio: 1 / 1;
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/filter_blue.png');
  background-size: contain;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-30%, -30%);
}

.home_service_other_item1:after,
.home_service_other_item2:after,
.home_service_other_item3:after{
  content: "";
  width: 30px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--arrow-right);
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
  transition: 0.2s all;
}
.home_service_other_item2:after{
  background-image: url(https://ms-base.co.jp/system_panel/uploads/images/arrow-external.png);
}
.home_service_other_item2:after,
.home_service_other_item3:after{
  width: 30px;
  bottom: 20px;
  right: 20px;
}

.home_service_other_item1:hover:after,
.home_service_other_item2:hover:after,
.home_service_other_item3:hover:after{
  margin-right: -5px;
}

.home_service_bg1:after{
  width: 67.89%;
  width: 86.89%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-30%, -30%);
  z-index: 2;
}

.home_service_other_item3:before{
  width: 116.0%;
}

.home_service_other_txt{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  letter-spacing: 0.075em;
  text-align: justify;
}
.home_service_other_img{
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: 0.2s all;
}
.home_service_other_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_service_other_img:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_service_other_item2 .home_service_other_img:after{
  display: block;
}

.home_service_other_item1:hover,
.home_service_other_item2:hover,
.home_service_other_item3:hover{
  color: #FFF;
}
.home_service_other_item1:hover .home_service_other_img,
.home_service_other_item2:hover .home_service_other_img,
.home_service_other_item3:hover .home_service_other_img{
  transform: scale(1.05);
}

/* TOPICS */
.home_topics{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_topics_box1{
  width: 100%;
}
.home_topics_box2{
  width: 100%;
  margin-top: 20px;
}

/* COMPANY */
.home_company{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 55px;
}
.home_company_item{
  width: 100%;
  color: #FFF;
}

.home_company_item_img{
  border-radius: 20px;
  overflow: hidden;
}
.home_company_item_img.img_fit:before{
  padding-top: 76.596%;
}
.home_company_item_img img{
  transition: 0.2s all;
}
.home_company_item_ttl{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid;
  padding: 10px 50px 10px 0;
  margin-top: 4px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.home_company_item_ttl:after{
  content: "";
  width: 30px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--arrow-right);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.home_company_item_txt{
  
}
.home_company_item:hover{
  color: #FFF;
}
.home_company_item:hover .home_company_item_img img{
  transform: scale(1.05);
}
.home_company_item:hover .home_company_item_ttl:after{
  margin-right: -5px;
}


/* NEWS */
.home_news_head{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home_news_head_box1{
  
}
.home_news_head_box2{
  
}
.home_news_head_box2 .read_more{
  margin-top: 15px;
}

@media (max-width:374px){

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

}
@media (max-width:1023px){
  
  /* Service */
  .home_service_row.estimate{
    padding-top: 0;
    padding-bottom:15px; 
    background-image: url('https://ms-base.co.jp/system_panel/uploads/images/home_service_estate_bg2.jpg');
    background-size: cover;
  }
  .home_service_bg1{
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
  .home_service_row_box3{
    padding: 30px 0 0;
    
  }
  
  /**/
  .home_service_other_item1,
  .home_service_other_item2,
  .home_service_other_item3{
    padding: 30px !important;
    background: var(--main-color);
  }
  .home_service_other_item1:before,
  .home_service_other_item2:before,
  .home_service_other_item3:before{
    top: 200px;
  }
  .home_service_other_img{
    height: 300px;
    margin: -30px -30px 30px;
    position: relative;
    z-index: 1;

  }
  .home_service_other_img.img_fit:before{
    height: 100%;
  }
  
  .home_service_bg1:after{
    display: none;
  }
  
}
@media (max-width:767px){
  
  /* Service */
  .home_service_row.estimate{
    padding-top: 0;
    padding-bottom:15px; 
  }
  .home_service_bg1{
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_service_row_box3{
    padding: 30px 0 0;
  }
  
  /**/
  .home_service_other_item1,
  .home_service_other_item2,
  .home_service_other_item3{
    padding: 20px !important;
  }
  .home_service_other_item1:before, 
  .home_service_other_item2:before, 
  .home_service_other_item3:before{
    top: 200px;
  }
  .home_service_other_img{
    height: 200px;
    margin: -20px -20px 20px;
    
  }
  
  .news_list.home{
    
  }
  .topics_list.home .webgene-item:nth-child(n+3){
    display: none;
  }
  .news_list.home .webgene-item:nth-child(n+3){
    display: none;
  }
  
  .pg_consul .home_about.kasou:after{
    border-radius: 20px 0 0 20px;
    margin-left: auto;
    margin-right: var(--margin-for-device-side-w);
    left:-50px;;
    right: 0;
    top: 180px;
    height: 1130px;
  }
  
  .body_food .pg_consul .home_about.kasou:after{
    height: 1104px;
  }
  
  .news_list .webgene-item:first-child .inner{
    border: 0!important;
  }
  .news_list .webgene-item .inner{
    border: 0!important;
  }
}
@media (min-width:768px){
  
  /* ABOUT */
  .home_about{
  }
  .home_about:after{
    border-radius: 0 20px 20px 0;
    top: 180px;
    bottom: 70px;
    left: var(--margin-for-device-side-w);
    right: 260px;
  }
  
   .pg_consul .home_about.kasou:after{
    border-radius: 20px 0 0 20px;
        margin-left: auto;
        margin-right: var(--margin-for-device-side-w);
        left:-50px;;
        right: 0;
        top: 180px;
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 49.01%;*/
    padding-top: 40px;
  }
  .home_about_imgs{
    /*margin-left: -120px;*/
  }
  .home_about_imgs_item1{
    width: 85%;
  }
  .home_about_imgs_item1.img_fit:before{
    padding-top: 85.714%;
  }
  .home_about_imgs_item2{
    width: 56.25%;
    margin-left: auto;
    margin-right: 8px;
    margin-top: -238px;
  }
  .home_about_imgs_item2.img_fit:before{
    padding-top: 93.333%;
  }
  .home_about_imgs_item3{
    width: 43.75%;
    margin-top: -130px;
    margin-left: 62px;
  }
  .home_about_imgs_item3.img_fit:before{
    padding-top: 91.429%;
  }

  .home_about_en{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .home_about_title{
    font-size: 40px;
    margin-bottom: 20px;
  }
  .home_about_txt{

  }


  /* Instagram */
  .home_insta_wrap{
    padding: 50px 30px 60px;
    border-radius: 20px;
  }
  .home_insta_head{
    font-size: 90px;
  }
  
  
  /* Service */
  * + .home_service_wrap{
    margin-top: 75px;
  }
  .home_service_head{
    font-size: 75px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .home_service_row{
    border-radius: 20px;
    padding: 30px 30px;
  }
  .home_service_row + .home_service_row{
    margin-top: 30px;
  }
  .home_service_row_box1{
    /*width: 400px;*/
  }
  .home_service_row_box2{
    /*width: calc(100% - 400px - 80px);*/
  }
  .home_service_row_box3{
    /*width: 640px;*/
    /*padding-top: 18px;*/
    /*padding-left: 22px;*/
    /*padding-bottom: 25px;*/
    /*order: 1;*/
  }
  .home_service_ttl{
    margin-bottom: 20px;
  }
  .home_service_ttl_en{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .home_service_ttl_ja{
    font-size: 28px;
  }
  .home_service_ttl{

  }
 
  /* Service(その他) */
  .home_service_ttl2{
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home_service_ttl2:before{
    width: 9px;
    height: 9px;
    margin-right: 10px;
    margin-bottom: -2px;
  }
  .home_service_ttl2:after{
    margin-left: 18px;
    margin-bottom: -2px;
  }
  .home_service_other{
    width: 100%;
  }
  .home_service_other_box1{
    width: 100%;
    /*width: 42.85%;*/
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home_service_other_box2{
    width: 100%;
    /*width: 55.71%;*/
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home_service_other_item1,
  .home_service_other_item2,
  .home_service_other_item3{
    padding: 36px 30px;
  }

  .home_service_other_item1{
    width: 100%;
    padding-right: 165px;
  }
  .home_service_other_item2{
    width: 100%;
    padding-right: 220px;
  }
  .home_service_other_item3{
    width: 100%;
    padding-right: 95px;
  }
  .home_service_other_item1:before,
  .home_service_other_item3:before{
    width: 106.1%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-30%, -30%);
  }
  .home_service_other_item3:before{
    width: 116.0%;
  }

  .home_service_other_txt{
    font-size: 14px;
    line-height: 2.14;
  }
  .home_service_other_img{
    
  }
  
  .home_service_other_item1:after,
  .home_service_other_item2:after,
  .home_service_other_item3:after{
    width: 30px;
    bottom: 15px;
    right: 15px;
  }
  .home_service_other_item3:after{
    width: 30px;
    bottom: 15px;
    right: 15px;
  }
  
  /* TOPICS */
  .home_topics{
  }
  .home_topics_box1{
    width: 100%;
  }
  .home_topics_box2{
    width: 100%;
  }

  /* COMPANY */
  .home_company{
    gap: 30px 15px;
  }
  .home_company_item{
    width: calc(33.333% - 10px);
  }

  .home_company_item_ttl{
    font-size: 22px;
    /*padding: 16px 50px 16px 0;*/
    margin-top: 4px;
    margin-bottom: 25px;
  }
  .home_company_item_ttl:after{
    /*width: 40px;*/
  }
  .home_company_item_txt{

  }

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

  /* ABOUT */
  .home_about{
  }
  .home_about:after{
    top: 180px;
    bottom: 30px;
    left: var(--margin-for-device-side-w);
    right: 100px;
  }
   .pg_consul .home_about.kasou:after{
    border-radius: 20px 0 0 20px;
        margin-left: auto;
        margin-right: var(--margin-for-device-side-w);
        left: 260px;
        right: 0;
        top: 180px;
  }
  .home_about_box1{
    width: 44.73%;
  }
  .home_about_box2{
    width: 49.01%;
    width: 50%;
    padding-top: 20px;
  }
  .home_about_imgs{
    margin-left: -20px;
  }
  .home_about_imgs_item1{
    /*width: 85%;*/
  }
  .home_about_imgs_item2{
    width: 56.25%;
    margin-top: -100px;
  }
  .home_about_imgs_item3{
    width: 43.75%;
    margin-top: -80px;
    margin-left: 30px;
  }
  .home_about_en{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .home_about_title{
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .home_about.kasou{
    padding-bottom: 100px;
  }
  .pg_consul .section.sec1 .home_about.kasou{
    padding-bottom: 36px;
  }
  .home_about.kasou:after{
    bottom: 0;
  }
  .home_about.rvs{
    
  }
  .home_about.rvs .home_about_box1{
    order: 2;
  }
  .home_about.rvs .home_about_box2{
    order: 1;
  }
  .body_food .home_about.kasou .home_about_box1{
    order: 2;
  }
   .body_food .home_about.kasou .home_about_box2{
    order: 1;
  }
  .home_about.rvs .home_about_imgs{
    margin-left: 0;
    margin-right: -20px;
  }
  
  /* Instagram */
  .home_insta_wrap{
    padding: 50px 50px 60px;
  }
  .home_insta_head{
    font-size: 120px;
  }

  
  /* Service */
  .home_service_head{
    font-size: 80px;
    margin-bottom: 20px;
  }
  .home_service_row{
    border-radius: 20px;
    padding: 40px 40px;
  }
  .home_service_row + .home_service_row{
    margin-top: 30px;
  }
  .home_service_row_box1{
    width: 400px;
  }
  .home_service_row_box2{
    width: calc(100% - 400px - 80px);
  }
  .home_service_row_box3{
    width: 640px;
    padding: 0;
    /*padding-top: 18px;*/
    /*padding-left: 22px;*/
    /*padding-bottom: 25px;*/
  }
  .home_service_ttl{
    /*margin-bottom: 36px;*/
  }
  .home_service_ttl_en{
    /*font-size: 16px;*/
    /*margin-bottom: 10px;*/
  }
  .home_service_ttl_ja{
    /*font-size: 48px;*/
    margin-right: -100px;
  }
  .home_service_ttl{

  }
  .home_service_row_box3 .read_more{
    margin-top: 50px;
  }
  
  .home_service_bg1{
    position: absolute;
    z-index: -1;
    inset: 0;
  }
  .home_service_bg1.img_fit{
    padding-top: 0;
    height: 100%;
  }
  .home_service_row_box3 .read_more{
    margin-top: 50px;
  }
  
  
  
  
  /* TOPICS */
  .home_topics{
  }
  .home_topics_box1{
    width: 100%;
    width: 300px;
  }
  .home_topics_box2{
    width: 100%;
    width: calc(100% - 300px - 50px);
    margin-top: 0;
  }
  
  /* COMPANY */
  .home_company{
    gap: 30px 30px;
  }
  .home_company_item{
    width: calc(33.333% - 20px);
  }

  .home_company_item_ttl{
    font-size: 26px;
    /*padding: 16px 50px 16px 0;*/
    margin-top: 4px;
    margin-bottom: 25px;
  }
  .home_company_item_ttl:after{
    /*width: 40px;*/
  }
  
  /* Service(その他) */
  .home_service_ttl2{
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home_service_ttl2:before{
    width: 9px;
    height: 9px;
    margin-right: 10px;
    margin-bottom: -2px;
  }
  .home_service_ttl2:after{
    margin-left: 18px;
    margin-bottom: -2px;
  }
  .home_service_other{
    width: 100%;
  }
  .home_service_other_box1{
    width: 100%;
    width: 42.85%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home_service_other_box2{
    width: 100%;
    width: 55.71%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0;
  }
  .home_service_other_item1,
  .home_service_other_item2,
  .home_service_other_item3{
    padding: 36px 20px;
  }

  .home_service_other_item1{
    width: 100%;
    padding-right: 20px;
  }
  .home_service_other_item2{
    width: 100%;
    padding-right: 100px;
  }
  .home_service_other_item3{
    width: calc(50% - 10px);
    padding-right: 20px;
  }
  .home_service_other_item1:before,
  .home_service_other_item3:before{
    width: 106.1%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-30%, -30%);
  }
  .home_service_other_item3:before{
    width: 116.0%;
  }

  .home_service_other_txt{
    font-size: 14px;
    line-height: 2.14;
  }
  .home_service_other_img{
    
  }
  .home_service_other_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .home_service_other_item2 .home_service_other_img:after{
    display: none;
  }
  
}
@media (min-width:1200px){


  /* TOPICS */
  .home_topics{
  }
  .home_topics_box1{
    width: 350px;
  }
  .home_topics_box2{
    width: calc(100% - 350px - 50px);
    margin-top: 0;
  }
  
  
}
@media (min-width:1470px){

  /* ABOUT */
  .home_about{
  }
  .home_about:after{
    top: 180px;
    bottom: 20px;
    right: 200px;
  }
  .home_about_box1{
    width: 44.73%;
  }
  .home_about_box2{
    width: 49.01%;
    width: 50%;
    padding-top: 40px;
  }
  .home_about_imgs{
    margin-left: -40px;
  }
  .home_about_imgs_item1{
    /*width: 85%;*/
  }
  .home_about_imgs_item2{
    /*width: 56.25%;*/
    margin-top: -150px;
  }
  .home_about_imgs_item3{
    /*width: 43.75%;*/
    margin-top: -130px;
    margin-left: 62px;
  }
  .home_about_en{
    font-size: 20px;
    margin-bottom: 30px;
  }
  .home_about_title{
    font-size: 50px;
    margin-bottom: 30px;
  }

  .home_about.rvs .home_about_imgs{
    margin-right: -40px;
  }
  
  
  /* Instagram */
  .home_insta_wrap{
    padding: 50px 100px 60px;
  }
  .home_insta_head{
    font-size: 160px;
  }
  
  /* Service */
  * + .home_service_wrap{
    margin-top: 100px;
  }
  .home_service_head{
    font-size: 160px;
    margin-bottom: 55px;
  }
  .home_service_row{
    border-radius: 20px;
    padding: 60px 60px;
  }
  .home_service_row + .home_service_row{
    margin-top: 30px;
  }
  .home_service_row_box1{
    width: 400px;
  }
  .home_service_row_box2{
    width: calc(100% - 400px - 80px);
  }
  .home_service_row_box3{
    width: 640px;
    padding-top: 18px;
    padding-left: 22px;
    padding-bottom: 25px;
  }
  .home_service_ttl{
    margin-bottom: 36px;
    margin-right: -500px;
  }
  .home_service_ttl_en{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .home_service_ttl_ja{
    font-size: 48px;
    margin-right: -100px;
  }
  .home_service_ttl.small{
    
  }
  .home_service_ttl.small .home_service_ttl_en{
    font-size: 14px;
  }
  .home_service_ttl.small .home_service_ttl_ja{
    font-size: 30px;
  }
  .home_service_row_box3 .read_more{
    margin-top: 50px;
  }
  
 
  .home_service_row_box3 .read_more{
    margin-top: 50px;
  }
  
  /* Service(その他) */
  .home_service_ttl2{
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home_service_ttl2:before{
    width: 9px;
    height: 9px;
    margin-right: 10px;
    margin-bottom: -2px;
  }
  .home_service_ttl2:after{
    margin-left: 18px;
    margin-bottom: -2px;
  }
  .home_service_other{
    width: 100%;
  }
  .home_service_other_box1{
    width: 100%;
    width: 42.85%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home_service_other_box2{
    width: 100%;
    width: 55.71%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0;
  }
  .home_service_other_item1,
  .home_service_other_item2,
  .home_service_other_item3{
    padding: 36px 40px;
  }

  .home_service_other_item1{
    width: 100%;
    padding-right: 165px;
  }
  .home_service_other_item2{
    width: 100%;
    padding-right: 220px;
  }
  .home_service_other_item3{
    width: calc(50% - 10px);
    padding-right: 95px;
  }
  .home_service_other_item1:before,
  .home_service_other_item3:before{
    width: 106.1%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-30%, -30%);
  }
  .home_service_other_item3:before{
    width: 116.0%;
  }

  .home_service_other_txt{
    font-size: 14px;
    line-height: 2.14;
  }
  .home_service_other_img{
    
  }
  .home_service_other_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  
  .home_service_other_item1:after,
  .home_service_other_item2:after,
  .home_service_other_item3:after{
    width: 60px;
    bottom: 40px;
    right: 40px;
  }
  .home_service_other_item3:after{
    width: 40px;
    bottom: 20px;
    right: 20px;
  }
  
  /* TOPICS */
  .home_topics{
  }
  .home_topics_box1{
    width: 100%;
    width: 415px;
  }
  .home_topics_box2{
    width: 100%;
    width: calc(100% - 415px - 105px);
    min-height: 600px;
    margin-top: 0;
  }
  
  /* COMPANY */
  .home_company{
    gap: 30px 55px;
  }
  .home_company_item{
    width: calc(33.333% - 36.666px);
  }

  .home_company_item_ttl{
    font-size: 36px;
    padding: 16px 50px 16px 0;
    margin-top: 4px;
    margin-bottom: 25px;
  }
  .home_company_item_ttl:after{
    width: 40px;
  }
  
  .body_food .home_about.kasou .home_about_box1{
    margin-right: -92px;
  }
}
@media (min-width:1720px){

  /* ABOUT */
  .home_about{
  }
  .home_about:after{
    top: 180px;
    bottom: 70px;
    right: 260px;
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 50%;*/
    padding-top: 40px;
  }
  .home_about_imgs{
    margin-left: -120px;
  }
  .home_about_imgs_item1{
    /*width: 85%;*/
  }
  .home_about_imgs_item2{
    /*width: 56.25%;*/
    margin-top: -238px;
  }
  .home_about_imgs_item3{
    /*width: 43.75%;*/
    margin-top: -130px;
    margin-left: 62px;
  }
  .home_about_en{
    font-size: 20px;
    margin-bottom: 48px;
  }
  .home_about_title{
    font-size: 60px;
    margin-bottom: 45px;
  }
  
  .home_about.rvs .home_about_imgs{
    margin-right: -120px;
  }
  
  /* SERVICE */
  .home_service_ttl{
    margin-right: -500px;
  }
  
  * + .home_service_wrap{
    margin-top: 150px;
  }

}


/*******************************
*　Instagram
********************************/
.insta_list{
  margin-top: 0;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -3.5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 3.5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}

.insta_list .webgene-item .img{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.insta_list .webgene-item .img:before{
  padding-top: 132%;
}
.insta_list .webgene-item .img video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){

  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 33.333%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
}
@media (min-width:1024px){

  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{
    margin-inline: -7.5px;
  }
  .insta_list .webgene-item{
    width: 20%;
    padding-inline: 7.5px;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    margin-top: 4px;
  }
  
}
@media (min-width:1200px){
  

}
@media (min-width:1470px){
  .insta_list{
    margin-top: 0;
  }
}




/**/
.home_service_row.property{
  padding-right: 0;
}

:root{
  --property_slider_item_w: 280px;
}
.property_slider_wrap{
  margin: 30px 10px 0;
  position: relative;
  z-index: 1;
}
.property_slider_wrap + .search_btn .search_submit{
  margin-left: auto;
  margin-right: auto;
}

.property_list.slider .webgene-item{
  width: var(--property_slider_item_w);;
}

.property_slider_btn{
  width: 40px;
  aspect-ratio: 1 / 1;
  background-image: url('https://ms-base.co.jp/system_panel/uploads/images/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 50%;
  cursor: pointer;
}
.property_slider_btn.prev{
  left: 0;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.property_slider_btn.next{
  left: var(--property_slider_item_w);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.property_slider_btn:hover{
  
}

@media (min-width:768px){
  :root{
    --property_slider_item_w: 360px;
  }
  .property_slider_wrap{
  }
  .property_list.slider .webgene-item{
  }
}
@media (min-width:1024px){
  :root{
    --property_slider_item_w: 360px;
  }
  .property_slider_wrap{
    margin: 0;
  }

  .property_list.slider .webgene-item{
  }
}
@media (min-width:1200px){
  .property_list.slider .webgene-item{
  }
}
@media (min-width:1470px){
  :root{
    --property_slider_item_w: 360px;
  }
  .property_list.slider .webgene-item{
  }
}
@media (min-width:1720px){
  .property_list.slider .webgene-item{
  }
}


.pre_page{
  position: relative;
  z-index: 1;
  padding: 50px 0;
  margin-top: 50px;
}
.pre_page:before{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 5;
  inset: 0;
  backdrop-filter: blur(5px);
}

.cmn_pre_view{
  background: #c9c9c9;
  padding: 50px 50px;
  font-weight: 500;
  text-align: center;
}
