@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #f2f2f0;
  --sub-color: #c3c0b3;
  --txt-color: #1a1a1a;

  /* フォント関連 */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Playfair Display", serif;
  /*----font-en1: "Oswald", sans-serif;*/
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: "Zen Old Mincho", serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  "Zen Kaku Gothic New", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: var(--txt-color);
  background: url(https://loulu.co.jp/system_panel/uploads/images/20260316171131217911.jpg);

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }
  .hdr_logo img{
    width: 160px;
    margin: auto;
  }

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

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

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

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    /*    background: rgba(255,255,255,0.8);*/
  }
  .header.slim .hdr_logo img{
    height: auto;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr_contact_btn{
    text-align: center;
    display: block;
    width: 200px;
    width: 170px;
    background: #d17100;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    font-family: var(--font-ja);
    padding: 10px;
    margin-left: 22px;
  }
  .hdr_contact_btn:hover{
    background: #000000;
    color: #fff;
  }
  .hdr_contact_btn p{
    font-size: 18px;
    letter-spacing: 0.075em;
  }
  /*  .hdr_contact_btn p:before{
      content: "\f0e0";
      font-family: "fontAwesome";
      margin-right: 10px;
    }*/
}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 82px;
  }
  .header{
    --logo-height:auto;
    padding: 19px 20px 26px 30px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }
  .hdr_contact_btn{
    width: 205px;
    padding: 8px 10px;
  }
  /*  .hdr_contact_btn p:before{
      margin-right: 17px;
    }*/
}
@media (min-width:1200px){

  .header{
    padding: 15px 30px 25px 30px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 250px;
  }

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

  }
  .header.slim .hdr_logo img{
  }

}
@media (min-width:1470px){
  .hdr_logo img {
    width: 250px;
  }
  .hdr_outer{
    margin-top: -26px;
  }
  .header{
    padding: 25px 35px 26px 40px;
  }
}

@media (min-width:1720px){
  .hdr_logo img {
    width: auto;
  }
  .header{
    padding: 44px 50px 26px 70px;
  }

}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  padding: 50px 0 50px;
  z-index: 1;
}
.mv_img_box{
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
}
/* ベージュフレーム */
.mv_img_box:after{
  content: "";
  position: absolute;
  background: #dfd5bd;
  top: 50px;
  left: 50px;
  width: calc(100% - 80px);
  height: auto;
  z-index: 2;
  padding: 150px 0;
}

.mv_img_item{
  position: relative;
  min-height: 520px;
}

/* メイン画像 */
.mv_main_img{
  top: 60px;
  left: 50px;
  width: calc(100% - 100px);
  height: 360px;
  position: absolute;
  z-index: 3;
}

.mv_main_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

/* 右上の壁画像 */
.mv_sub_right1_img{
  top: 0px;
  right: 0;
  width: 160px;
  height: 220px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

.mv_sub_right1_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右下の人物画像 */
.mv_sub_right2_img{
  right: -50px;
  bottom: 0;
  width: 110px;
  height: 138px;
  overflow: hidden;
  position: absolute;
  z-index: 5;
}

.mv_sub_right2_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 左下のヤシ画像 */
.mv_sub_left_img{
  left: -10px;
  bottom: 0;
  width: 145px;
  height: 118px;
  overflow: hidden;
  position: absolute;
  z-index: 5;
}

.mv_sub_left_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 44%;
  left: -25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #1a1a1a;
}
.mv_txt_p1{
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
.mv_txt_p2{
  font-size: 16px;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.075em;
}

.mv_schroll{
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  left: 5.2%;
  bottom: 0;
  z-index: 2;
  border-left: 1px solid #fff;
  height: 100px;
  padding-left: 7px;
}


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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:375px){
  .mv_img_item .img_fit:before{
    padding-top: 80vh;
  }
  .mv_inner{
    top: 48%;
  }
}

@media (max-width:767px){

}
@media (min-width:768px){
  /* MV */
  .mv{
    padding: 20px 0 150px;
    z-index: 1;
  }

  .mv_img_box{
    width: 100%;
    height: auto;
    min-height: 560px;
  }

  /* ベージュフレーム */
  .mv_img_box:after{
    top: 65px;
    left: 100px;
    width: calc(100% - 210px);
    height: auto;
    z-index: 2;
    padding: 170px 0;
  }
  .mv_img_item{
    min-height: 550px;
  }

  /* メイン画像 */
  .mv_main_img{
    top: 80px;
    left: 100px;
    width: 70%;
    height: auto;
  }
  /* 右上の壁画像 */
  .mv_sub_right1_img{
    top: 20px;
    right: 20px;
    width: 260px;
    height: auto;
  }
  /* 右下の人物画像 */
  .mv_sub_right2_img{
    right: -80px;
    bottom: 0;
    width: 150px;
    height: auto;
  }
  /* 左下のヤシ画像 */
  .mv_sub_left_img{
    left: 15px;
    bottom: 0;
    width: 190px;
    height: 140px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 16%;
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 60px;
  }
  .mv_txt_p2{
    font-size: 16px;
  }

}
@media (min-width:1024px){
  /* MV */
  .mv{
    padding: 20px 0 150px;
  }
  .mv_img_box{
    width: 100%;
    height: auto;
    min-height: 560px;
  }
  /* ベージュフレーム */
  .mv_img_box:after{
    top: 70px;
    left: 180px;
    width: calc(100% - 370px);
    height: auto;
    z-index: 2;
    padding: 200px 0;
  }
  .mv_img_item{
    min-height: 670px;
  }
  /* メイン画像 */
  .mv_main_img{
    top: 85px;
    left: 180px;
    width: 62%;
    height: auto;
  }
  /* 右上の壁画像 */
  .mv_sub_right1_img{
    top: 0px;
    right: 20px;
    width: 320px;
    height: auto;
  }
  /* 右下の人物画像 */
  .mv_sub_right2_img{
    right: -130px;
    bottom: 0;
    width: 180px;
    height: auto;
  }
  /* 左下のヤシ画像 */
  .mv_sub_left_img{
    left: 30px;
    bottom: 0;
    width: auto;
    height: 210px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 18%;
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 80px;
    margin-bottom: 30px;
  }
  .mv_txt_p2{

  }

}
@media (min-width:1200px){
  /* MV */
  .mv{
    padding: 20px 0 180px;
  }
  .mv_img_box{
    width: 100%;
    height: auto;
    min-height: 560px;
  }
  /* ベージュフレーム */
  .mv_img_box:after{
    top: 70px;
    left: 180px;
    width: calc(100% - 340px);
    height: auto;
    z-index: 2;
    padding: 250px;
  }
  .mv_img_item{
    min-height: 800px;
  }
  /* メイン画像 */
  .mv_main_img{
    top: 85px;
    left: 180px;
    width: 70%;
    height: auto;
  }
  /* 右上の壁画像 */
  .mv_sub_right1_img{
    top: 30px;
    right: 20px;
    width: 400px;
    height: auto;
  }
  /* 右下の人物画像 */
  .mv_sub_right2_img{
    right: -130px;
    bottom: 0;
    width: 220px;
    height: auto;
  }
  /* 左下のヤシ画像 */
  .mv_sub_left_img{
    left: 30px;
    bottom: 0;
    width: auto;
    height: 230px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 50px;
  }
  .mv_txt_p1{
    font-size: 100px;
    margin-bottom: 50px;
  }
  .mv_txt_p2{
    font-size: 18px;
  }

}
@media (min-width: 1366px) {
  /* MV */
  .mv_img_item {
    min-height: 900px;
  }
  .mv_main_img {
    top: 100px;
    left: 220px;
    width: 70%;
    height: auto;
  }
  .mv_img_box:after {
    top: 70px;
    left: 220px;
    width: calc(100% - 380px);
    height: auto;
    z-index: 2;
    padding: 250px;
  }

  /* MVテキスト */
  .mv_txt {
    top: 15%;
    left: 50px;
  }
}
@media (min-width:1470px){
  .mv_img_item {
    min-height: 900px;
  }
  .mv_main_img {
    top: 125px;
    left: 260px;
    width: 65%;
    height: auto;
  }
  .mv_img_box:after {
    top: 90px;
    left: 260px;
    width: calc(100% - 480px);
    height: auto;
    z-index: 2;
    padding: 320px;
  }

  /* MVテキスト */
  .mv_txt {
    top: 18%;
    left: 80px;
  }
  .mv_txt_p1 {
    font-size: 120px;
    margin-bottom: 55px;
  }
  .mv_txt_p2 {
    font-size: 20px;
  }
}

@media (min-width: 1536px) {
  .mv_sub_left_img {
    left: 30px;
    bottom: 0;
    width: auto;
    height: 260px;
  }
}

@media (min-width:1720px){

  /* MV */
  .mv{
    padding: 30px 0 480px;
  }
  .mv_img_box{
    position: relative;
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
    height: 860px;
  }
  /* ベージュのフレーム */
  .mv_img_box:after{
    content: "";
    position: absolute;
    top: 128px;
    left: 146px;
    width: 1163px;
    background: #dfd5bd;
    padding: 420px 0px;
    z-index: 2;
  }
  .mv_img_item{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 1080px;
  }
  /* メイン画像 */
  .mv_main_img{
    top: 167px;
    left: 146px;
    width: 1109px;
    height: 802px;
  }

  /* 右上の壁画像 */
  .mv_sub_right1_img{
    top: 47px;
    right: -210px;
    width: 610px;
    height: 552px;
  }
  /* 右下の人物画像 */
  .mv_sub_right2_img{
    right: -204px;
    bottom: 0;
    width: 300px;
    height: 451px;
  }

  /* 左下のヤシ画像 */
  .mv_sub_left_img{
    left: -122px;
    bottom: -50px;
    width: 445px;
    height: 354px;
  }
  .mv_sub_left_img img{

  }

  /* MVテキスト */
  .mv_txt{
    top: 16%;
    left: 89px;
  }
  .mv_txt_p1{
    font-size: 120px;
    margin-bottom: 55px;
  }
  .mv_txt_p2{
    font-size: 25px;
    margin-left: 5px;
  }
}

@media (min-width: 1920px) {
  /* 左下のヤシ画像 */
  .mv_sub_left_img{
    left: -181px;
    bottom: -50px;
    width: 515px;
    height: 404px;
  }
}


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

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

/* バナー */
.sidebar_bn{
  display: block;
  margin-bottom: 5px;
}
.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 (max-width: 767px) {
  .sidebar_bn {
    display: none;
  }
}

