@charset "UTF-8";

:root {
  --main-color: #c4ad80;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 画面端までの余白 */

}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


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

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

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

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

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

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

.img_fit{
  position: relative;
}
.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: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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.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;
}

.hdr_left{
  display: flex;
  align-items: center;
}
.hdr_left_txt{
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1.35em;
  color: #bcb486;
  margin-left: 26px;
}
.hdr_center{

}
.hdr_right{

}
.hdr_contact_btn{

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

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_right{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 27px;
    background: rgba(255,255,255,0.9);
  }


  .hdr1{
    padding: 0 15px 0;
  }
  .hdr_left_txt{

  }
  .hdr_center{

  }
  .hdr_right{
    display: flex;
    align-items: center;
  }
  .hdr_contact_btn{
    display: block;
    width: 250px;
    text-align: center;
    background: var(--main-color);
    color: #181818;
    font-size: 22px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    line-height: 1;

    transition: all .2s;
    padding: 22px 0 31px;
    position: relative;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn:after{
    content: "→";
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    position: absolute;
    top: 46%;
    right: 16px;
    transform: translateY(-50%);
  }
  .hdr_contact_btn:hover{
    background: #181818;
    color: #fff;
  }



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

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

  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_left_txt{

  }
  .hdr_center{

  }
  .hdr_right{

  }
  .hdr_contact_btn{
    font-size: 25px;
  }
}
@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

  .hdr_contact_btn{
    width: 200px;
  }
}
@media (min-width:1366px){
  .hdr_contact_btn{
    width: 250px;
  }
}
@media (min-width:1450px){

}
@media (min-width:1700px){
  .hdr_center{
    padding-right: 155px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

.mv_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mv_box1{
  width: 100%;
}
.mv_box1_img:before{
  padding-top: calc(100vh - 50vh - 54px - 57px - 0.1%);
}
.mv_box2{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1%;;
}
.mv_box2_top{

}
.mv_box2_top_img:before{
  padding-top: 24.5vh;
  padding-top: calc(100vh - 50vh - 54px - 57px - 0.1% - 25%);
}
.mv_box2_btm{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1%;
}
.mv_box2_btm1{
  width: 49.73%;
}
.mv_box2_btm1:before{
  padding-top: 24.5vh;
  padding-top: calc(100vh - 50vh - 54px - 57px - 0.1% - 25%);
}

/*フィルター*/
.filter:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}



/* MVテキスト */
.mv_text{
  width: 100%;
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: 1%;
  left: 5.2%;;
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 1px 2px 10px #808080;
  padding-right: 2.08%;
  z-index: 5;
}
.mv_text1{
  font-size: clamp(1.75rem, 0.85rem + 4.5vw, 6.25rem);
  font-weight: 900;
}
.mv_text2{
  font-size: clamp(3.125rem, 2.125rem + 5vw, 8.125rem);
  font-size: 47px;
  font-weight: 900;
  line-height: 1.2em;
}
.mv_text_en{
  font-size: clamp(1.125rem, 0.475rem + 3.25vw, 4.375rem);
  font-weight: 400;
  font-family: "Hurricane", cursive;
  letter-spacing: 0;
  line-height: 1;
  transform: rotate(-3deg);
  text-align: right;
  padding-right: 7%;

  margin-top: 1.1%;
}

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

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

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

  /* MV */
  .mv{
  }
  .mv_inner{

  }

  .mv_box1{
    width: 49.58%;
  }
  .mv_box1_img:before{
    padding-top: 93.94%;
    padding-top: 900px;
    padding-top: 100vh;
  }
  .mv_box2{
    width: 49.84%;
    margin-top: 0;
  }
  .mv_box2_top{

  }
  .mv_box2_top_img:before{
    padding-top: 46.81%;
    padding-top: 448px;
    padding-top: calc(100vh - 50vh - 0.1%);
  }
  .mv_box2_btm{
    margin-top: 0;
  }
  .mv_box2_btm1{
    width: 49.73%;
  }
  .mv_box2_btm1{


  }
  .mv_box2_btm1_img:before{
    padding-top: 93.9%;
    padding-top: 447px;
    padding-top: calc(100vh - 50vh - 5px);
    padding-top: calc(100vh - 50vh);
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_text{
    bottom:0;
  }
  .mv_text1{
    font-size: 40px;
  }
  .mv_text2{
    /*    font-size: 100px;*/
    font-size: clamp(2.25rem, 1.7rem + 2.75vw, 5rem);
    line-height: 1;
  }
  .mv_text_en{
    /*    font-size: 50px;*/
  }

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


  /* MV */
  .mv{
  }
  .mv_inner{

  }

  .mv_box1{

  }
  .mv_box1_img:before{

  }
  .mv_box2{

  }
  .mv_box2_top{

  }
  .mv_box2_top_img:before{

  }
  .mv_box2_btm{

  }
  .mv_box2_btm1{

  }
  .mv_box2_btm1:before{

  }

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

  .mv_text1{
    /*    font-size: 100px;*/
    font-size: clamp(1.75rem, 0.85rem + 4.5vw, 6.25rem);
  }
  .mv_text2{
    font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
  }
  .mv_text_en{
    /*    font-size: 70px;*/
  }

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

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

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

  }
  .mv_txt_p2{

  }

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

}
@media (min-width:1366px){
  .mv_box1_img:before{
    padding-top:100vh;
  }
  .mv_box2{

  }
  .mv_box2_top{
    height: 49.9%;
  }
  .mv_box2_top_img:before{
    padding-top:49.9vh;
    padding-top: calc(100vh - 50vh - 6px);
  }
  .mv_box2_btm{
    height: 49.9%;
  }
  .mv_box2_btm1{

  }
  .mv_box2_btm1:before{
    padding-top:49.8vh;
  }
}
@media (min-width:1450px){
  .mv_text2{
    font-size: 100px;
  }
}
@media (min-width:1700px){
  .mv_text2{
    font-size: 110px;
  }
}
@media (min-width:1900px){
  .mv_text2{
    font-size: 130px;
  }
}

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

/* サイドバー */
.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: 60px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_title{
  width: 100%;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 2;
}
.pg_header_title_h1{
  font-size: 20px;
  text-shadow: 1px 2px 10px #808080;
  font-weight: 900;
  color: #fff;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_h1{
    font-size: 45px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 119px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 700px;
  }

  .pg_header_title_h1{
    font-size: 60px;
  }
}
@media (min-width:1200px){


}



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

.footer{
  background: #bcb486;
  margin-top: 80px;
  padding-top: 50px;
}
.body_home .footer{
  margin-top: 0;
}
.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;
  padding: 16px;
}