@media (min-width:768px){

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

  /* バナー */
  .sidebar_bn{
    margin-bottom: 8px;
  }
  .sidebar_bn img{
    width: 45px;
  }


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

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

  /* バナー */
  .sidebar_bn{
    margin-bottom: 10px;
  }
  .sidebar_bn img{
    width: auto;
  }

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

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

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

  /* バナー */
  .sidebar_bn{
    margin-bottom: 10px;
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: -1;
}
.pg_header_mv{
  padding: 30px 0 0;
}
.pd_header_mv_img_box{
  position: relative;
  width: 77.85vw;
  height: 66%;
}
.pg_header .mv_sub_right1_img{
  top: 0;
  right: -5%;
  width: 40vw;
  height: 30vw;
}
.pg_header .mv_sub_left_img{
  left: -3.8%;
  bottom: 5%;
  width: 38vw;
  height: 30vw;
}
.pg_header .mv_img_box:after {
  content: "";
  position: absolute;
  top: 117px;
  left: 224px;
  width: 1165px;
  top: 7%;
  left: 5%;
  width: 81.5vw;
  height: 69%;
  background: #e6deca;
  padding: 0;
  z-index: 2;
}

.pg_header .mv_main_img {
  top: 10%;
  left: 24%;
  width: 66vw;
  height: 60%;
}
.pg_header .mv_sub_right1_img {
  top: 0;
  right: -30%;
  width: 35vw;
  height: 25vw;
}
.pg_header .mv_sub_left_img {
  left: 5%;
  bottom: 5%;
  width: 26vw;
  height: 20vw;

  left: 0;
  bottom: 12%;
  width: 45vw;
  height: 30vw;
}
.pg_header .mv_img_box:after {
  top: 10%;
  left: 20%;
  right: 0;
  width: 69.2vw;
  height: 57%;
  padding: 0;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 20%;
  right: -100px;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title1{
  left: 16%;
  right: -100px;
}
.pg_header_title_en{
  font-size: 42px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
  color: var(--txt-color);
}
.pg_header_title_ja{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 10px;
  color: #FFF;
}
.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;
}

@media (max-width:767px){
  .pg_header{
    margin-bottom: -25px;
  }
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 50px;
  }
  .pg_header .mv_main_img {
    top: 10%;
    left: 24%;
    width: 57.85vw;
    height: 55.6%;
  }
  .pg_header .mv_sub_right1_img {
    top: 0;
    right: -20%;
    width: 35vw;
    height: 25vw;
  }
  .pg_header .mv_sub_left_img {
    left: 5%;
    bottom: 12%;
    width: 26vw;
    height: 20vw;
  }
  .pg_header .mv_img_box:after {
    top: 10%;
    left: 20%;
    right: 0;
    width: 61vw;
    height: 59%;
    padding: 0;
  }

  .pg_header_title{
    top: -5px;
    left: 63%;
  }
  .pg_header_title_en{
    font-size: 50px;
  }
  .pg_header_title_ja{
    font-size: 18px;
    margin-top: 10px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header .mv_main_img {
    top: 10%;
    left: 24%;
    width: 57.85vw;
    height: 55.6%;
  }
  .pg_header .mv_sub_right1_img {
    top: 0;
    right: -20%;
    width: 35vw;
    height: 25vw;
  }
  .pg_header .mv_sub_left_img {
    left: 5%;
    bottom: 5%;
    width: 26vw;
    height: 20vw;
  }
  .pg_header .mv_img_box:after {
    top: 10%;
    left: 20%;
    right: 0;
    width: 61vw;
    height: 59%;
    padding: 0;
  }

  .pg_header_title {
    top: -5px;
    left: 55%;
  }
  .pg_header_title_en{
    font-size: 60px;
  }
  .pg_header_title_ja{
    margin-top: 18px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 150px;
    margin-bottom: 55px;
  }
  .pd_header_mv_img_box{
    width: 93.22%;
    margin: 0 auto;
    height: auto;
  }
  .pg_header .mv_img_item{

  }
  .pg_header .mv_main_img{
    top: 10.8%;
    left: 19%;
    width: 57.85vw;
    height: 55.6%;
  }
  .pg_header .mv_sub_right1_img{
    top: 4.2%;
    right: -1%;
    width: 31.78vw;
    height: 41.7%;
  }
  .pg_header .mv_sub_left_img{
    left: 0;
    bottom: 19.98%;
    width: 23.44vw;
    height: 27.45%;
  }
  .pg_header .mv_img_box:after {
    top: 11%;
    left: 16%;
    right: 0;
    width: 60.65vw;
    height: 59%;
    padding: 0;
  }
  .pg_header_title{
    top: -10px;
    right: 0;
    left: 45%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .pg_header_title_en{
    font-size: 80px;
  }
}
@media (min-width: 1470px) {
  .pg_header_title {
    left: 50%;
  }
  .pg_header_title_en{
    font-size: 90px;
  }
}
@media (min-width: 1720px) {
  .pg_header .mv_sub_left_img {
    left: 0.9%;
    bottom: 19.98%;
    width: 23.44vw;
    height: 32.45%;
  }
  .pg_header_title{
    top: -10px;
    right: 0;
    left: 50%;
  }
  .pg_header_title1{
    left: 41%;
  }
  .pg_header_title2{
    left: 65%;
  }
  .pg_header_title_en {
    font-size: 120px;
  }
}


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

.footer{
  margin-top: 80px;
}

.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_logo img{
  width: 190px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 500;
  text-align: center;
  background: #e6deca;
  color: #181818;
  padding: 8px;
  /*margin-top: 40px;*/
}
.ftr_copy p{
  letter-spacing: 0;
}
.ftr_copy a:hover{
  color: #d17100;
}

/* 追尾スマホメニュー */
.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: #e6deca;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #c3c0b3;
}
.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: #d17100;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 26px 0;
  padding: 15px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1_en{
  font-size: 40px;
  font-weight: 400;
  text-shadow:none;
  font-family: "Playfair Display", serif;
  color: #181818;
  letter-spacing: 0;
  text-align: center;
}
.ftr_contact_box1 .tt2_en:first-letter{
  font-size: inherit;
}
.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{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 25px auto 0;
}
.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://loulu.co.jp/system_panel/uploads/images/mail.png);

}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/tel.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_link{
  margin-top: 26px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.ftr_contact_box2_ite_tel1 a:hover{
  color: #d17100;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 14px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 202px;
  background: #d17100;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1:hover{
  background: #000;
  color: #FFF;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  padding-top: 0;
  padding-bottom: 50px;
  margin-top: 50px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 2.25em;
  line-height: 1.875em;
  letter-spacing: 0.025em;
}
.ftr_add_txt a:hover{
  color: #d17100;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_txt.left{
  position: relative;
  padding-right: 10px;
  margin-right: 13px;
}
.ftr_add_txt.left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}

/* 協力・提携会社 */
.ftr_partner{
  display: flex;
  align-items: center;
  margin-top: 35px;
}
.ftr_partner_title{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  min-width: 138px;
}
.ftr_partner:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #676262;
}

/* バナー */
.ftr_partner_bnr_boxs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}
.ftr_partner_bnr_box{
  width: 100%;
}
.ftr_partner_bnr_box:nth-child(n+2){
  margin-top: 15px;
}
.ftr_partner_bnr_box_img{
  transition: 0.2s all;
}
.ftr_partner_bnr_box_img:hover{
  transform: scale(1.02);
}

@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_box{
    padding: 20px 0;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #bfbfbf;
    padding-top: 20px;
  }
  .ftr_contact_box2_item{
    margin-top: 20px;
  }
  .ftr_contact_box2_item:first-child{
    border-top:none;
  }

  .ftr_1_box1{
    text-align: center
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_item{
    width: 150px;
    margin-inline: auto;
  }


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

  .footer{
    margin-top: 100px;
  }


  .ftr_contact_box1_en{
    font-size: 60px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 44px 0 40px;
    padding: 55px 0 28px;
  }
  .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;
  }
  .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{

  }

  .ftr_1{
    padding-top: 30px;
  }
  .ftr_1_box{

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

  }
  .ftr_add{
    margin-top: 47px;
  }
  .ftr_add_txt{
    line-height: 2.25em;
  }
  .ftr_add_item{

  }
  .ftr_add_txt.left{

  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -30px;
  }
  .ftr_link{
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px;
    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://loulu.co.jp/system_panel/uploads/images/ar.png);*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link .ar1:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar1.png);
  }
  .ftr_link .ar2:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar2.png);
  }
  .ftr_link .ar3:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar3.png);
  }
  .ftr_link .ar4:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar4.png);
  }
  .ftr_link .ar5:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar5.png);
  }
  .ftr_link .ar6:before{
    background-image: url(https://loulu.co.jp/system_panel/uploads/images/ar6.png);
  }
  .ftr_link p:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .ftr_link:hover{
    color: #d17100;
  }

  .ftr_copy{

  }

  /* バナー */
  .ftr_partner_bnr_boxs{
    margin-inline: -10px;
    margin-top: 25px;
    justify-content: center;
  }
  .ftr_partner_bnr_box{
    width: 50%;
    padding-inline: 10px;
  }
  .ftr_partner_bnr_box:nth-child(n+2){
    margin-top: 0;
    margin-bottom: 15px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 175px;
  }

  .ftr_contact_box1{
    width: 36.23%;
  }
  .ftr_contact_box1_en{
    font-size: 70px;
    text-align: left;
  }
  .ftr_contact_box1 .content_desc{

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

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

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

  .ftr_1{
    padding-top: 50px;
    padding-bottom: 80px;
    margin-top: 63px;
  }
  .ftr_1_box{

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

  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_add{
    margin-top: 57px;
  }
  .ftr_add_txt{
    font-size: 16px;
  }
  .ftr_add_item{

  }
  .ftr_add_txt.left{
    padding-right: 14px;
    margin-right: 18px;
  }
  .ftr_1_box2{
    width: 53%;
    padding-top: 260px;
  }
  .ftr_link{
    width: 33.333%;
  }
  .ftr_link p:after{
    width: 90%;
    left: 0;
    bottom: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    display: none;
  }

  /* バナー */
  .ftr_partner_bnr_boxs{
    margin-inline: -10px;
    margin-top: 25px;
  }
  .ftr_partner_bnr_box{
    width: 33.333%;
    padding-inline: 10px;
  }
}
@media (min-width:1200px){
  .footer{
    margin-top: 180px;
  }
  .ftr_1{
    padding-top: 50px;
    padding-bottom: 100px;
    margin-top: 63px;
  }
  .ftr_1_box1{
    width: 45%;
  }
  .ftr_contact_box1_en{
    font-size: 80px;
  }
  .ftr_1_box2 {
    width: 52%;
    padding-top: 180px;
  }
  .ftr_link{
    padding-inline: 30px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 6px;
  }
  .ftr_link p:after{
    width: 100%;
  }
}
@media (min-width:1366px){
  .ftr_contact_box1_en{
    font-size: 100px;
  }
}

@media (min-width:1470px){
  .ftr_1_box1{
    width: 38.48%;
  }
  .ftr_1_box2 {
    width: 55.52%;
    padding-top: 180px;
  }

  /* バナー */
  .ftr_partner{
    margin-top: 105px;
  }
}


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


/* テーブル用 */
.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;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
}
.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 #b9ad98;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #00a785;
  color: #FFF;
}
.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: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.read_more a{
  min-width: 120px;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: var(--txt-color);
  padding: 16px 10px 16px 0px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0.075em;
}
.read_more a:before{
  content: "";
  width: 134px;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/border_bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translate(1%, 46%);
  transform: translate(0%, 40%);
  transition: 0.2s all;
}
.read_more a:after{
  content: "";
  width: 18px;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/arrow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 53%;
  right: -13%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #d17100;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.tt2_inner{
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.075em;
  top: -17px;
  position: relative;
}
.tt2_en strong{
  font-size: 35px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.075em;
  position: relative;
}
.tt2_en:before{
  content: "";
  display: block;
  background-color: #000000;
  width: 1px;
  height: 283px;
  position: absolute;
  top: 100%;
  right: 0em;
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(45deg);
}

.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  margin-top: 32px;
  text-align: left;
}

.tt2_2{
  text-align: center;
  position: relative;
  z-index: 2;
}
.tt2_en2{
  font-size: 35px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.tt2_ja2{
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  margin-top: 10px;
}


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

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

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

}

/*　テキスト　*/
.cmn_txt{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 2.18;
  color: var(--txt-color);
  text-align: justify;
}
.cmn_txt p{
  letter-spacing: 0.075em;
}

/**/
.cmn_contents_rows{
  margin-top: 40px;
}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents_row:nth-child(n+2){
  margin-top: 45px;
}
.cmn_contents_row:nth-child(odd) .cmn_contents_box1{
  order: 1;
}
.cmn_contents_row:nth-child(odd) .cmn_contents_box2{
  order: 2;
}
.cmn_contents_row:nth-child(even) .cmn_contents_box1{
  order: 1;
}
.cmn_contents_row:nth-child(even) .cmn_contents_box2{
  order: 2;
}
.cmn_contents_box1{
  width: 100%;
}
.cmn_contents_img{

}
.cmn_contents_img.feature{
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}
.cmn_contents_img:before{
  padding-top: 75%;
}
.cmn_contents_box2{
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}
.cmn_contents_row:nth-child(odd) .tt2_inner {
  margin-left: 0;
}
.cmn_contents_row:nth-child(even) .tt2_inner {
  margin-left: 0;

}

.cmn_contents_row .tt2_en:before{
  top: 135%;
  right: 5%;
}
.cmn_contents_line{
  margin-top: 45px;
  margin-bottom: 25px;
  background: #FFF;
  padding: 7px 0px 8px 10px;
}
.cmn_contents_line_title{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.66;
}
.cmn_contents_txt{
  background: #FFF;
  padding: 10px 10px;
}