/* 追尾スマホメニュー */
.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: #f4f3ee;
  text-decoration: none;
  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: #181818;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_1{
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}
.ftr_1_box{
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 15px;
  font-weight: 400;
  line-height: 2.1333em;
}
.ftr_add1{
  margin-top: 16px;
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_item_txt1{
  position: relative;
}
.ftr_add_item_txt1:after{
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ftr_add_item_txt1.p1{
  width: 37px;
}
.ftr_add_item_txt1.p2{
  width: 70px;
}
.ftr_add_item_txt2{
  padding-left: 11px;
}
.ftr_add_item_txt2 a:hover{
  color: #ccc;
}
.ftr_sns{
  margin-top: 18px;
}
.ftr_sns_item{

}
.ftr_sns_item img{
  transition: all .2s;
}
.ftr_sns_item:hover img{
  transform: scale(1.05);
}
.ftr_1_box2{
  width: 100%;
  display: flex;
}
.ftr_links{

}
.ftr_link{

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

}
@media (max-width:767px){
  .mv_text2{
   font-size:26px;
  }
  
  
  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_1_box1{
    text-align: center; 
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 175px;
    margin: 0 auto;
  }

  .ftr_add_item_txt1.p1{
    width: 80px;
    text-align: left;
  }
  .ftr_add_item_txt1.p2{
   width: 80px;
   text-align: left;
  }
  .ftr_add_items{
    width: 200px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-top: 80px;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .ftr_1{
    padding-bottom: 61px;
  }
  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_item_txt1{

  }
  .ftr_add_item_txt2{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{
    width: 49.64%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 60px;
  }
  .ftr_links{
    width: 50%;
  }
  .ftr_links:last-child{
    width: 160px;
  }
  .ftr_link{
    font-size: 14px;
    font-weight: 400;
    line-height: 2.133em;
  }
  .ftr_link:hover{
    color:#ccc;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
    padding-top: 80px;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_item_txt1{

  }
  .ftr_add_item_txt2{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{
    justify-content: flex-end;
    width: 52.64%;
    padding-top: 60px;
  }
  .ftr_links{

  }
  .ftr_links{
    width: 180px;
  }
  .ftr_links:last-child{
    width: 120px;
  }
  .ftr_link{
    font-size: 14px;
  }


}
@media (min-width:1200px){
  .ftr_links:last-child{
    padding-left: 41px;
  }
  .ftr_1_box1{
    width: 48.64%;
  }
  .ftr_1_box2 {
    width: 49.64%;
  }
  .ftr_links{
    width: 190px;
  }
  .ftr_links:last-child{
    width: 160px;
  }
  .ftr_link{
    font-size: 15px;
  }
}


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


/* テーブル用 */
.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{
  width: auto;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border: none;
  background: none;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 16px 20px 16px 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  width: 70px;
  aspect-ratio:1;
  background: #fff;
  border: 1px solid #1d1d1d;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.read_more a:hover{
  color: #181818;
  background: none;
}
  .read_more.cl a:after{
   background: transparent; 
  }
.read_more a:hover:after{
  color: #FFF;
  background: #181818;
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #565656;
  text-align: center;
}
.tt2_en p{
  display: inline-block;
  background: #f4f3ee;
  color: #bcb486;
  text-align: center;
  padding: 8px 30px;
}
.tt2_en.bg_wh p{
  background: #fff;
}
.tt2_ja{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3em;
  margin-top: 5px;
}
.tt2_ja p{
  letter-spacing: 0;
}
.tt2_ja.tate{
  letter-spacing: 0;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.tt2.left{
  text-align: left;
}
.tt2.left .tt2_en{
  text-align: left;
}


/* セクション */
.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:after{
    width: 50px;
    right: -40px;
  }
}
@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{
    font-size: 20px;
    padding: 16px 20px 16px 0;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "→";
    top: 50%;
    right: -62px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 36px;
  }
  .tt2_en{
    font-size: 20px;
  }
  .tt2_en{

  }

  .tt2_ja{
    font-size: 50px;
    margin-top: 15px;
  }
  .tt2_ja.tate{
    margin-top: 25px;
  }

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


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

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

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

  .tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

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


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

  /* コンテナ */
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }

  .tt2_ja{
    font-size: 65px;
  }
}
@media (min-width:1450px){

  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media (min-width:1700px){
  .container.wide{
    max-width: calc(1520px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }

}


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

}
.pg_home .section.sec1{
  position: relative;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  background: #f4f3ee;
  padding: 0;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{
  padding-top: 50px;
}
.pg_home .section.sec7{
  position: relative;
  padding-top: 0;
  padding-bottom: 80px;
}
.pg_home .section.sec7:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f3ee;
  position: absolute;
  top:12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

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

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 90px;
  }
  .pg_home .section.sec7{
    margin-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7:after{
    top: 7.8%;
  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

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

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 115px;
  }
  .pg_home .section.sec7{
    margin-top: 140px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec8{

  }

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


}


/*------メイン-----*/

/*見出し*/
.home_contents1_img:before{
  padding-top:600px;
}
.home_contents1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(2deg,rgba(250, 252, 252, 0.37) 0%, rgba(250, 252, 252, 0.88) 35%, rgba(250, 252, 252, 0.98) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(358deg,rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.88) 23%, rgba(255, 255, 255, 0.99) 100%);
}
.home_contents1_wrap{

}
.home_contents1_inner{
  width: 100%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.86em;
  text-align: justify;
}
.content_desc_block{

}
.content_desc_block + .content_desc_block{
  margin-top: 16px;
}

/*メッセージ*/
.home_msg{
  padding: 50px 0;
}
.home_msg_en{
  font-size: 50px;
  font-weight:600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.home_msg1{
  text-align: left;
}
.home_msg1.home_msg_en{
  color: #181818;
}
.home_msg2{
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin: 5px 0;
}
.home_msg2 p{
  display:inline-block;
  background: #fff;
  padding: 10px 20px;
}
.home_msg3{
  text-align: right;
}
.home_msg3.home_msg_en{
  color: #bcb486;
}

/*What we do.*/
.home_contents2_wrap{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents2_box1{
  width: 100%;
}
.home_contents2_box1 .tt2{

}
.home_contents2_box1 .tt2_en p{
  width: 100%;
  width: auto;
}
.home_contents2_box1 .content_desc{

}
.home_contents2_box2{
  width: 100%;
  margin-top: 20px;
}
.home_contents2_items{

}
.home_contents2_item{
  position: relative;
}
.home_contents2_item a{
 display: block;
}
.home_contents2_item a:hover .home_contents2_item_img img{
  transform: scale(1.05);
}
.home_contents2_item:nth-child(n+2){
  margin-top: 30px;
}
.home_contents2_item_img{
  overflow:hidden;
}
.home_contents2_item_img img{
  transition: all .2s;
}
.home_contents2_item_img:before{
  padding-top: 450px;
}
.home_contents2_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all .2s;
}
.home_contents2_item a:hover .home_contents2_item_img:after{
  background: rgba(0,0,0,0.7);
}
.home_contents2_item_inner{
  position: absolute;
  bottom: auto;
  top: 56.66%;
  left: 3.9%;
  z-index: 2;
  color: #fff;
}
.home_contents2_item_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  width: fit-content;
 
}
.home_contents2_item_tt:hover .home_contents2_item_txt{
  color: #fff;
}
.home_contents2_item_tt:hover .home_contents2_item_btn{
  background: #fff;
  color: #181818;
}
.home_contents2_item_txt:after{
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: #fff;
  margin-top: 12px;
}
.home_contents2_item_txt{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
   pointer-events: none;
   color: #fff!important;
}
.home_contents2_item_btn{
  width: 60px;
  aspect-ratio:1 / 1;
  border-radius: 50%;
  border: 1px solid #fff;
  background:transparent;
  position: relative;
  margin-left: 28px;
  transition: all .2s;
}
.home_contents2_item_btn:after{
  content: "→";
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_contents2_item .content_desc{
  margin-top: 12px;
}

/*インタビュー*/
.home_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.home_contents3_wrap:before{
  content: "";
  display: block;
  width: 103.6%;
  height: 71.34%;
  background: #f5f5f5;
  position: absolute;
  top: 3.1%;
  left: 25.67%;
  z-index: -1;
}
.home_contents3_box1{
  width: 100%;
}
.home_contents3_box1 .tt2_en{

}
.home_contents3_box1 .tt2_ja{
  letter-spacing: 0;
  margin-top: 0;
}
.home_contents3_box2{
  width: 100%;
}
.home_contents3_box2 .content_desc{

}
.home_contents3_box3{
  width: 100%;
  margin-top: 20px;;
}
.home_contents3_box3_items{
  display: flex;
  margin-inline:-4px;
}
.home_contents3_box3_item{
  width: 33.333%;
  padding-inline:5px;
}
.home_contents3_box3_item:nth-child(odd){
  padding-top: 40px;
}
.home_contents3_box3_item_inner{

}
.home_contents3_box3_item_img{

}
.home_contents3_box3_item_img:before{
  padding-top: 136.98%;
}

/*知る*/
.home_contents4_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents4_box1{
  width: 100%;
}
.home_contents4_box1_inner{

}
.home_contents4_box1_inner:hover .home_contents4_box1_img img,
.home_contents4_box2_inner:hover .home_contents4_box1_img img{
  transform: scale(1.05);
}
.home_contents4_box1_inner:hover,
.home_contents4_box2_inner:hover{
  color: #181818;
}
.home_contents4_box1_img:before{
  padding-top: 107.01%;
}
.home_contents4_box1_img{
  overflow: hidden;
}
.home_contents4_box1_img img{
  transition: all .2s;
}
.home_contents4_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.home_contents4_txt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.circle{
  display: block;
  width: 40px;
  aspect-ratio:1;
  background: #fff;
  border: 1px solid #1d1d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.circle:after{
  content: "→";
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  z-index: 1;
  transition: 0.2s all;

}
.circle:hover{
  color: #181818;
  background: #181818;
}
.circle:hover:after{
  color: #FFF;
  background: none;
  margin-right: -5px;
}
.home_contents4_box2{
  width: 100%;
  margin-top: 30px;;
}
.home_contents4_box2_inner{

}
.home_contents4_box2_inner:nth-child(n+2){
  margin-top: 30px;;
}
.home_contents4_box2 .home_contents4_box1_img:before{
  padding-top: 49.01%;
}

/*お知らせ*/
.home_contents5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents5_box1{
  width: 100%;
}
.home_contents5_box1 .tt2{

}
.home_contents5_box2{
  width: 100%;
}
.home_contents5_box2 .posts_list{

}

/*採用*/
.home_contents6_wrap{
  padding: 0 4.1%;
}
.home_contents6_txt{
  font-size:clamp(1.25rem, -0.153rem + 7.01vw, 7.563rem);
  font-weight: 900;
  line-height: 1;
  font-size: 6.3vw;
  margin-right: -5%;
}
.home_contents6_txt p{
  letter-spacing: 0;
}
.home_contents6_txt strong{
  font-weight: 900;
  color: #bcb486;
}
.home_contents6_items{
  display: flex;
  flex-wrap: wrap;
}
.home_contents6_item{
  width: 100%;
}
.home_contents6_item:nth-child(n+2){
  margin-top: 30px;;
}
.home_contents6_item_inner{
  position: relative;
  transition: all .2s;
}
.home_contents6_item_img:before{
  padding-top: 57.47%;
}
.home_contents6_item_img:after{
  content: "";
  display: block;;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: all .2s;
  z-index: 2;
  opacity: 0;
}
.home_contents6_item_inner:hover .home_contents6_item_img:after{
  opacity: 1;
}
.home_contents6_item .home_contents4_tt{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  padding-inline:4.2%;
  padding-bottom: 2%;
}
.home_contents6_item .home_contents4_tt .circle{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.home_contents6_item .home_contents4_tt .circle:hover{
  color: #181818; 
}
.home_contents6_item_inner:hover .circle:after{
  color: #181818; 
}
.home_contents6_item_inner:hover .circle{
  background: #fff;
  color: #181818;
  border: 1px solid #fff;;
}
.home_contents6_item .home_contents4_txt{
  font-weight: 900;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_contents2_item_inner{
    top: 100px;
    padding-right: 16px;
  }
  .home_contents2_item_txt{
    font-size: 24px;
  }
}
@media (min-width:768px){
  /*見出し*/
  .home_contents1_img:before{
    padding-top: 775px;
  }
  .home_contents1_wrap{

  }
  .content_desc{

  }
  .home_contents1_wrap .content_desc{
    font-size: 20px;
  }
  .content_desc_block + .content_desc_block{

  }
  .content_desc_block{

  }

  /*メッセージ*/
  .home_msg{
    padding: 102px 0;
  }
  .home_msg_en{
    font-size: 70px;
  }
  .home_msg1{

  }
  .home_msg1.home_msg_en{

  }
  .home_msg2{
    font-size: 30px;
  }
  .home_msg2 p{
    padding: 0px 50px;
  }
  .home_msg3{

  }
  .home_msg3.home_msg_en{

  }

  /*What we do.*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{

  }
  .home_contents2_box1 .tt2{

  }
  .home_contents2_box1 .tt2_en{
    width: 300px;
    margin: 0 auto;
  }
  .home_contents2_box1 .content_desc{

  }
  .home_contents2_box2{
    margin-top: 40px;
  }
  .home_contents2_items{

  }
  .home_contents2_item{

  }
  .home_contents2_item:nth-child(n+2) {
    margin-top: 60px;
  }
  .home_contents2_item_img{

  }
  .home_contents2_item_img:before{

  }
  .home_contents2_item_img:after{

  }
  .home_contents2_item_inner{
    top: 50%;
    padding-right: 30px;;
  }
  .home_contents2_item_tt{

  }
  .home_contents2_item_txt{
    font-size: 40px;
  }
  .home_contents2_item_btn{

  }
  .home_contents2_item .content_desc{

  }

  /*インタビュー*/
  .home_contents3_wrap{

  }
  .home_contents3_box1{

  }
  .home_contents3_box2{

  }
  .home_contents3_box2 .content_desc{

  }
  .home_contents3_box3{
    margin-top: 50px;;
  }
  .home_contents3_box3_items{

  }
  .home_contents3_box3_item{

  }
  .home_contents3_box3_item_inner{

  }
  .home_contents3_box3_item_img{

  }
  .home_contents3_box3_item_img:before{

  }

  /*知る*/
  .home_contents4_box{

  }
  .home_contents4_wrap .tt2{
    margin-bottom: 75px;
  }
  .home_contents4_box1{

  }
  .home_contents4_box1_inner{

  }
  .home_contents4_box1_img:before{

  }
  .home_contents4_tt{

  }
  .home_contents4_txt{
    font-size: 28px;
  }
  .circle{
    width: 60px;
  }
  .home_contents4_box2{
    margin-top: 40px;;
  }
  .home_contents4_box2_inner{

  }
  .home_contents4_box2_inner:nth-child(n+2){
    margin-top: 40px;;
  }
  .home_contents4_box2 .home_contents4_box1_img:before{

  }

  /*お知らせ*/
  .home_contents5_wrap{

  }
  .home_contents5_box1{

  }
  .home_contents5_box1 .tt2{

  }
  .home_contents5_box2{

  }
  .home_contents5_box2 .posts_list{

  }
  .home_contents5_box2 .read_more{
    margin-top: 47px;
  }

  /*採用*/
  .home_contents6_wrap{

  }
  .home_contents6_txt{

  }
  .home_contents6_items{
    margin-inline:-10px;
  }
  .home_contents6_item{
    width: 50%;
    padding-inline:10px;
  }
  .home_contents6_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents6_item_inner{

  }
  .home_contents6_item_img:before{

  }
  .home_contents6_item_img:after{

  }
  .home_contents6_item .home_contents4_tt{

  }
  .home_contents6_item .home_contents4_txt{
    font-size: 32px;
  }
}
@media (min-width:1024px){
  /*見出し*/
  .home_contents1_img:before{

  }
  .home_contents1_wrap{

  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }
  .home_contents1_wrap .content_desc{
    font-size: 20px;
  }
  .content_desc_block + .content_desc_block{
    margin-top: 40px;  
  }
  .content_desc_block{

  }

  /*メッセージ*/
  .home_msg{
    padding: 102px 0;
  }
  .home_msg_en{
    font-size: 118px;
  }
  .home_msg1{

  }
  .home_msg1.home_msg_en{

  }
  .home_msg2{
    font-size: 42px;
  }
  .home_msg2 p{

  }
  .home_msg3{

  }
  .home_msg3.home_msg_en{

  }

  /*What we do.*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{
    width: 22.97%;
  }
  .home_contents2_box1 .tt2{

  }
  .home_contents2_box1 .tt2_en{
    width: 100%;
    margin: 0;
  }
  .home_contents2_box1 .content_desc{

  }
  .home_contents2_box2{
    width: 68.46%;
    margin-top: 0;
  }
  .home_contents2_items{

  }
  .home_contents2_item{

  }
  .home_contents2_item_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents2_item_img:before{

  }
  .home_contents2_item_img:after{

  }
  .home_contents2_item_inner{
    top: 40.66%;
    padding-right: 0;
  }
  .home_contents2_item_tt{

  }
  .home_contents2_item_txt{
    font-size: 50px;
  }
  .home_contents2_item_btn{

  }
  .home_contents2_item .content_desc{

  }

  /*インタビュー*/
  .home_contents3_wrap{

  }
  .home_contents3_box1{
    width: 59.9%;
  }
  .home_contents3_box1 .tt2{
    margin-bottom: 39px;
  }
  .home_contents3_box2{
    width: 40.09%;
    padding-top: 20px;
  }
  .home_contents3_box2 .content_desc{

  }
  .home_contents3_box3{
    margin-top: 0;
  }
  .home_contents3_box3_items{

  }
  .home_contents3_box3_item{

  }
  .home_contents3_box3_item:nth-child(odd){
    padding-top: 61px;
  }
  .home_contents3_box3_item_inner{

  }
  .home_contents3_box3_item_img{

  }
  .home_contents3_box3_item_img:before{

  }
  .pg_home .section.sec4 .read_more{
    margin-top: 57px;
  }

  /*知る*/
  .home_contents4_box{

  }
  .home_contents4_box1{
    width: 51.35%;
  }
  .home_contents4_box1_inner{

  }

  .home_contents4_box1_img:before{

  }
  .home_contents4_tt{

  }
  .home_contents4_txt{
    font-size: 35px;
  }
  .circle{

  }
  .home_contents4_box2{
    width: 45.94%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
  }
  .home_contents4_box2_inner{

  }
  .home_contents4_box2_inner:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents4_box2 .home_contents4_box1_img:before{

  }

  /*お知らせ*/
  .home_contents5_wrap{

  }
  .home_contents5_box1{
    width: 14.41%;
  }
  .home_contents5_box1 .tt2{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .home_contents5_box1 .tt2_en p{
    padding: 8px 4px;
  }
  .home_contents5_box1 .tt2_ja.tate{
    margin-top: 0;
  }
  .home_contents5_box2{
    width: 82.88%;
  }
  .home_contents5_box2 .posts_list{

  }
  .posts_list .webgene-item a:hover:after{
    right: 10px;
  }

  /*採用*/
  .home_contents6_wrap{

  }
  .home_contents6_txt{

  }
  .home_contents6_items{

  }
  .home_contents6_item{

  }
  .home_contents6_item_inner{

  }
  .home_contents6_item_img:before{
    padding-top: 500px;
  }
  .home_contents6_item_img:after{

  }
  .home_contents6_item .home_contents4_tt{

  }
  .home_contents6_item .home_contents4_txt{
    font-size: 42px;
  }
  .home_contents6_item .circle{
    width: 70px;
  }
}
@media (min-width:1200px){
.home_contents1_wrap .content_desc{
    font-size: 22px;
  }

}
@media (min-width:1366px){
  .home_contents2_item_inner{
    top: 54.66%;
  }
  .home_contents2_item .content_desc{
    margin-right: calc(50% - 50vw);
  }

  .home_contents6_item .home_contents4_txt{
    font-size: 65px;
  }
}




/*******************************
*　about
********************************/
.body_aboutus .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_aboutus{

}
.pg_aboutus .section.sec1{

}
.pg_aboutus .section.sec2{
  position: relative;
  padding: 0;
}
.pg_aboutus .section.sec3{
  position: relative;
  padding-bottom: 80px;
}
.pg_aboutus .section.sec3:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f3ee;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .body_aboutus .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_aboutus{

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 80px;
  }
  .pg_aboutus .section.sec2{

  }
  .pg_aboutus .section.sec3{
    padding-top: 80px;
    padding-bottom: 100px;
  }

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

  .body_aboutus .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_aboutus{

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 117px;
  }
  .pg_aboutus .section.sec2{

  }
  .pg_aboutus .section.sec3{
    padding-top: 115px;
    padding-bottom: 200px;
  }

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


}

/* メイン部分 */

/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 20px;
}
.page_hdr_wrap:before{
  content: "";
  display: block;
  width: 114.6%;
  height: 73.5%;
  background: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 14.67%;
  z-index: -1;
}
.page_hdr_box1{
  width: 100%;
}
.page_hdr_box1 .tt2_ja{
  margin-top: 0;
}
.page_hdr_box1 .tt2_ja p{
  letter-spacing: 0;
}
.page_hdr_box1 .content_desc{
  line-height: 2;
}
.page_hdr_box2{
  width: 100%;
  margin-top: 20px;;
}
.page_hdr_box2_img:before{
  padding-top: 116.84%;
}

/*挑戦を恐れず、誠実を積み重ねる*/
.aboutus_contents1_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}
.aboutus_contents1_wrap .mv_text_en{
  text-align: center;
  color: #fff;
  padding-right: 0;
  text-shadow: 1px 2px 10px #181818;
}
.aboutus_contents1_wrap .tt2_en p{
  padding: 4px 50px;
}
.aboutus_contents1_wrap .tt2_ja{
  color: #fff;
}
.aboutus_contents1_wrap .content_desc{
  color: #fff;
}
.aboutus_contents1_img{

}
.aboutus_contents1_img:before{
  padding-top: 950px;
}
.aboutus_contents1_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;
}

/*米村組を支える「想い」と「力」*/
.aboutus_contents2_wrap .tt2_ja{
  font-size: 21px;
}
.pg_aboutus .tt2_ja p{
  letter-spacing: 0;
}
.aboutus_contents2_items{
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.aboutus_contents2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 0;
}
.aboutus_contents2_item:nth-child(n+2){
  margin-top: 60px;
}
.aboutus_contents2_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;;
  background: #eae6d0;
  position: absolute;
  bottom: auto;
  top: 20px;;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.aboutus_contents2_box1{
  width: 100%;
}
.aboutus_contents2_box1_img:before{
  padding-top: 108.63%;
}
.aboutus_contents2_box1_txt{
  position:absolute;
  bottom: 0;
  z-index: 2;
  font-size: 40px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 0.74;
  color: #f4f3ee;
}
.aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1_txt.tate{
  writing-mode: vertical-rl;
  bottom: -16px;
}
.aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1_txt.tate{
  writing-mode: sideways-lr;
   bottom: -14px;
}
.aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1_txt{
  left: -1px;
}
.aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1_txt{
  right: -1px;
}
.aboutus_contents2_box2{
  width: 100%;
  margin-top: 20px;;
}
.aboutus_contents2_box2_ttl{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4em;
}
.aboutus_contents2_box2_ttl p{
  letter-spacing: 0.05em;
}
.aboutus_contents2_box2 .content_desc{
  line-height: 2;
  margin-top: 20px;
}
.content_desc.lg{
  font-size: 17px;
  font-weight: 500;
  line-height: 1.86em;
}
.aboutus_contents2_wrap .content_desc.lg{
  margin-top: 60px;
}
@media (max-width:767px){
  .aboutus_contents1_wrap .tt2_ja{
    font-size: 21px;
  }
  .aboutus_contents1_wrap .mv_text_en{
    font-size: 32px;
  }

  .aboutus_contents2_box1_txt{
    font-size: 60px;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap{
    padding-bottom: 68px;
  }
  .page_hdr_box1{

  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_box2{
    margin-top: 30px;;
  }
  .page_hdr_box2_img:before{

  }

  /*挑戦を恐れず、誠実を積み重ねる*/
  .aboutus_contents1_wrap{

  }
  .aboutus_contents1_wrap .tt2{
    margin-bottom: 37px;
  }
  .aboutus_contents1_wrap .tt2_ja{
    font-size: 32px;
  }
  .aboutus_contents1_wrap .mv_text_en{

  }
  .aboutus_contents1_img{

  }
  .aboutus_contents1_img:before{
    padding-top: 713px;
  }
  .aboutus_contents1_img:after{

  }

  /*米村組を支える「想い」と「力」*/
  .aboutus_contents2_wrap .tt2_ja{
    font-size: 42px;
  }
  .aboutus_contents2_items{
    margin-top:80px;
  }
  .aboutus_contents2_item{
    padding-bottom: 0px;
  }
  .aboutus_contents2_item:nth-child(n+2){
    margin-top: 120px;
  }
  .aboutus_contents2_item:before{
    width: 100vw;
    height: 100%;
    bottom: 0;
    top: 50px;;
  }
  .aboutus_contents2_box1{

  }
  .aboutus_contents2_box1_img:before{
    padding-top: 80.63%;
  }
  .aboutus_contents2_box1_txt{
    font-size: 80px;
  }
  .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1_txt.tate{
  writing-mode: vertical-rl;
  bottom: -10px;
}
.aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1_txt.tate{
  writing-mode: sideways-lr;
  bottom: -6px;
}
.aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1_txt.tate{
writing-mode: vertical-rl; /* 縦書き（右から左） */ /* 文字を立てて表示 */
 transform: rotate(180deg);
  transform-origin: center; 
    bottom: -6px;
  }
  .aboutus_contents2_box2{
    margin-top: 30px;;
  }
  .aboutus_contents2_box2_ttl{
    font-size: 40px;
  }
  .aboutus_contents2_box2 .content_desc{
    margin-top: 50px;
  }
  .content_desc.lg{
    font-size: 18px;
  }
  .aboutus_contents2_wrap .content_desc.lg{
    margin-top: 68px;
  }
  
      .aboutus_contents1_wrap .content_desc {
        margin-top: 30px;
    }
}
@media (min-width:1024px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    width: 51.35%;
  }
  .page_hdr_box1 .tt2{
    margin-bottom: 34px;
  }
  .page_hdr_box1 .tt2_ja{
    margin-bottom: 42px;
  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_box2{
    width: 42.79%;
    margin-top: 0;
  }
  .page_hdr_box2_img:before{

  }

  /*挑戦を恐れず、誠実を積み重ねる*/
  .aboutus_contents1_wrap{

  }
  .aboutus_contents1_wrap .mv_text_en{
    font-size: 70px;
  }
  .aboutus_contents1_wrap .tt2_ja{
    font-size: 42px;
  }
  .aboutus_contents1_img{

  }
  .aboutus_contents1_img:before{

  }
  .aboutus_contents1_img:after{

  }
  .aboutus_contents1_wrap .content_desc{
    margin-top: 50px;
  }

  /*米村組を支える「想い」と「力」*/
  .aboutus_contents2_wrap .tt2{
    font-size: 50px;
    margin-bottom: 40px;
  }
  .aboutus_contents2_wrap .tt2_ja{
    font-size: 50px;
  }
  .aboutus_contents2_items{
    margin-top: 100px;
  }
  .aboutus_contents2_item{
    min-height: 650px;
    padding-bottom: 50px;
  }
  .aboutus_contents2_item:before{
    width: 93%;
  }
  .aboutus_contents2_item:nth-child(odd):before{
    height: 450px;
    left: 25.67%;
    top: 162px;
    margin: 0;
  }
  .aboutus_contents2_item:nth-child(even):before{
    height: 450px;
    right: 25.67%;
    top: 162px;
    margin: 0;
  }
  .aboutus_contents2_item:nth-child(n+2){
    margin-top: 74px;
  }
  .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1{
    order: 1;
  }
  .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box2{
    order: 2;
  }
  .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1{
    order: 2;
  }
  .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box2{
    order: 1;
  }
  .aboutus_contents2_box1{
    width: 42.79%;
    padding-top: 13px;
  }
  .aboutus_contents2_box1_img:before{
    padding-top: 108.63%;
  }
  .aboutus_contents2_box1_txt{
    font-size: 100px;
  }
  .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1_txt.tate{
  writing-mode: vertical-rl;
  bottom: -16px;
}
.aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1_txt.tate{
writing-mode: vertical-rl; /* 縦書き（右から左） */ /* 文字を立てて表示 */
 transform: rotate(180deg);
  transform-origin: center; 
   bottom: -14px;
}
  .aboutus_contents2_box2{
    width: 51.35%;
    margin-top: 0;
  }
  .aboutus_contents2_box2_ttl{
    font-size: 36px;
    margin-right: -25px;
  }
  .aboutus_contents2_box2 .content_desc{
    margin-top: 79px;
  }
  .content_desc.lg{
    font-size: 22px;
  }
  .aboutus_contents2_wrap .content_desc.lg{
    margin-top: 68px;
  }
}
@media (min-width:1200px){
  .aboutus_contents2_box2_ttl{
    font-size: 50px;
    margin-right: -65px;
  }
  .aboutus_contents2_box2_ttl{
    font-size: 50px;
  }

  .aboutus_contents2_item{
    min-height: inherit;
  }
  .aboutus_contents2_item:nth-child(odd):before{
    height: 403px;
    left: 25.67%;
    top: auto;
    bottom: 0;
    margin: 0;
  }
  .aboutus_contents2_item:nth-child(even):before{
    height: 403px;
    right: 25.67%;
    top: auto;
    bottom: 0;
    margin: 0;
  }

   .pg_aboutus .section.sec3 .aboutus_contents2_wrap .tt2_ja{
    font-size: 65px;
  }
  
   .aboutus_contents2_box1_txt{
    font-size: 118px;
  }
}




/*******************************
*　仕事について
********************************/
.body_ourbusiness .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_ourbusiness{

}
.pg_ourbusiness .section.sec1{

}
.pg_ourbusiness .section.sec2{

}
.pg_ourbusiness .section.sec3{
  position: relative;
  padding-bottom: 80px;
}
.pg_ourbusiness .section.sec3:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f3ee;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .body_ourbusiness .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_ourbusiness{

  }
  .pg_ourbusiness .section.sec1{

  }
  .pg_ourbusiness .section.sec2{
    padding-top: 80px;
  }
  .pg_ourbusiness .section.sec3{
    padding-top: 72px;
    margin-top: 100px;
    padding-bottom: 100px;
  }


}
@media (min-width:1024px){
  .body_ourbusiness .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_ourbusiness{

  }
  .pg_ourbusiness .section.sec1{

  }
  .pg_ourbusiness .section.sec2{
    padding-top: 105px;
  }
  .pg_ourbusiness .section.sec3{
    margin-top: 100px; 
    padding-bottom: 200px;
  }


}
@media (min-width:1200px){
  .pg_ourbusiness .section.sec3{
    margin-top: 137px; 
  }

}

/* メイン部分 */
/*見出し*/
.page_hdr_wrap.ourbusiness{

}
.page_hdr_wrap.ourbusiness:before{

}
.page_hdr_wrap.ourbusiness .page_hdr_box1{

}
.page_hdr_wrap.ourbusiness .page_hdr_box2{

}

/*信頼の源*/
.aboutus_contents2_items.ourbusiness{

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd):before{

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even):before{

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1 {

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box2 {

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1 {

}
.aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box2 {

}

/*米村組の仕事*/
.ourbusiness_contents1_items{
  margin-top: 50px;
}
.ourbusiness_contents1_item{

}
.ourbusiness_contents1_item:nth-child(n+2){
  margin-top: 50px;
}
.ourbusiness_contents1_item_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ourbusiness_contents1_item_hdr_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.ourbusiness_contents1_item_tt{
  display: flex;
  border-bottom: 1px solid #c4ad80;
  padding-bottom: 10px;
}
.ourbusiness_contents1_item_tt_icon{
  width: 40px;
  min-width: 40px;
  aspect-ratio:1;
  padding-top: 0;
}
.ourbusiness_contents1_item_right{
  color: #c4ad80;
  padding-left: 9px;
}
.ourbusiness_contents1_item_right1{
  font-size: 28px;
  font-weight: 900;
  line-height: 1.16em;
}
.ourbusiness_contents1_item_right2{
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  margin-top: 8px;
}
.ourbusiness_contents1_item_hdr .tt2_ja{
  margin-right: -16px;
  line-height: 1.4em;
}
.ourbusiness_contents1_item_hdr .tt2_ja p{
  letter-spacing: 0.05em;
}
.ourbusiness_contents1_item_hdr .content_desc{
  line-height: 2;
  margin-top: 20px;
}
.ourbusiness_contents1_item_hdr_box2{
  width: 100%;
  order: 1;
}
.ourbusiness_contents1_item_hdr_box2_img:before{
  padding-top: 125.26%;
}

.ourbusiness_contents1_item_btm{
  background: #eae6d0;
  padding: 20px 16px;
  margin-top: 40px;
}
.ourbusiness_contents1_item_btm_tt{
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #c4ad80;
  padding-bottom: 10px;
}
.ourbusiness_contents1_item_lists{
  display: flex;
  flex-wrap: wrap;
  margin-top: 31px;
}
.ourbusiness_contents1_item_list{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.777em;
  position: relative;
  padding-left: 20px;
}
.ourbusiness_contents1_item_list:nth-child(n+2){
  margin-top: 16px;
}
.ourbusiness_contents1_item_list:before{
  content: "●";
  display: block;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  color: #c4ad80;
}

/*米村組で叶える、新しい自分*/
.recruit_contents1_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.recruit_contents1_item{
  width: 100%;
}
.recruit_contents1_item:nth-child(n+2){
  margin-top: 30px;
}
.recruit_contents1_item_inner{

}
.recruit_contents1_item_img{

}
.recruit_contents1_item_img:before{
  padding-top: 83.33%;
}
.recruit_contents1_item_tt{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.42em;
  border-bottom: 1px solid #c4ad80;
  padding-bottom: 16px;
  text-align: center;
  margin-top: 20px;
}
.recruit_contents1_item .content_desc{
  line-height: 2.125em;
  margin-top: 17px;
}
@media (max-width:767px){
  .ourbusiness_contents1_item_hdr .tt2_ja{
    margin-top: 10px;
  }
  .ourbusiness_contents1_item_list{
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap.ourbusiness{

  }
  .page_hdr_wrap.ourbusiness:before{

  }
  .page_hdr_wrap.ourbusiness .page_hdr_box1{

  }
  .page_hdr_wrap.ourbusiness .page_hdr_box2{

  }

  /*米村組の仕事*/
  .ourbusiness_contents1_items{
    margin-top: 60px;
  }
  .ourbusiness_contents1_item{

  }
  .ourbusiness_contents1_item:nth-child(n+2){
    margin-top: 90px;
  }
  .ourbusiness_contents1_item_hdr{

  }
  .ourbusiness_contents1_item_hdr_box1{
    margin-top: 30px;
  }
  .ourbusiness_contents1_item_tt{
    padding-bottom: 18px;
  }
  .ourbusiness_contents1_item_tt_icon{
    width: 66px;
    min-width: 66px;
    padding-top: 12px;
  }
  .ourbusiness_contents1_item_right{

  }
  .ourbusiness_contents1_item_right1{
    font-size: 40px;
  }
  .ourbusiness_contents1_item_right2{
    font-size: 30px;
  }
  .ourbusiness_contents1_item_hdr .tt2_ja{
    font-size: 32px;
  }
  .ourbusiness_contents1_item_hdr .content_desc{

  }
  .ourbusiness_contents1_item_hdr_box2{

  }
  .ourbusiness_contents1_item_hdr_box2_img:before{
    padding-top: 95%;
  }

  .ourbusiness_contents1_item_btm{
   padding: 20px 20px;
    margin-top: 49px;
  }
  .ourbusiness_contents1_item_btm_tt{
    font-size: 18px;
  }
  .ourbusiness_contents1_item_lists{
    justify-content: space-between;;
    padding: 0;
    margin-top: 31px;
  }
  .ourbusiness_contents1_item_list:nth-child(n+2){
    margin-top: 0;
  }
  .ourbusiness_contents1_item_list:nth-child(n+3){
    margin-top: 16px;;
  }
  .ourbusiness_contents1_item_list{
    width: 47.73%; 
    font-size: 14px;
  }

  /*米村組で叶える、新しい自分*/
  .recruit_contents1_items{
    margin-inline:-15px;
    margin-top: 60px;
  }
  .recruit_contents1_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_contents1_item:nth-child(n+3){
    margin-top: 50px;
  }
  .recruit_contents1_item_inner{

  }
  .recruit_contents1_item_img{

  }
  .recruit_contents1_item_img:before{

  }
  .recruit_contents1_item_tt{
    font-size: 24px;
    margin-top: 28px;
    padding-bottom: 23px;
  }
  .recruit_contents1_item .content_desc{

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

  /*見出し*/
  .page_hdr_wrap.ourbusiness{

  }
  .page_hdr_wrap.ourbusiness:before{
    left: auto;
    right: 14.67%;
  }
  .page_hdr_wrap.ourbusiness .page_hdr_box1{
    order: 2;
  }
  .page_hdr_wrap.ourbusiness .page_hdr_box2{
    order: 1;
  }
  .tt2_ja.lg{
    font-size: 65px;
  }
  .body_recruit .page_hdr_wrap:before{
    bottom: auto;
    top: 171px;
    height: 70.5%;
  }
  .body_recruit .page_hdr_box1 .read_more{
    margin-top: 21px;
  }

  /*信頼の源*/
  .aboutus_contents2_items.ourbusiness{

  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd):before{
    right: 25.67%;
    left: auto;
  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even):before{
    left: 25.67%;
    right: auto;
  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box1 {
    order: 2;
  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(odd) .aboutus_contents2_box2 {
    order: 1;
  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box1 {
    order: 1;
  }
  .aboutus_contents2_items.ourbusiness .aboutus_contents2_item:nth-child(even) .aboutus_contents2_box2 {
    order: 2;
  }

  /*米村組の仕事*/
  .ourbusiness_contents1_items{
    margin-top: 87px;
  }
  .ourbusiness_contents1_item{

  }
  .ourbusiness_contents1_item:nth-child(n+2){
    margin-top: 90px;
  }
  .ourbusiness_contents1_item_hdr{

  }
  .ourbusiness_contents1_item_hdr_box1{
    width: 51.35%;
    order: 1;
    margin-top: 0;
  }
  .ourbusiness_contents1_item_tt{

  }
  .ourbusiness_contents1_item_tt_icon{

  }
  .ourbusiness_contents1_item_right{

  }
  .ourbusiness_contents1_item_right1{
    font-size: 46px;
    margin-right: -22px;
  }
  .ourbusiness_contents1_item_right2{
    font-size: 40px;
  }
  .ourbusiness_contents1_item_hdr .tt2_ja{
    font-size: 40px;
  }
  .ourbusiness_contents1_item_hdr .content_desc{
    margin-top: 30px;
  }
  .ourbusiness_contents1_item_hdr_box2{
    width: 42.79%;
    padding-top: 10px;
    order: 2;
  }
  .ourbusiness_contents1_item_hdr_box2_img:before{
    padding-top: 125.26%;
  }

  .ourbusiness_contents1_item_btm{
    margin-top: 49px;
    padding: 20px 16px;
  }
  .ourbusiness_contents1_item_btm_tt{
    font-size: 20px;
  }
  .ourbusiness_contents1_item_lists{
    justify-content: space-between;;
    padding: 0 25px;
  }
  .ourbusiness_contents1_item_list{
    width: 47.73%;  
    font-size: 18px;
    padding-left: 25px;
  }
  .ourbusiness_contents1_item_list:nth-child(n+2){
    margin-top: 0;
  }
  .ourbusiness_contents1_item_list:nth-child(n+3){
    margin-top: 8px;
  }
  .ourbusiness_contents1_item_list:nth-child(even){
    width: 47.73%;  
  }

  /*米村組で叶える、新しい自分*/
  .recruit_contents1_items{
    margin-top: 77px;
  }
  .recruit_contents1_item{

  }
  .recruit_contents1_item:nth-child(n+3){
    margin-top: 67px;
  }
  .recruit_contents1_item_inner{

  }
  .recruit_contents1_item_img{

  }
  .recruit_contents1_item_img:before{

  }
  .recruit_contents1_item_tt{
    font-size: 32px;
    padding-bottom: 23px;
    margin-top: 32px;
  }
  .recruit_contents1_item .content_desc{

  }
}
@media (min-width:1200px){
  .recruit_contents1_item_tt{
    font-size: 35px;
  }

}
@media (min-width:1366px){
  .ourbusiness_contents1_item_right1{
    font-size: 51px;
  }
  .ourbusiness_contents1_item_hdr .tt2_ja{
    font-size: 50px;
  }
  .ourbusiness_contents1_item_lists{
    justify-content: flex-start;
  }
  .ourbusiness_contents1_item_list:nth-child(even){
    width: calc(100% - 47.73%);
  }

}
@media (min-width:1450px){
.ourbusiness_contents1_item_btm{
    padding: 20px 37px;
  }

}

@media (min-width:1700px){


}






/*******************************
*　採用
********************************/
.body_recruit .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{
  position: relative;
  padding: 0;
}
.pg_recruit .section.sec4{
  position: relative;
  padding-bottom:80px;
}
.pg_recruit .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f3ee;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .body_recruit .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 39px;
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec4{
    padding-top: 80px;
    padding-bottom: 100px;
  }

}
@media (min-width:1024px){
  .body_recruit .footer{
    margin-top: 0;
  }
  /* セクション設定 */
  .pg_recruit{

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{
    padding-top: 39px;
    padding-bottom: 148px;
  }

  .pg_recruit .section.sec4{
    padding-top: 115px;
    padding-bottom: 200px;
  }

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


}

/* メイン部分 */
/*福利厚生*/
.aboutus_contents1_img.benefit:before{
  padding-top: 750px;
}
.recruit_benefit_items{
  margin-top: 30px;
}
.recruit_benefit_item{

}
.recruit_benefit_item_inner{
  background: rgba(255,255,255,0.9);
  padding: 27px 30px 27px 27px;
}
.recruit_benefit_item_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45em;
  text-align: center;
  color: #a38344;
}
.recruit_benefit_item_tt:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #1a1a1a;
  margin: 22px auto 0;
}
.recruit_benefit_item .content_desc{
  color: #181818;
  line-height: 2;
  margin-top: 14px;
}

/*こんな想いを持つ方と共に*/
.aboutus_contents2_items.recruit{

}
.aboutus_contents2_items.recruit .aboutus_contents2_box1_img:before{
  padding-top: 84.21%;
} 
@media (max-width:767px){
  .pg_recruit .section.sec2{
    padding-top: 20px;
  }

  .recruit_benefit_items.swiper{
    overflow: visible;
  }
  .recruit_benefit_items .swiper-pagination-bullet{
    background: #fff;
  }
  .recruit_benefit_items .swiper-pagination{
    top: auto;
    bottom: -40px;
  }

  .pg_recruit .section.sec2 .read_more a{
    width: 200px;
  }
}
@media (min-width:768px){
  /*福利厚生*/
  .aboutus_contents1_img.benefit:before{
    padding-top: 1400px;
  }
  .recruit_benefit_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
    margin-top: 45px;
  }
  .recruit_benefit_item{
    width: 50%;
    padding-inline:15px;
  }
  .recruit_benefit_item:nth-child(n+3){
    margin-top: 30px;
  }
  .recruit_benefit_item_inner{
    height: 100%;
  }
  .recruit_benefit_item_tt{
    font-size: 20px;
  }
  .recruit_benefit_item .content_desc{

  }
  .read_more.benefit{
    margin-top: 85px;
  }
  .read_more.benefit a:first-child{
    margin-right: 106px;
  }
  .pg_recruit .section.sec4 .read_more{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  /*福利厚生*/
  .aboutus_contents1_wrap.benefit{
    top: 47%;
  }
  .aboutus_contents1_wrap.benefit .tt2_ja{
    font-size: 65px;
  }
  .aboutus_contents1_img.benefit:before{
    padding-top: 1300px;
  }
  .recruit_benefit_items{

  }
  .recruit_benefit_item{
    width: 33.33%;
  }
  .recruit_benefit_item:nth-child(n+3){
    margin-top: 0;
  }
  .recruit_benefit_item:nth-child(n+4){
    margin-top: 30px;
  }
  .recruit_benefit_item_inner{

  }
  .recruit_benefit_item_tt{
    font-size: 19px;
  }
  .recruit_benefit_item .content_desc{

  }

  /*こんな想いを持つ方と共に*/
  .pg_recruit .section.sec4 .tt2_ja{
    font-size: 65px;
  }
  .aboutus_contents2_items.recruit{
    margin-top: 80px;
  }
  .aboutus_contents2_items.recruit .aboutus_contents2_item{
    padding-bottom: 40px;
  }
  .aboutus_contents2_items.recruit .aboutus_contents2_item:nth-child(n+2) {
    margin-top: 30px;
  }
  .aboutus_contents2_items.recruit .aboutus_contents2_item:before{
    height: 400px;
  }
  .pg_recruit .section.sec4 .read_more{
    margin-top: 20px;
  }
}
@media (min-width:1200px){
  .aboutus_contents2_items.recruit .aboutus_contents2_item:nth-child(n+2) {
    margin-top: 74px;
  }
  .aboutus_contents1_img.benefit:before{
    padding-top: 1127px;
  }
  .recruit_benefit_item_tt{
    font-size: 22px;
  }
  .aboutus_contents2_items.recruit .aboutus_contents2_item:before{
    height: 303px;
  }
  .pg_recruit .section.sec4 .read_more{
    margin-top: 60px;
  }

}

/*******************************
*　インタブユー
********************************/

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

}
.pg_staffInterview .section.sec1{

}
.pg_staffInterview .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_staffInterview .section.sec1{

  }
  .pg_staffInterview .section.sec2{

  }

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

  }
  .pg_staffInterview .section.sec1{

  }
  .pg_staffInterview .section.sec2{
    padding-top: 70px;
  }

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


}

/* メイン部分 */
.staffInterview_contents_items{
  margin-top: 50px;
}
.staffInterview_contents_item{
  position: relative;
  padding: 30px 0;
}
.staffInterview_contents_item:nth-child(n+2){
  margin-top:50px;
}
.staffInterview_contents_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #edead7;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.staffInterview_contents_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staffInterview_contents_hdr_box1{
  width: 100%;
  order: 1;
}
.staffInterview_contents_hdr_box1_img:before{
  padding-top: 84.03%;
}
.staffInterview_contents_hdr_box1_tt{
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #9f8c66;
  padding-bottom: 9px;
  padding-top: 18px;
}
.staffInterview_contents_hdr_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;;
}
.staffInterview_contents_hdr_box2_block{

}
.staffInterview_contents_hdr_box2_block:nth-child(n+2){
  margin-top: 32px;
}
.staffInterview_contents_hdr_box2_block_tt{
  font-size: 18px;
  font-weight: 700;
  color: #9f8c66;
  background: #fff;
  padding: 10px 16px;;
}
.staffInterview_contents_hdr_box2_block .content_desc{
  line-height: 2;
  margin-top: 16px;
}
.staffInterview_contents_hdr_box3{
  width: 100%;
  order: 3;
  margin-top: 32px;
}
.staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

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

}
@media (min-width:768px){
  /* メイン部分 */
  .staffInterview_contents_items{
    margin-top: 70px;
  }
  .staffInterview_contents_item{
    padding-top: 50px;
    padding-bottom: 42px;
  }
  .staffInterview_contents_item:nth-child(n+2){
    margin-top: 60px;
  }
  .staffInterview_contents_item:before{
    width: 91.53%;
    margin-left: 0;
    margin-right: 0;
  }
  .staffInterview_contents_item:nth-child(odd):before{
    left: 8.4%;
  }
  .staffInterview_contents_item:nth-child(even):before{
    right: 8.4%;
  }
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box1{
    order: 1;
  }
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box2{
    order: 2;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box1{
    order: 2;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box2{
    order: 1;
  }
  .staffInterview_contents_hdr{

  }
  .staffInterview_contents_hdr_box1{
    width: 45.23%;
  }
  .staffInterview_contents_item:nth-child(odd){
    padding-right: 65px;
  }
  .staffInterview_contents_item:nth-child(even){
    padding-left: 65px;
  }
  .staffInterview_contents_hdr_box1_img:before{

  }
  .staffInterview_contents_hdr_box1_tt{
    font-size: 18px;
    padding-top: 25px;
  }
  .staffInterview_contents_hdr_box2{
    width: 48%;
    margin-top: 0;
  }
  .staffInterview_contents_hdr_box2_block{

  }
  .staffInterview_contents_hdr_box2_block_tt{
    font-size: 20px;
    padding: 6px 29px;
  }
  .staffInterview_contents_hdr_box2_block .content_desc{

  }
  .staffInterview_contents_hdr_box3{
    width: 84.09%;
    order: 3;
    margin-top: 38px;
  }
  .staffInterview_contents_item:nth-child(odd) .staffInterview_contents_hdr_box3{
    margin-left: auto;
  }
  .staffInterview_contents_item:nth-child(even) .staffInterview_contents_hdr_box3{
    margin-right: auto;
  }
  .staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .staffInterview_contents_items{
    margin-top: 93px;
  }
  .staffInterview_contents_item{

  }
  .staffInterview_contents_item:nth-child(n+2){
    margin-top: 100px;
  }
  .staffInterview_contents_hdr{

  }
  .staffInterview_contents_hdr_box1{

  }
  .staffInterview_contents_hdr_box1_img:before{

  }
  .staffInterview_contents_hdr_box1_tt{
    font-size: 16px;
  }
  .staffInterview_contents_hdr_box2{

  }
  .staffInterview_contents_hdr_box2_block{

  }
  .staffInterview_contents_hdr_box2_block_tt{
    font-size: 22px;
  }
  .staffInterview_contents_hdr_box2_block .content_desc{

  }
  .staffInterview_contents_hdr_box3{

  }
  .staffInterview_contents_hdr_box3 .staffInterview_contents_hdr_box2_block{

  }

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


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

}
@media (min-width:1450px){
.staffInterview_contents_hdr_box1_tt{
    font-size: 20px;
  }

}

@media (min-width:1700px){


}

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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}





.txt_anime{
  /*display: flex;*/
}

.txt_anime span.space {
  width: 0.2em;   /* 半角スペース幅を確保（調整可） */
  opacity: 1;
  filter: none;
  transform: none;
}
.txt_anime .word {
  display: inline-block;      /* 単語内で改行させない */
  white-space: nowrap;        /* 句読点付きでも1塊で保持 */
}

/* 文字アニメ（既存と同じ） */
.txt_anime .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(6px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
  will-change: opacity, transform, filter;
}
.txt_anime .char.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.txt_anime .char.strong{
  color: var(--main-color);
}