/*　staff　*/
.cmn_staff_items{
  display: flex;
  justify-content: flex-start;
  margin-top: 35px;
}
.cmn_staff_slide{
  margin-top: 30px;
}
.cmn_staff_slide .webgene-blog{

}
.cmn_staff_item{
  width: 280px;
  margin-inline: 10px !important;
}
.cmn_staff_item:hover{
  color: #d17100;
}
.cmn_staff_item_box1{

}
.cmn_staff_item_img .mask_img{
  border-radius: 185px 185px 0 0;
}
.mask_img img {
  width: 100%;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
}
.cmn_staff_item_img img{
  -webkit-mask-image: url(https://loulu.co.jp/system_panel/uploads/images/20260318142048583064.png);
  aspect-ratio: 36 / 47;
  transition: 0.2s all;
}
.cmn_staff_item_img img:hover{
  transform: scale(1.02);
}
.cmn_staff_item_img:before{
  padding-top: 130.5%;
}
.cmn_staff_item_box2{
  text-align: center;
  margin-top: 14px;
}
.cmn_staff_item .category{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 14px;
}
.cmn_staff_item .cat1{
  font-size: 20px;
  font-family: var(--font-ja);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.36;
  margin-bottom: 6px;
}
.cmn_staff_item .cat2{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
}

/* スライドボタン */
.cmn_staff_slide_btns{
  display: flex;
  justify-content: center;
  margin-top: 25px;
  cursor: pointer;
}
.cmn_staff_slide_btn{
  width: 55px;
  aspect-ratio: 55 / 55;
  background: #e6deca;
  border-radius: 50%;
  height: auto;
  position: relative;
  top: 42%;
  z-index: 2;
  margin: 0 6px;
}
.cmn_staff_slide_btn:after{
  color: #282828;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  position: absolute;
  top: 48%;
  right: 18px;
  transform: translateY(-50%);
}
.cmn_staff_slide_btn.prev:after{
  content: "←";
}
.cmn_staff_slide_btn.next:after{
  content: "→";
}
.cmn_staff_slide_btn:hover{
  background: #d17100;
}
.cmn_staff_slide_btn:hover:after{
  color: #FFF;
}



@media (max-width:374px){

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

}
@media (max-width:767px){
  /* 見出し */
  .tt2{
    margin-bottom: 20px;
    text-align: left;
  }
  .tt2_inner{

  }
  .tt2_en:before{
    height: 100px;
  }

  /* スマホ用テーブル */
  .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: 3px;
    margin-left: -5px;
    margin-left: -27px;
    margin-right: -5px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-left: 0;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 120px;
    font-size: 20px;
    padding: 23px 0;
    margin: 5px 5px;
  }
  .read_more a:before{
    top: 0;
    left: 0;
    transform: translate(1%, 46%);
    transition: 0.2s all;
  }
  .read_more a:after{

  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    text-align: left;
    margin-bottom: 25px;
  }
  .tt2_en{
    font-size: 40px;
  }
  .tt2_en strong{
    font-size: 45px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 45px;
  }
  .tt2_inner{

  }
  .tt2_en:before{
    height: 140px;
  }

  .tt2_2{

  }
  .tt2_en2{
    font-size: 60px;
  }
  .tt2_ja2{
    font-size: 16px;
    margin-top: 12px;
  }

  /**/
  .cmn_contents_rows{
    margin-top: 60px;
  }
  .cmn_contents_row{

  }
  .cmn_contents_row:nth-child(n+2){
    margin-top: 60px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1.feature{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2.feature{
    order: 2;
    /*    margin-left: -100px;*/
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1.feature{
    order: 2;
    /*    margin-left: -100px;*/
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2.feature{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    order: 1;
    /*    margin-left: -100px;*/
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 1;
    /*    margin-left: -100px;*/
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }
  .cmn_contents_box1.feature{
    width: 36%;
    position: relative;
  }
  .cmn_contents_box1{
    width: 100%;
  }
  .cmn_contents_img{
    position: absolute;
    top: 0px;
    /*bottom: 0;*/
  }
  .cmn_contents_img.feature{
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .cmn_contents_img:before {
    padding-top: 65%;
  }
  .cmn_contents_box2.feature{
    width: 62%;
    margin-top: 10px;
  }
  .cmn_contents_box2{
    width: 100%;
    margin-top: 30px;
  }
  .cmn_contents_row .tt2_inner.feature{
    position: absolute;
  }
  .cmn_contents_row .tt2_inner{
    text-align: left;

  }
  .cmn_contents_row:nth-child(odd) .tt2_inner.feature{
    margin-left: 0;
    top: 0;
    right: 9%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner.feature{
    margin-left: 0;
    top: 0;
    left: 0;
  }
  .cmn_contents_row:nth-child(odd) .tt2_inner {
    margin-left: 0;
    top: 0;
    right: 0;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {
    margin-left: 0;
    top: 0;
    left: 0;
  }

  .cmn_contents_row .tt2_en:before{
    top: 135%;
    right: 5%;
  }
  .cmn_contents_box2.feature .cmn_contents_line{
    margin-top: 170px;
    margin-bottom: 25px;
    padding: 7px 0px 8px 10px;
  }
  .cmn_contents_line{
    margin-top: 80px;
    margin-bottom: 25px;
    padding: 7px 0px 8px 10px;
  }
  .cmn_contents_line_title{
    font-size: 20px;
  }
  .cmn_contents_txt{
    padding: 10px 15px;
  }

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

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  } */
  .tt2{
    text-align: center;
  }
  .tt2_ja{
    margin-top: -60px;
  }
  .tt2_inner{
    margin-left: -48em;
  }
  .tt2_en:before{

  }

  .tt2_2{

  }
  .tt2_en2{
    font-size: 70px;
  }
  .tt2_ja2{
    font-size: 16px;
    margin-top: 12px;
  }

  /**/
  .cmn_contents_rows{

  }
  .cmn_contents_row{

  }
  .cmn_contents_row:nth-child(n+2){
    margin-top: 80px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    order: 2;
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }
  .cmn_contents_box1.home{
    width: 35.94%;
  }
  .cmn_contents_box1{
    width: 45.94%;
  }
  .cmn_contents_img{
    top: 20%;
    bottom: 0;
  }
  .cmn_contents_img.feature{

  }
  .cmn_contents_img:before{
    padding-top: 91.34%;
  }
  .cmn_contents_box2{
    width: 60.23%;
    margin-top: 6px;
  }
  .cmn_contents_row .tt2_inner{
    position: absolute;
  }
  .cmn_contents_row:nth-child(odd) .tt2_inner {
    margin-left: 0;
    top: 0;
    right: 7%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {
    margin-left: 0;
    top: 0;
    left: 0;
  }
  .cmn_contents_row .tt2_en:before{
    top: 135%;
    right: 5%;
  }
  .cmn_contents_line{
    margin-top: 120px;
    margin-bottom: 30px;
    padding: 7px 0px 8px 15px;
  }
  .cmn_contents_line_title{
    font-size: 19px;
  }
  .cmn_contents_txt{
    padding: 12px 15px;
  }

  /*　staff　*/
  .cmn_staff_items{
    margin-top: 62px;
  }
  .cmn_staff_slide{
    margin-top: 60px;
  }
  .cmn_staff_item{
    width: 350px;
    margin-inline: 29px !important;
  }
  .cmn_staff_item_box1{

  }
  .cmn_staff_item_img .mask_img{
    border-radius: 185px 185px 0 0;
  }
  .cmn_staff_item_img img{

  }
  .cmn_staff_item_img:before{
    padding-top: 130.5%;
  }
  .cmn_staff_item_box2{
    margin-top: 14px;
  }
  .cmn_staff_item .cat1{
    font-size: 25px;
    margin-bottom: 6px;
  }
  .cmn_staff_item_txt_en{
    font-size: 20px;
  }

  .cmn_contents_box2.feature .cmn_contents_line{
    margin-top: 150px;
    margin-bottom: 25px;
    padding: 7px 0px 8px 10px;
  }

  /* スライドボタン */
  .cmn_staff_slide_btns{
    margin-top: 48px;
  }
  .cmn_staff_slide_btn{
    width: 65px;
    aspect-ratio: 65 / 65;
    top: 42%;
  }
  .cmn_staff_slide_btn:after{
    font-size: 20px;
    top: 48%;
    right: 22px;
  }
}
@media (min-width:1200px){
  .tt2_inner {
    margin-left: -55em;
  }
  .tt2_en:before{
    height: 180px;
  }


  /* service */
  .cmn_contents_box2 {
    width: 57.23%;
    margin-top: 21px;
  }

  /**/
  .cmn_contents_row:nth-child(odd) .tt2_inner {
    margin-left: 0;
    top: 0;
    right: 8%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {

  }
  .cmn_contents_line {
    margin-top: 130px;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{

  }
  .tt2_en{

  }

  /**/
  .cmn_contents_row:nth-child(odd) .tt2_inner {
    margin-left: 0;
    top: 0;
    right: 7%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {

  }
  .cmn_contents_line {
    margin-top: 150px;
  }

}
@media (min-width:1470px){
  .tt2_inner {
    margin-left: -72.741em;
    margin-left: -66.741em;
  }
  .tt2_en:before{
    height: 240px;
  }

  .tt2_2{

  }
  .tt2_en2{
    font-size: 80px;
  }
  .tt2_ja2{
    font-size: 16px;
    margin-top: 12px;
  }

  /**/
  .cmn_contents_rows{
    margin-top: 120px;
  }
  .cmn_contents_row{

  }
  .cmn_contents_row:nth-child(n+2){
    margin-top: 132px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    order: 2;
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }
  .cmn_contents_box1{
    width: 48.94%;
  }
  .cmn_contents_box1.home{
    width: 40.94%;
  }
  .cmn_contents_img{
    top: auto;
    bottom: 0;
  }
  .cmn_contents_img:before{
    padding-top: 91.34%;
  }
  .cmn_contents_box2{
    width: 57.23%;
    margin-top: 42px;
  }
  .cmn_contents_row:nth-child(odd) .tt2_inner {
    top: 0;
    right: 9.5%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {

  }

  .cmn_contents_row .tt2_en:before{
    top: 135%;
    right: 5%;
  }
  .cmn_contents_line{
    margin-top: 170px;
    margin-bottom: 50px;
    padding: 7px 0px 8px 23px;
  }
    .cmn_contents_box2.feature .cmn_contents_line{
    margin-top: 220px;
    margin-bottom: 25px;
    padding: 7px 0px 8px 10px;
  }
  .cmn_contents_line_title{
    font-size: 26px;
  }
  .cmn_contents_txt{
    padding: 22px 30px;
  }

  /*　staff　*/
  .cmn_staff_items{
    margin-top: 62px;
  }
  .cmn_staff_item{
    width: 396px;
    margin-inline: 29px !important;
  }
  .cmn_staff_item_box1{

  }
  .cmn_staff_item_img .mask_img{
    border-radius: 185px 185px 0 0;
  }
  .cmn_staff_item_img img{

  }
  .cmn_staff_item_img:before{
    padding-top: 130.5%;
  }
  .cmn_staff_item_box2{
    margin-top: 14px;
  }
  .cmn_staff_item .cat1{
    font-size: 25px;
    margin-bottom: 6px;
  }
  .cmn_staff_item .cat2{
    font-size: 20px;
  }

  /* スライドボタン */
  .cmn_staff_slide_btns{
    margin-top: 48px;
  }
  .cmn_staff_slide_btn{
    width: 86px;
    aspect-ratio: 86 / 86;
    top: 42%;
  }
  .cmn_staff_slide_btn:after{
    font-size: 24px;
    top: 48%;
    right: 30px;
  }
}
@media (min-width:1720px){
  .tt2{
    margin-bottom: 32px;
  }
  .tt2_ja{
    margin-top: -95px;
  }
  .tt2_inner{
    margin-left: -72.741em;
  }
  .tt2_en{
    font-size: 60px;
  }
  .tt2_en strong{
    font-size: 80px;
  }
  .tt2_en:before{
    height: 283px;
  }

  .tt2_2{

  }
  .tt2_en2{
    font-size: 80px;
  }
  .tt2_ja2{
    font-size: 16px;
    margin-top: 12px;
  }

  /**/
  .cmn_contents_row:nth-child(n+2){
    margin-top: 125px;
  }
  .cmn_contents_box1 {
    width: 48.94%;
  }
  .cmn_contents_box2 {
    width: 57.23%;
    margin-top: 42px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1 {
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    margin-left: -100px;
  }
  .cmn_contents_box1.home{
    width: 38.61%;
  }
  .cmn_contents_box2.home{
    width: 57.23%;
    margin-top: 38px;
  }

  .cmn_contents_row:nth-child(odd) .tt2_inner {
    top: -6%;
    right: 9.5%;
  }
  .cmn_contents_row:nth-child(even) .tt2_inner {
    top: -6%;
    left: 0%;
  }
  .cmn_contents_line {
    margin-top: 175px;
    margin-bottom: 60px;
    padding: 7px 0px 8px 23px;
  }
  .cmn_contents_line_title{
    font-size: 30px;
  }
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  padding-top: 0;
  padding-bottom: 70px;
}
.pg_home .section.sec4{
  background: #e6deca;
  padding-bottom: 10px;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{
  position: relative;
}
.pg_home .section.sec7{
  padding-top: 0;
  position: relative;
}


@media (max-width:375px){

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

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 50px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-bottom: 60px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 50px;
  }
}
@media (min-width:1200px){
  .pg_home{

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 110px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 110px;
    padding-bottom: 210px;
  }
  .pg_home .section.sec4{
    padding-bottom: 140px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 180px;
  }
  .pg_home .section.sec3{
    padding-top: 110px;
    padding-bottom: 275px;
  }
  .pg_home .section.sec4{
    padding-bottom: 265px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 124px;
  }
  .pg_home .section.sec7{

  }
}

/* MV背景 */
.body_home:before,
.body_service:before,
.body_news:before,
.body_company:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 39.27%;
  height: 100%;
  background: url("https://loulu.co.jp/system_panel/uploads/images/20260317151153880976.png") no-repeat left top;
  background-size: contain;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}

/* about */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
  margin-top: 70px;
  margin-left: 0;
  position: relative;
  order: 2;
}
.home_about_box1:before{
  content: "";
  display: block;
  background-color: #e6deca;
  width: 132.925%;
  padding-bottom: 77.515%;
  margin-top: -10.198%;
  position: absolute;
  top: 0;
  left: -16.894%;
}

.home_about_img{

}
.home_about_img:before{
  padding-top: 75%;
}
.home_about_box2{
  width: 100%;
  order: 1;
  position: relative;
}
.home_about_title{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.66;
  margin-bottom: 15px;
}
.home_about_txt{
  margin-right: 12px;
}

/* philosophy */
.home_philosophy{
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
.home_philosophy_inner{
  position: relative;
  top: -30px;
  z-index: 1;
}
.home_philosophy_title{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.66;
  text-align: center;
  margin-top: 25px;
  margin-left: 0;
  margin-bottom: 25px;
}
.home_philosophy_txt{
  line-height: 2.5;
}
.home_philosophy_img{
  text-align: center;
  margin-top: 30px;
}
.home_philosophy_bg{
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.home_philosophy_bg.img_fit:before{
  padding-top: 34.11%;
}
.home_philosophy_bg:after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(195,192,179,0.7) 0%,
    rgba(195,192,179,0.7) 60%,
    rgba(195,192,179,0) 100%
    );
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}


/* service */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  width: 100%;
  margin-top: 60px;
  order: 2;
  position: relative;
}

.home_service_box1_inner{

}
.home_service .tt2{
  text-align: left;
}
.home_service .tt2_inner{
  margin-left: 0;
}
.home_service .tt2_ja{
  margin-top: 35px;
  margin-bottom: 20px;
}
.home_service_box2{
  width: 100%;
  position: relative;
  order: 1;
}
/*.home_service_box2:after{
  content: "";
  display: block;
  background-color: #c7cdc4;
  width: 100%;
  padding-bottom: 103.5%;
  margin-top: 10%;
  position: absolute;
  top: 0px;
  left: 10.1%;
}*/
.home_service_img{
  width: 45%;
  margin-left: auto;
  margin-right: auto;
}

/* feature */
.home_feature{
  position: relative;
  z-index: 1;
}
.home_feature_inner{
  position: relative;
  top: -78px;
  z-index: 1;
}
.home_feature_inner .tt2_ja2{
  margin-top: 5px;
}

/* staff */
.home_staff{
  margin-top: -30px;
}
.home_staff .tt2_ja2{
  margin-top: 0px;
}
.home_staff .read_more{
  margin-top: 20px;
}

/* news */
.home_news{

}
.home_news_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_box1{
  width: 100%;
}
.home_news .tt2{
  margin-bottom: 0;
}
.home_news .tt2_inner{
  margin-left: 0;
}
.home_news .tt2_en{
  margin-left: 0;
}
.home_news .tt2_en:before{

}
.home_news .tt2_ja{
  margin-top: 50px;
  margin-left: 0;
}
.home_news_box2{
  width: 100%;
}
.home_news .read_more{
  margin-top: 5px;
}

/* Instagram */
.home_insta{

}
.home_insta .tt2_ja2{
  margin-top: 0;
}
.home_insta .read_more{
  margin-top: 10px;
  margin-left: -30px;
}
.home_insta .read_more a:hover{
  color: #d17100;
}
.home_insta .read_more a:before{
  content: "";
  width: 190px;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/border_bottom1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: -70%;
  left: 0;
  transform: translate(1%, 46%);
  transform: translate(0%, 50%);
  transition: 0.2s all;
}
.home_insta .read_more a:after{
  right: -19%;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* about */
  .home_about{

  }
  .home_about_box1{
    margin-top: 100px;
    margin-left: 0;
  }
  .home_about_box1:before{
    width: 132.925%;
    padding-bottom: 77.515%;
    margin-top: -10.198%;
    top: 0;
    left: -16.894%;
  }

  .home_about_img{

  }
  .home_about_img:before{
    padding-top: 75%;
  }
  .home_about_box2{

  }
  .home_about_title{
    font-size: 22px;
    margin-bottom: 25px;
  }
  .home_about_txt{
    margin-right: 12px;
  }

  /* philosophy */
  .home_philosophy{
    padding-bottom: 35px;
  }
  .home_philosophy_inner{
    top: -52px;
    z-index: 1;
  }
  .home_philosophy_title{
    font-size: 22px;
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .home_philosophy_txt{

  }
  .home_philosophy_img{
    margin-top: 50px;
  }
  .home_philosophy_bg{

  }
  .home_philosophy_bg.img_fit:before{
    padding-top: 34.11%;
  }

  /* service */
  .home_service{

  }
  .home_service_box1{
    width: 60%;
    margin-top: 0px;
    order: 1;
  }
  .home_service_box1_inner{
    margin-left: 0;
  }
  .home_service .tt2{
    text-align: left;
  }
  .home_service .tt2_inner{
    margin-left: 0;
  }
  .home_service .tt2_ja{
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .home_service_box2{
    width: 35%;
    order: 2;

  }
  /*  .home_service_box2:after{
      width: 100%;
      padding-bottom: 103.5%;
      margin-top: 10%;
      top: 0px;
      left: 10.1%;
    }*/
  .home_service_img {
    width: auto;
  }

  /* feature */
  .home_feature{

  }
  .home_feature_inner{
    top: -100px;
  }
  .home_feature_inner .tt2_ja2{
    margin-top: 0;
  }

  /* staff */
  .home_staff{
    margin-top: -50px;
  }

  /* news */
  .home_news{

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

  }
  .home_news .tt2{

  }
  .home_news .tt2_inner{

  }
  .home_news .tt2_en{

  }
  .home_news .tt2_en:before{

  }
  .home_news .tt2_ja{
    margin-top: 50px;
    margin-bottom: 25px;
    margin-left: 0;
  }
  .home_news_box2{

  }
  .home_news .read_more{
    margin-top: 5px;
  }

  /* Instagram */
  .home_insta .read_more a:before{
    width: 222px;
    top: -55%;
  }
}
@media (min-width:1024px){
  /* about */
  .home_about{

  }
  .home_about_box1{
    width: 40.48%;
    margin-top: 0;
    margin-left: 0;
    order: 1;
  }
  .home_about_box1:before{
    width: 132.925%;
    padding-bottom: 77.515%;
    margin-top: -10.198%;
    top: 0;
    left: -16.894%;
  }

  .home_about_img{

  }
  .home_about_img:before{
    padding-top: 85.29%;
  }
  .home_about_box2{
    width: 44.76%;
    order: 2;
  }
  .home_about_title{
    font-size: 23px;
    margin-bottom: 30px;
  }
  .home_about_txt{
    margin-right: 12px;
  }

  /* philosophy */
  .home_philosophy{
    padding-bottom: 43px;
  }
  .home_philosophy_inner{
    top: -58px;
    z-index: 1;
  }
  .home_philosophy_title{
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .home_philosophy_txt{
    padding-inline: 50px;
  }
  .home_philosophy_img{
    margin-top: 50px;
  }
  .home_philosophy_bg{

  }
  .home_philosophy_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  /* service */
  .home_service{

  }
  .home_service_box1{
    width: 52%;
  }
  .home_service_box1_inner{
    margin-left: 0;
  }
  .home_service .tt2{
    text-align: left;
  }
  .home_service .tt2_inner{
    margin-left: 0;
  }
  .home_service .tt2_ja{
    margin-top: 55px;
    margin-bottom: 25px;
  }
  .home_service_box2{
    width: 40%;
  }
  /*  .home_service_box2:after{
      width: 100%;
      padding-bottom: 100%;
      margin-top: 10%;
      top: 0px;
      left: 8%;
    }*/
  .home_service_img{
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* feature */
  .home_feature{

  }
  .home_feature_inner{
    top: -105px;
  }
  .home_feature_inner .tt2_ja2{
    margin-top: 0;
  }

  /* staff */
  .home_staff{
    margin-top: -60px;
  }

  /* news */
  .home_news{

  }
  .home_news_box1{
    width: 12.86%;
    margin-top: 10px;
    margin-left: 0;
  }
  .home_news .tt2{
    margin-bottom: 0;
  }
  .home_news .tt2_inner{
    margin-left: 0;
  }
  .home_news .tt2_en{
    margin-left: 0;
  }
  .home_news .tt2_en:before{
    top: 165%;
    right: 19%;
  }
  .home_news .tt2_ja{
    margin-top: 75px;
    margin-bottom: 0;
    margin-left: 0;
  }
  .home_news_box2{
    width: 79.93%;
  }
  .home_news .read_more{
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  /* about */
  .home_about{

  }
  .home_about_box1{
    width: 38.48%;
    margin-left: 50px;
    order: 1;
  }
  .home_about_box1:before{
    width: 132.925%;
    padding-bottom: 77.515%;
    margin-top: -10.198%;
    top: 0;
    left: -16.894%;
  }

  .home_about_img{

  }
  .home_about_img:before{
    padding-top: 85.29%;
  }
  .home_about_box2{
    width: 43.76%;
    order: 2;
  }
  .home_about_title{
    font-size: 28px;
    margin-bottom: 40px;
  }
  .home_about_txt{
    margin-right: 12px;
  }

  /* service */
  .home_service{

  }
  .home_service_box1{
    width: 51.11%;
    margin-top: 20px;
  }
  .home_service_box1_inner{
    /*margin-left: 30px;*/
  }
  .home_service .tt2{
    text-align: left;
  }
  .home_service .tt2_inner{
    margin-left: 0;
  }
  .home_service .tt2_ja{
    margin-top: 70px;
    margin-bottom: 25px;
  }
  .home_service_box2{
    width: 40%;
  }
  /*  .home_service_box2:after{
  
    }*/
  .home_service_img{

  }
  .home_service_img:before{
    padding-top: 103.52%;
  }

  /* staff */
  .home_staff{
    margin-top: -55px;
  }
  .home_staff .tt2_ja2{
    margin-top: 0px;
  }
  .home_staff .read_more{
    margin-top: 40px;
  }

  /* news */
  .home_news_box1 {
    width: 10.86%;
    margin-top: 35px;
    margin-left: -10px;
  }
  .home_news .tt2_ja {
    margin-top: 90px;
    margin-left: 5px;
  }
}
@media (min-width: 1366px) {
  .home_news_box1 {
    width: 14.86%;
    margin-top: 35px;
    margin-left: -45px;
  }

}
@media (min-width:1470px){
  /* philosophy */
  .home_philosophy{
    padding-bottom: 43px;
  }
  .home_philosophy_inner{
    top: -66px;
    z-index: 1;
  }
  .home_philosophy_title{
    font-size: 30px;
    margin-top: 64px;
    margin-left: 20px;
    margin-bottom: 46px;
  }
  .home_philosophy_txt{
    padding-inline: 205px;
  }
  .home_philosophy_img{
    margin-top: 50px;
  }
  .home_philosophy_bg{

  }
  .home_philosophy_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  /* service */
  .home_service{

  }
  .home_service_box1{
    width: 52.11%;
    margin-top: 20px;
  }
  .home_service_box1_inner{
    /*margin-left: 80px;*/
  }
  .home_service .tt2{
    text-align: left;
  }
  .home_service .tt2_inner{
    margin-left: 0;
  }
  .home_service .tt2_ja{
    margin-top: 127px;
    margin-bottom: 44px;
  }
  .home_service_box2{
    width: 41.81%;
    margin-top: 125px;
  }
  /*  .home_service_box2:after{
  
    }*/
  .home_service_img{

  }
  .home_service_img:before{
    padding-top: 103.52%;
  }

  /* feature */
  .home_feature{

  }
  .home_feature_inner{
    top: -118px;
  }
  .home_feature_inner .tt2_ja2{
    margin-top: -1px;
  }

  /* staff */
  .home_staff{
    margin-top: -70px;
  }
  .home_staff .tt2_ja2{
    margin-top: 0px;
  }
  .home_staff .read_more{
    margin-top: 40px;
  }

  /* news */
  .home_news{

  }
  .home_news_box1{
    width: 14.86%;
    margin-top: 35px;
    margin-left: -50px;
  }
  .home_news .tt2{
    margin-bottom: 0;
  }
  .home_news .tt2_inner{
    margin-left: 0;
  }
  .home_news .tt2_en{
    margin-left: 0;
  }
  .home_news .tt2_en:before{
    top: 165%;
    right: 19%;
  }
  .home_news .tt2_ja{
    margin-top: 110px;
    margin-left: 5px;
  }
  .home_news_box2{
    width: 79.93%;
    width: 79.2%;
  }
  .home_news .news_list .webgene-item:nth-child(n+2){
    margin-top: 22px;
  }
  .home_news .read_more{
    margin-top: 10px;
  }

  /* Instagram */
  .home_insta{

  }
  .home_insta .tt2_ja2{
    margin-top: 0;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  /* about */
  .home_about{

  }
  .home_about_box1{
    width: 38.48%;
    margin-left: 97px;
  }
  .home_about_box1:before{
    width: 132.925%;
    padding-bottom: 77.515%;
    margin-top: -10.198%;
    top: 0;
    left: -16.894%;
  }

  .home_about_img{

  }
  .home_about_img:before{
    padding-top: 85.29%;
  }
  .home_about_box2{
    width: 42.76%;
  }
  .home_about_title{
    font-size: 30px;
    margin-bottom: 40px;
  }
  .home_about_txt{
    margin-right: 12px;
  }

  /* philosophy */
  .home_philosophy{
    padding-bottom: 43px;
  }
  .home_philosophy_inner{
    top: -66px;
    z-index: 1;
  }
  .home_philosophy_title{
    font-size: 30px;
    margin-top: 64px;
    margin-left: 20px;
    margin-bottom: 46px;
  }
  .home_philosophy_txt{
    padding-inline: 205px;
  }
  .home_philosophy_img{
    margin-top: 50px;
  }
  .home_philosophy_bg{
    top: 0;
    bottom: 0;
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
  }
  .home_philosophy_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  /* service */
  .home_service_box1_inner{
    margin-left: 120px;
  }
  /*.home_service_box2:after{
      width: 100%;
      padding-bottom: 103.5%;
      margin-top: 10%;
      top: 0px;
      left: 10.1%;
    }*/

  /* staff */
  .home_staff{
    margin-top: -70px;
  }
  .home_staff .tt2_ja2{
    margin-top: 0px;
  }
  .home_staff .read_more{
    margin-top: 40px;
  }

  /* news */
  .home_news{

  }
  .home_news_box1{
    width: 14.86%;
    margin-top: 39px;
    margin-left: -35px;
  }
  .home_news .tt2{
    margin-bottom: 0;
  }
  .home_news .tt2_inner{
    margin-left: 0;
  }
  .home_news .tt2_en{
    margin-left: 0;
  }
  .home_news .tt2_en:before{
    top: 165%;
    right: 19%;
  }
  .home_news .tt2_ja{
    margin-top: 145px;
    margin-left: 7px;
  }
  .home_news_box2{
    width: 79.93%;
    width: 79.2%;
    margin-top: 21px;
  }
  .home_news .news_list .webgene-item .title{
    width: calc(100% - 98px - 130px - 30px);
  }
  .home_news .read_more{
    margin-top: -20px;
  }

  /* Instagram */
  .home_insta{

  }
  .home_insta .tt2_ja2{
    margin-top: 0;
  }
  .home_insta .read_more{
    margin-top: 24px;
    margin-left: -37px;
  }
  .home_insta .read_more a:before{
    width: 222px;
    top: -58%;
    left: 0;
    transform: translate(1%, 46%);
    transform: translate(0%, 50%);
  }
  .home_insta .read_more a:after{
    right: -19%;
  }

}

/*******************************
*　背景
********************************/
.home_about_box2:after{
  content: "";
  width: 49%;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/bk1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: 0;
}
.home_service_box1:after{
  content: "";
  width: 42%;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/bk2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: 72%;
  left: -10%;
}
.service_contents_items1:after {
  content: "";
  width: 28.4%;
  aspect-ratio: 249 / 335;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/bk4.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 0;
  right: -3%;
}
.service_contents_items2:after {
  content: "";
  width: 30%;
  aspect-ratio: 427 / 215;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/bk5.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: -3%;
  bottom: -10px;
}

.pg_home .section.sec6:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 49.15%;
  height: auto;
  background: url(https://loulu.co.jp/system_panel/uploads/images/20260318233357115152.png) no-repeat right top;
  aspect-ratio: 943 / 1460;
  background-size: contain;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}
.pg_home .section.sec7:before{
  content: "";
  width: 30%;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/20260318235411928396.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 2%;
  left: 10%;
}

@media (max-width:767px){

}
@media (min-width:768px){
  .home_about_box2:after{
    width: 30%;
    right: -6%;
    bottom: -3%;
  }
  .home_service_box1:after{
    width: 40%;
    top: 70%;
    left: -15%;
  }
  .service_contents_items1:after {
    width: 25.4%;
    top: -74px;
    right: -3%;
  }
  .service_contents_items2:after{
    width: 28%;
    left: -8%;
    bottom: -57px;
  }
  .pg_home .section.sec6:before{
    top: -10%;
  }
  .pg_home .section.sec7:before{
    width: 30%;
    top: 0;
    left: 10%;
  }
}
@media (min-width:1024px){
  .home_about_box2:after{
    width: 40%;
    right: -12%;
    bottom: -10%;
  }
  .home_service_box1:after{
    width: 49.5%;
    top: 70%;
    left: -12%;
  }
  .service_contents_items1:after {
    width: 16.4%;
    top: -3.5%;
    right: 0;
  }
  .service_contents_items2:after {
    width: 24.1%;
    left: -7.2%;
    bottom: -4.3%;
  }
  .pg_home .section.sec6:before{
    top: -30%;
  }
  .pg_home .section.sec7:before{
    width: 25%;
    top: 0;
    left: 15%;
  }
}
@media (min-width:1200px){
  .home_about_box2:after{
    width: 40%;
    right: -10%;
    bottom: -10%;
  }
  .home_service_box1:after{
    width: 49.5%;
    top: 65%;
    left: -12%;
  }
  .pg_home .section.sec6:before{
    top: -30%;
  }
}
@media (min-width:1366px){
  .home_about_box2:after{
    width: 40%;
    right: -9%;
    bottom: -15%;
  }
  .home_service_box1:after{
    width: 49.5%;
    top: 65%;
    left: -12%;
  }
}
@media (min-width:1470px){
  .home_about_box2:after{

  }
  .home_service_box1:after{

  }
  .service_contents_items1:after {
    width: 16.4%;
    top: -20%;
    right: 0;
  }
  .service_contents_items2:after {
    width: 24.1%;
    left: -4.2%;
    bottom: -3.3%;
  }
}
@media (min-width:1720px){
  .home_about_box2:after{
    width: 49%;
    right: -23%;
    bottom: -29%;
  }
  .home_service_box1:after{
    width: 49.2%;
    top: 61%;
    left: -12%;
  }
  .service_contents_items1:after {
    width: 16.4%;
    aspect-ratio: 249 / 335;
    top: -18.5%;
    right: -6.2%;
  }
  .service_contents_items2:after {
    width: 28.1%;
    aspect-ratio: 427 / 215;
    left: -10.2%;
    bottom: -5.3%;
  }
  .pg_home .section.sec7:before{
    width: 25%;
    top: 0;
    left: 18%;
  }
  .pg_home .section.sec7:before{
    width: 19.4%;
    top: -3px;
    left: 25%;
  }
}


/*******************************
*　事業内容
********************************/

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

}
.pg_service .section.sec1{
  padding-bottom: 80px;
}
.pg_service .section.sec2{
  background: rgba(195, 192, 179, 0.6);
}
.pg_service .section.sec3{
  padding-bottom: 80px;
}
.pg_service .section.sec4{
  background: #e6deca;
  padding-bottom: 80px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_service .section.sec2{

  }
}
@media (min-width:768px){
  .pg_service .section.sec1 {
    padding-bottom: 100px;
  }
  .pg_service .section.sec2{

  }
  .pg_service .section.sec3 {
    padding-bottom: 100px;
  }
  .pg_service .section.sec4{
    padding-bottom: 140px;
  }
}
@media (min-width:1024px){
  .pg_service .section.sec1 {
    padding-bottom: 100px;
  }
  .pg_service .section.sec2{
    padding-bottom: 90px;
  }
  .pg_service .section.sec3{
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .pg_service .section.sec4{
    padding-bottom: 180px;
  }
}
@media (min-width:1200px){

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

}
@media (min-width:1470px){
  .pg_service .section.sec1 {
    padding-bottom: 180px;
  }
  .pg_service .section.sec2{
    padding-bottom: 120px;
  }
  .pg_service .section.sec3 {
    padding-top: 150px;
    padding-bottom: 180px;
  }
  .pg_service .section.sec4{
    padding-bottom: 220px;
  }
}
@media (min-width:1720px){
  .pg_service .section.sec1 {
    padding-bottom: 230px;
  }
  .pg_service .section.sec2{
    padding-bottom: 155px;
  }
  .pg_service .section.sec3 {
    padding-top: 150px;
    padding-bottom: 235px;
  }
  .pg_service .section.sec4{
    padding-bottom: 265px;
  }
}

/* 事業内容について */
.service_care {
  position: relative;
}
.service_care_tt2{

}
.service_care .tt2_en:before {
  right: -27px;
}
.service_care .tt2_inner {
  margin-left: 0;
}
.service_care .home_about_box1{

}
.service_care .home_about_box1:before {
  width: 132.5%;
  padding-bottom: 77.515%;
  margin-top: -10.198%;
  top: 0;
  left: -16.5%;
  background: #e6deca;
}
.service_care .home_about_box2{

}
.service_care .home_about_box2:after {
  content: "";
  width: 36.9%;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/bk3.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}
.service_care tt2 {
  margin-bottom: 44px;
}



/* 在宅生活を支えるサービス */
.service_contents{

}
.service_contents_inner{
  position: relative;
  top: -75px;
  z-index: 1;
}
.service_contents .tt2_ja2{
  margin-top: -3px;
}
.service_boxs{
  margin-top: -40px;
}
.service_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_box1{
  width: 100%;
  position: relative;
}
.service_box_img{

}
.service_box_img:before{
  padding-top: 92.02%;
}
.service_box1:after {
  content: "";
  display: block;
  background: #bdbbb0;
  width: 100%;
  padding-bottom: 92%;
  margin-top: 10%;
  position: absolute;
  top: 0px;
  left: 9.8%;
}
.service_box2{
  width: 100%;
  margin-top: 50px;
}
.service_box_head{

}
.service_box_head_en{
  font-size: 40px;
  font-family: var(--font-en);
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.075em;
  line-height: 1.41;
  opacity: 0.4;
}
.service_box_head_ja{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--txt-color);
  letter-spacing: 0.075em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 20px;
}
.service_box_head_ja strong{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--txt-color);
  letter-spacing: 0.075em;
  line-height: 1;
}

.service_box_title{

}
.service_box_txt{

}

/**/
.service_contents_items{
  margin-top: 60px;
}
.service_contents_items1,
.service_contents_items2{
  position: relative;
}
.service_contents_item_head{
  position: relative;
  padding-bottom: 110px;
}
.service_contents_item_bk{
  background: url('https://loulu.co.jp/system_panel/uploads/images/bk.png') repeat;
  background-size: auto;
  padding: 20px 10px;
}
.service_contents_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_box_inner + .service_box_inner{
  margin-top: 40px;
}
.service_contents_item_title{
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.28;
  margin-bottom: 25px;
  text-align: center;
}
.service_contents_item{
  width: 100%;
}
.service_contents_items .tt2_inner{
  margin-left: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.service_contents_items .tt2_ja{

}

.service_contents_item:nth-child(n+2){
  margin-top: 25px;
}
.service_contents_item_img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.service_contents_item_img:before{
  padding-top: 70%;
}
.service_contents_item_txt{
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.36;
  text-align: center;
  margin-top: 8px;
}
.service_contents_link{

}
.service_contents_link:hover{
  color: var(--txt-color);
}
.service_contents_link:hover .service_contents_link_line{
  border-bottom: 1px solid #000;
}
.service_contents_link_inner{
  background: #FFF;
  padding: 8px;
  margin-top: 25px;
  text-align: center;
}
.service_contents_link_line{
  display: inline-block;
}
.service_contents_link_txt{
  font-size: 14px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.66;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_contents_link_txt:before{
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/pdf_icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

/* praivete */
.service_private{
  position: relative;
  z-index: 1;
  padding: 30px 0;
}
.service_private_inner{

}
.service_private_bg{
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.service_private_txt{
  line-height: 2.5;
}
.service_private_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}

/* reason*/
.service_reason .cmn_contents_rows{
  margin-top: -40px;
}
.service_reason .cmn_contents_img{
  position: relative;
  top: auto;
}


/* staff */
.service_staff{
  margin-top: -80px;
}
.service_staff .tt2_ja2{
  margin-top: 0;
}
.service_staff_txt{
  margin-top: 30px;
}
.service_staff .cmn_staff_slide{
  margin-top: 60px;
  overflow: visible;
}
.service_staff .cmn_staff_item{
  position: relative;
}
.service_staff .cmn_staff_item:after{
  content: "";
  width: 50px;
  aspect-ratio: 1 / 1;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/20260323090159116529.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.service_staff .cmn_staff_item:hover:after{

}

.swiper_button_prev,
.swiper_button_next{
  width: 86px;
  aspect-ratio: 60 / 60;
  background: #e6deca;
  border-radius: 50%;
  height: auto;
  top: 42%;
  z-index: 2;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: var(--font-mincho);
  font-size: 20px;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
}
.swiper-button-next:after{
  content: "→";
  color: #fff;
  font-size: 24px;
}
.swiper-button-prev:after{
  content: "←";
  color: #fff;
  font-size: 24px;
}

.swiper_button_prev{

}
.swiper_button_next{

}

@media (max-width:767px){
  .tt2_en_support:before{
    right: 100px;
  }
}
@media (min-width:768px){
  /* 事業内容について */
  .service_care .home_about_box2:after {
    width: 30%;
  }

  /* 在宅生活を支えるサービス */
  .service_contents_inner {
    top: -98px;
  }
  .service_box_inner + .service_box_inner {
    margin-top: 60px;
  }
  .service_box2 {
    margin-top: 80px;
  }
  .service_box_head_en {
    font-size: 48px;
  }

  /**/
  .service_contents_items {
    margin-top: 80px;
  }
  .service_contents_items .tt2_inner {
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .service_contents_items .tt2_ja {
    margin-top: -20px;
    margin-left: 40px;
  }
  .service_contents_item_inner {
    margin-inline: -10px;
  }
  .service_contents_item{
    width: 50%;
    padding-inline: 10px;
  }
  .service_contents_item_img {
    width: 80%;
  }
  .service_contents_item:nth-child(n+2) {
    margin-top: 0;
  }
  .service_contents_item:nth-child(n+3) {
    margin-top: 20px;
  }
  .service_contents_item_bk {
    padding: 20px 30px 30px;
  }
  .service_contents_link_inner{
    padding: 20px 20px;
    margin-top: 60px;
  }
  .service_contents_link_txt{
    font-size: 15px;
  }
  .service_contents_link_txt:before{
    width: 20px;
    margin-right: 10px;
  }

  /* praivete */
  .service_private{
    padding: 50px 0;
  }
  .service_private_inner{

  }
  .service_private_bg{

  }
  .service_private_txt{

  }

  /* staff */
  .service_staff{
    margin-top: -100px;
  }
  .service_staff_txt{
    text-align: center;
  }
}
@media (min-width:1024px){
  /* 事業内容について */
  .service_care {
  }
  .service_care_tt2{
    position: absolute;
    top: 10px;
    right: 40px;
  }
  .service_care .tt2_en:before {
    right: -27px;
  }
  .service_care .tt2_inner {
    margin-left: 0;
  }
  .service_care .home_about_box1{
    order: 2;
    margin-right: 40px;
  }
  .service_care .home_about_box1:before {

  }
  .service_care .home_about_box2{
    order: 1;
  }
  .service_care .home_about_box2:after {
    width: 36.9%;
    right: 0;
    bottom: -5%;
  }
  .service_care .tt2 {
    margin-bottom: 25px;
  }

  /* 在宅生活を支えるサービス */
  .service_contents{

  }
  .service_contents_inner{
    top: -100px;
  }
  .service_box_inner + .service_box_inner {
    margin-top: 100px;
  }
  .service_contents .tt2_ja2{
    margin-top: -3px;
  }
  .service_boxs{
    margin-top: -40px;
  }
  .service_box{

  }
  .service_box1{
    width: 40.89%;
  }
  .service_box_img{

  }
  .service_box_img:before{
    padding-top: 92.02%;
  }
  .service_box1:after {
    padding-bottom: 92%;
    margin-top: 10%;
    top: 0px;
    left: 9.8%;
  }
  .service_box2{
    width: 49.88%;
    margin-top: -25px;
  }
  .service_box_inner:nth-child(odd) .service_box1{
    order: 1;
  }
  .service_box_inner:nth-child(odd) .service_box2{
    order: 2;
  }
  .service_box_inner:nth-child(even) .service_box1{
    order: 2;
  }
  .service_box_inner:nth-child(even) .service_box2{
    order: 1;
  }
  .service_box_head{

  }
  .service_box_head_en{
    font-size: 52px;
  }
  .service_box_head_ja {
    font-size: 30px;
    margin-top: -15px;
    margin-bottom: 35px;
  }
  .service_box_title{

  }
  .service_box_txt{

  }

  /**/
  .service_contents_items{
    margin-top: 30px;
  }
  .service_contents_item_head{
    padding-bottom: 100px;
  }
  .service_contents_item_bk{
    padding: 30px 35px 50px;
  }
  .service_contents_item_inner{
    margin-inline: -23px;
  }
  .service_contents_item_title{
    font-size: 28px;
    margin-bottom: 35px;
  }
  .service_contents_item{
    width: 33.333%;
    padding-inline: 23px;
  }
  .service_contents_items .tt2_inner{
    top: 56px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .service_contents_items .tt2_ja{
    margin-top: -20px;
    margin-left: 40px;
  }

  .service_contents_item:nth-child(n+2){

  }
  .service_contents_item:nth-child(n+3) {
    margin-top: 0;
  }
  .service_contents_item:nth-child(n+4){
    margin-top: 30px;
  }
  .service_contents_item_img{
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .service_contents_item_img:before{
    padding-top: 82.35%;
  }
  .service_contents_item_txt{
    margin-top: 13px;
  }
  .service_contents_link_inner{
    padding: 25px 25px;
    margin-top: 40px;
  }
  /*.service_contents_link:hover .service_contents_link_txt{
    border-bottom: 1px solid #000;
  }*/
  .service_contents_link_txt{
    font-size: 18px;
  }
  .service_contents_link_txt:before{

  }

  /* praivete */
  .service_private{
    padding: 80px 0;
  }
  .service_private_txt{
    padding-inline: 40px;
  }

  .service_reason .cmn_contents_rows{
    margin-top: 0;
  }

  /* staff */
  .service_staff{
    margin-top: -110px;
  }
  .service_staff .tt2_ja2{
    margin-top: 0;
  }
  .service_staff_txt{
    text-align: center;
    margin-top: 35px;
  }
  .service_staff .cmn_staff_slide{
    margin-top: 100px;
  }
  .service_staff .cmn_staff_item{

  }
  .service_staff .cmn_staff_item:after{
    width: 69px;
    top: 5.5%;
    right: 2px;
  }
}
@media (min-width:1200px){
  /* 事業内容について */
  .service_care .home_about_box1 {
    margin-right: 60px;
  }
  .service_care_tt2 {
    top: 10px;
    right: 40px;
  }
  .service_contents_item_head {
    padding-bottom: 120px;
  }
  .service_contents_items .tt2_en:before {
    top: 130%;
    right: -10px;
  }
  .service_contents_items .tt2_ja {
    margin-top: -20px;
    margin-left: 80px;
  }
  .service_contents_item_bk {
    padding: 30px 80px 50px;
  }

  /* staff */
  .service_staff{
    margin-top: -110px;
  }

}
@media (min-width: 1366px) {
  .service_care .home_about_box2:after {
    width: 36.9%;
    right: 0;
    bottom: -12%;
  }
  .service_contents_items {
    margin-top: 50px;
  }
  .service_care_tt2 {
    top: 10px;
    right: 40px;
  }
}
@media (min-width:1470px){
  /* 事業内容について */
  .service_care {
  }
  .service_care_tt2 {
    top: 10px;
    right: 70px;
  }
  .service_care .tt2_en:before {
    right: -27px;
  }
  .service_care .tt2_inner {
    margin-left: 0;
  }
  .service_care .home_about_box1{
    order: 2;
    margin-right: 94px;
  }
  .service_care .home_about_box1:before {
    width: 132.5%;
    padding-bottom: 77.515%;
    margin-top: -10.198%;
    top: 0;
    left: -16.5%;
  }
  .service_care .home_about_box2{
    order: 1;
  }
  .service_care .home_about_box2:after {
    /*    width: 36.9%;
        right: -5%;
        bottom: -15%;*/
    width: 36.9%;
    right: -10%;
    bottom: -15%;
  }
  .service_care .tt2 {
    margin-bottom: 44px;
  }

  /* 在宅生活を支えるサービス */
  .service_contents{

  }
  .service_contents_inner{
    top: -118px;
  }
  .service_contents .tt2_ja2{
    margin-top: -3px;
  }
  .service_boxs {
    margin-top: -50px;
  }
  .service_box{

  }
  .service_box1{
    width: 42.89%;
  }
  .service_box_img{

  }
  .service_box_img:before{
    padding-top: 92.02%;
  }
  .service_box1:after {
    padding-bottom: 92%;
    margin-top: 10%;
    top: 0px;
    left: 9.8%;
  }
  .service_box2{
    width: 44.88%;
    margin-top: -34px;
  }
  .service_box_head{

  }
  .service_box_head_en{
    font-size: 72px;
  }
  .service_box_head_ja{
    font-size: 45px;
    margin-top: -23px;
    margin-bottom: 49px;
  }
  .service_box_head_ja strong{
    font-size: 35px;
  }
  .service_box_title{

  }
  .service_box_txt{

  }

  /**/
  .service_contents_items{
    margin-top: 185px;
  }
  .service_contents_item_head{
    padding-bottom: 30px;
  }
  .service_contents_item_bk{
    padding: 40px 205px 107px;
  }
  .service_contents_item_inner{
    margin-inline: -23px;
    margin-top: 50px;
  }
  .service_box_inner + .service_box_inner{
    margin-top: 100px;
  }
  .service_contents_item_title{
    font-size: 28px;
    margin-bottom: 35px;
  }
  .service_contents_item{
    width: 33.333%;
    padding-inline: 23px;
  }
  .service_contents_items .tt2_inner {
    top: -43px;
    left: 0;
  }
  .service_contents_items .tt2_en:before {
    height: 283px;
    top: 146%;
    right: -3px;
  }
  .service_contents_items .tt2_ja {
    margin-top: -17px;
    margin-left: 117px;
  }
  .service_contents_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents_item:nth-child(n+4){
    margin-top: 48px;
  }
  .service_contents_item_img{

  }
  .service_contents_item_img:before{
    padding-top: 82.35%;
  }
  .service_contents_item_txt{
    font-size: 22px;
    margin-top: 10px;
  }
  /*.service_contents_link:hover .service_contents_link_txt{
    border-bottom: 1px solid #000;
  }*/
  .service_contents_link_inner{
    padding: 25px 25px;
    margin-top: 60px;
  }
  .service_contents_link_txt{
    font-size: 25px;
  }
  .service_contents_link_txt:before{
    width: 30px;
    margin-right: 32px;
  }

  /* praivete */
  .service_private{
    padding: 80px 0;
  }
  .service_private_txt{
    padding-inline: 175px;
  }

  /* staff */
  .service_staff{
    margin-top: -120px;
  }
  .service_staff .tt2_ja2{
    margin-top: 0;
  }
  .service_staff_txt{
    text-align: center;
    margin-top: 70px;
  }
  .service_staff .cmn_staff_slide{
    margin-top: 100px;
  }
  .service_staff .cmn_staff_item{

  }
  .service_staff .cmn_staff_item:after{
    width: 69px;
    top: 5.5%;
    right: 2px;
  }
}
@media (min-width:1720px){
  /* 事業内容について */
  .service_care_tt2{
    top: -60px;
    right: 60px;
  }
  .service_care .home_about_box1{
    order: 2;
    margin-top: -60px;
    margin-right: 94px;
  }
  .service_care .home_about_box2:after {
    width: 36.9%;
    right: -10%;
    bottom: -22%;
  }

  /* 在宅生活を支えるサービス */
  .service_boxs{
    margin-top: 17px;
  }

  /**/
  .service_box_head_en{
    font-size: 90px;
  }
  .service_box_inner + .service_box_inner{
    margin-top: 205px;
  }
  .service_contents_items .tt2_en:before {
    height: 283px;
    top: 146%;
    right: -3px;
  }
  .service_box_inner:nth-child(even) .service_box1{
    margin-right: 60px;
  }
  .service_box2 {
    width: 44.88%;
  }
  .service_box_head {
    margin-right: -20px;
  }
    .service_box_head_ja{
    margin-top: -28px;
  }
  .service_contents_item_txt{
    font-size: 25px;
  }
  .service_contents_link_txt{
    font-size: 30px;
  }

  /* praivete */
  .service_private{
    padding: 115px 0 125px;
  }
  .service_private_inner{

  }
  .service_private_bg{

  }
  .service_private_txt{
    line-height: 2.5;
    padding-inline: 205px;
  }

  /* staff */
  .service_staff{
    margin-top: -120px;
  }
  .service_staff .tt2_ja2{
    margin-top: 0;
  }
  .service_staff_txt{
    text-align: center;
    margin-top: 70px;
  }
  .service_staff .cmn_staff_slide{
    margin-top: 100px;
  }
  .service_staff .cmn_staff_item{

  }
  .service_staff .cmn_staff_item:after{
    width: 69px;
    top: 5.5%;
    right: 2px;
  }
}

/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}


@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{

  }
  .pg_xxx .section.sec3{

  }


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


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


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


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


}

/*　メイン部分　*/

@media (min-width:375px){

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

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

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


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


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


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


}

/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}


@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{

  }
  .pg_xxx .section.sec3{

  }


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


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


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


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


}

/*　メイン部分　*/

@media (min-width:375px){

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

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

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


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


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


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


}

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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


}
@media (min-width:1720px){
  .pg_company{
    margin-top: -70px;
  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

}

/* メイン部分 */
.company_logo_img{
  /*    position: absolute;
      left: 55%;
      bottom: 73px;
      z-index: 3;
      width: 40%;*/

  width: 160px;
  position: relative;
  aspect-ratio: 311 / 315;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  margin-top: -105px;
  margin-bottom: 65px;
}

/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #888888;
  padding: 10px 10px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.7;
}
.company_tbl .table_rows_th{
  background: #e1ded0;
}
.company_tbl .table_rows_td{
  background: #FFF;
}
.company_tbl .table_rows_th p,
.company_tbl .table_rows_td p{
  letter-spacing: 0.075em;
}
.company_tbl .table_rows_td a:hover{
  color: #d17100;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #9e9c9c;
    ;
  }
}
@media (min-width:768px){
  .company_logo_img{
    width: 190px;
    margin-top: -195px;
    margin-bottom: 60px;
  }

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 15px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_th{
    border-right: 0;
  }
  .company_tbl .table_rows_td{
    border-left: 0;
  }

  /* マップ */
  .company_map{

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

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

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

  /* メイン部分 */
  .company_logo_img{
    width: 250px;
    margin-top: -230px;
    margin-bottom: -20px;
  }

}
@media (min-width:1200px){
  .company_logo_img {
    margin-top: -295px;
    margin-bottom: 0;
  }

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
    padding: 15px 14px 13px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding: 15px 19px 13px;
  }

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

}
@media (min-width:1366px){
  .company_logo_img {
    margin-top: -325px;
    margin-bottom: 0;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .company_logo_img {
    margin-top: -385px;
    margin-bottom: 127px;
  }
}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}

/*******************************
*　Instagram
********************************/
.insta_list{
  margin-top: 30px;
}
.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-image: url(https://loulu.co.jp/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.insta_list .webgene-item .img:before{
  padding-top: 133%;
}
@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: 50px;
  }
  .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){

}
@media (min-width:1200px){
  .insta_list{
    margin-top: 50px;
  }
  .insta_list .webgene-blog{
    margin-inline: -3.5px;
  }
  .insta_list .webgene-item{
    width: 16.666%;
    padding-inline: 3.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:1470px){
  .insta_list{
    margin-top: 75px;
  }
}

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

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

}
* + .news_list_thumb{
  margin-top: 50px;
}
.sec_head + .news_list_thumb{
  margin-top: 0;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  padding: 0 5px;
  border-right: 1px solid #737373;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  background: none;
  color: #000;
  height: 100%;
  padding: 0;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 5px 0 0 0;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  background: #CCC;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 74.68%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #FFF;
  border: 1px solid var(--bdr-color);
  color: #181818;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.news_list_thumb.col3 .webgene-item:hover .title {
  color: var(--main-color);
}
.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

/* 一覧（サムネなし） */
.pg_news .news_list_thumb .webgene-blog{
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.news_list_thumb .webgene-item.news_list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  position: relative;
  border-right: none;
  border-bottom: 1px solid #181818;
}
.news_list_thumb .webgene-item.news_list a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 16px 0 15px;
}
.news_list_thumb .webgene-item.news_list a:hover{
  color: #d17100;
}
/*.news_list_thumb .webgene-item.news_list:nth-child(odd){
  background: #f7f6f6
}
.news_list_thumb .webgene-item.news_list:nth-child(even){
  background: #fff;
}*/
.webgene-item.news_list {
  font-size: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 0.075em;
}
.webgene-item.news_list .meta .date {
  width: 100px;
  margin: 0 0;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0.075em;
}
.webgene-item.news_list .meta .category {
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  background: #606b5a;
  color: #FFF;
  margin: 5px 0;
  margin-right: 50px;
  line-height: 1;
  padding: 6px 17px;
}
.webgene-item.news_list .title {
  max-width: 100%;
  width: calc(100% - 46.61% - 40px);
  width: calc(100% - 16.61% - 20px);
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.news_list_thumb .webgene-item.news_list a:after{
  content: "→";
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  top: 45%;
  right: 48px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.news_list_thumb .webgene-item.news_list a:hover:after{
  margin-right: -5px;
}
.news_list_thumb .webgene-item.news_list:nth-child(n+2){
  margin-top: 3px;
}

@media (max-width:1023px){
  .news_list_thumb .webgene-item:nth-child(2n){
    border-right: 0;
  }
}
@media (max-width:767px){
  /* サムネなし*/
  .news_list_thumb .webgene-item.news_list{

  }
  .news_list_thumb .webgene-item.news_list a{
    padding: 15px 0;
  }
  .webgene-item.news_list .meta .date{
    width: 100px;
    font-size: 15px;
    margin-left: 0;
  }
  .webgene-item.news_list .meta .category{
    margin-right: 0px;
  }
  .webgene-item.news_list .title{
    width: 100%;
  }
  .news_list_thumb .webgene-item.news_list a:after{
    right: 10px;
  }
}
@media (min-width:768px){

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

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

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 17px 0 0 0;
  }
  .news_list_thumb .webgene-item .meta{

  }
  .news_list_thumb .webgene-item .meta .category{
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

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

  /* 一覧（サムネあり） */
  .news_list_thumb .webgene-item .inner{
    padding: 0px 9.5px;
  }

  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }

  .news_list_thumb.col3 .webgene-item:nth-child(3n){
    border-right: none;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 35px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

  /*　サムネなし */
  .webgene-item.news_list .title {
    width: calc(100% - 46.61% - 40px);
  }
  .webgene-item.news_list .meta .date{
    width: 110px;
  }
  .webgene-item.news_list .meta .category{
    margin-right: 20px;
  }
  .news_list_thumb.home .webgene-item.news_list .title{
    width: calc(100% - 34.61% - 40px);
  }

  .news_list_thumb.home2 .webgene-blog .webgene-item:nth-child(n+4){
    display: none;
  }

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

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

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -9.5px;
    margin-right: -9.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 62px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.75;
    width: calc(100% - 32.61% - 60px);
  }

  /*　サムネなし */
  .webgene-item.news_list .meta .date{
    width: 98px;
  }
  .webgene-item.news_list .meta .category {
    margin-right: 30px;
  }

  .news_list_thumb.home .webgene-item.news_list .title{
    width: calc(100% - 34.61% - 40px);
  }
}
@media (min-width:1470px){


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


}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

.fileArea + .fileArea{
  margin-top: 10px;
}
.fileCaution {
  color: #e50000;
  margin-top: 10px;
}
.col-md-8.formTd a:hober{
  color: #d17100;
}
.p1774311660574{
  margin-top: 10px;
}

@media (max-width:1023px){

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

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

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


.contact_tt {
  font-size: 21px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.2em;
}
.contact_tt.privacy{
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
  margin-top: 35px;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.pg_contact .formTh {
  padding: 15px 15px 15px 20px;
  background: #e1ded0;
  font-family: var(--font-ja);
  font-weight: 500;
}
.pg_contact .formTh label{
  letter-spacing: 0.08em;
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 11px 19px 9px;
}
.pg_contact .formTd.a-center{
  display: flex;
  align-items: center;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 56px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pg_contact .privacyLabel a{
  color: #d17100;
}
.pg_contact .privacyLabel a:hover{
  color: #7a6738;
}
.pg_contact .formBtn.formSend {
  display: block;
  min-width: 395px;
  min-width: 202px;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
  background: #d17100;
  border: 1px solid #d17100;
  color: #FFF !important;
  padding: 8px 20px 8px;
  margin: 35px 5px 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  color: #FFF !important;
  background: #000;
  border: 1px solid #000;
}
/*.pg_contact .formBtn.formSend:after{
  content: "›";
  font-family: var(--font-ja);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  color: var(--sub-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: 50%;
  top: 43%;
  right: 29px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_contact .formBtn.formSend:hover:after {
  color: #FFF;
  margin-right: -5px;
}*/
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 7px;
  letter-spacing: 0;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
.radioArea .d-inline-block{
  margin-right: 10px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .formTbl {
    margin-top: 76px;
  }
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center;
  }
}
@media (min-width:1200px) {
  .radioArea .d-inline-block .label{
    margin-left: 7px;
  }
  .radioArea .d-inline-block{
    margin-right: 26px;
  }
}

/* プライバシー */
.pg_contact .section.sec2{
  padding: 145px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 45px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #7a6738;
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}
.privacy_txt a:hover{
  color: #d17100;
}
.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

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

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

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

.privacy_box {
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
    margin-left: 5px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }
}

@media (min-width: 1024px) {

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

  .pg_contact .formBtn.formSend{
    margin: 80px auto 0;
    min-width: 202px;
  }
}
@media (min-width: 1470px) {

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

}

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

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

  .privacy_box{
    padding: 30px 10px;
  }
}


/*******************************
*　ポップアップ
********************************/
.style_popup{
  width: 90vw;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  padding: 70px 20px;
  position: relative;
}
.style_popup_box1{
  width: 100%;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.style_popup_imgs .img.img_fit:before {
  /* padding-top: 65.75%; */
  padding-top: 127.75%;
}
.style_popup_box2{
  width: 100%;
  margin-top: 25px;
}
.style_popup_category{
  display: flex;
  flex-direction: column;
}
.style_popup_title{
  font-size: 20px;
  font-family: var(--font-ja);
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0.075em;
}
.style_popup_category .cat2{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.075em;
  margin-top: 3px;
}
.style_popup_info{
  margin-top: 16px;
  margin-bottom: 20px;
}
.style_popup_info_txt{
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.075em;
}
.style_popup_info_txt + .style_popup_info_txt{
  margin-top: 0px;
}
.style_popup_txt{
  line-height: 2.1;
  margin-top: 8px;
}
.style_popup_close{
  width: 30px;
  aspect-ratio: 41 / 59;
  background-image: url(https://loulu.co.jp/system_panel/uploads/images/close.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 10px;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .style_popup_info {
    margin-top: 10px;
    margin-bottom: 10px;
  }

}
@media (min-width:768px){
  .style_popup_box1{
    width: 65%;
  }
}
@media (min-width:1024px){
  .style_popup{
    width: 800px;
    max-height: 90vh;
    padding: 50px 50px;
  }
  .style_popup_box1{
    width: 44.15%;
    margin-left: 0;
    margin-right: 0;
  }
  .style_popup_imgs .img.img_fit:before {
    padding-top: 127.75%;
  }
  .style_popup_box2{
    width: 48.77%;
    margin-top: 20px;
  }
  .style_popup_category{

  }
  .style_popup_title{
    font-size: 25px;
  }
  .style_popup_category .cat2{
    font-size: 20px;
    margin-top: 3px;
  }
  .style_popup_info{
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .style_popup_info_txt{
    font-size: 16px;
  }
  .style_popup_info_txt + .style_popup_info_txt{
    margin-top: 11px;
  }
  .style_popup_txt{
    margin-top: 8px;
  }

  .style_popup_close{
    width: 35px;
    top: 20px;
    right: 20px;
  }

}
@media (min-width:1200px){
  .style_popup {
    width: 1000px;
  }
}
@media (min-width:1470px){
  .style_popup {
    width: 1200px;
  }
  .style_popup_box2 {
    width: 48.77%;
    margin-top: 40px;
  }
  .style_popup_close {
    width: 35px;
    top: 30px;
    right: 40px;
  }
}
@media (min-width:1720px){
  .style_popup{
    width: 90vw;
    width: 1520px;
    max-height: 90vh;
    padding: 100px 100px;
  }
  .style_popup_box2 {
    width: 48.77%;
    margin-top: 48px;
  }
  .style_popup_info {
    margin-top: 60px;
    margin-bottom: 38px;
  }
  .style_popup_info_txt + .style_popup_info_txt {
    margin-top: 13px;
  }
  .style_popup_close {
    width: 41px;
    top: 42px;
    right: 60px;
  }
}
