@charset "UTF-8";

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

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

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


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 101px;
  }
  .header{
    --logo-height: 50px;
    background: #fff;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
    padding-left: 42px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_box{
    display: flex;
    align-items: center;
  }
  .hdr_contact_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    font-size: 16px;
    padding: 21px 0 17px;
  }
  .hdr_contact_item:hover{
    opacity: .5;
    color: #000;
  }
  .hdr_contact_item p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_item p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 31px;
    margin-bottom: 8px;
  }
  .hdr_contact_item.mitumori{
    font-weight: 700;
    background: #cccccc;
  }
  .hdr_contact_item.mitumori p:before{
    width: 24px;
    aspect-ratio:24 / 31;
    background-image: url(/system_panel/uploads/images/calculator.png);
  }
  .hdr_contact_item.mitumori p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_item.contact{
    font-weight: 600;
    background: #000000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .hdr_contact_item.contact p{
    letter-spacing: 0;

  }
  .hdr_contact_item.contact p:before{
    width: 31px;
    aspect-ratio:31 / 23;
    background-image: url(/system_panel/uploads/images/envelope.png);
  }


  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 50px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_box{
    margin-left: 38px;
  }

}

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

}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

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

}
.mv_txt_p2{

}
.mv_text{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.mv_text .container{
  height: 100%;
}
.mv_text_inr{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.mv_text_box1{

}
.mv_text_box1_txt{
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  background: #fff;
}
.mv_text_box2{
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}
.mv_text_box2 p{
  letter-spacing: 0;
  background: #fff;
  padding: 5px 16px;
}
.mv_text_box2 p:nth-child(n+2){
  margin-top: 10px;
}

.mv_items{
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.mv_items:before{
  content: "";
  display: block;
  width: 78.9%;
  height: 100%;
  background:#e6e6e6;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.mv_item{

}
.mv_item .mv_item_img:before{
  padding-top: 95vh;
}

.mv_schroll{
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.mv_schroll:before{
  content: "";
  display: block;
  width: 1px;
  height: 210px;
  background: #000000;
}
.mv_schroll p{
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

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

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

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

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

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

  }
  .mv_txt_p2{

  }

  .mv_items{
    padding: 80px 0;
  }
  .mv_item{
    width: 52.08%;
  }
  .mv_item .mv_item_img:before{
    padding-top: 500px;
  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 40px;
  }
  .mv_text_box2{
    font-size: 20px;
  }
  .mv_text_box2 p{

  }

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


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

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

  }
  .mv_txt_p2{

  }

  .mv_items{
    padding: 100px 0;
  }
  .mv_item{

  }
  .mv_item .mv_item_img:before{
    padding-top: 55.5vh;
  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 50px;
  }
  .mv_text_box2{
    font-size:24px;
  }
  .mv_text_box2 p{

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

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

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

  }
  .mv_txt_p2{

  }

  .mv_items{
    padding: 100px 0;
  }
  .mv_item{
    width: 52.08%;
  }
  .mv_item .mv_item_img:before{

  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 60px;
  }
  .mv_text_box2{
    font-size: 30px;
  }
  .mv_text_box2 p{

  }

  .mv_item_img:before{
    padding-top: 55.5vh;
  }
}
@media (min-width:1360px){
  .mv_schroll:before{
    height: 140px;
  }

}
@media (min-width:1470px){
  .mv_schroll:before{
    height: 140px;
  }

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

  .mv_schroll:before{
    height: 210px;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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



.pg_header_mv_inr{
  position: relative;
  padding: 30px 0;
}
.pg_header_mv_inr:after{
  content: "";
  display: block;
  width: 100vw;;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 13.48%;
  z-index: 0;
}
.pg_header_mv_img{
  width:  92.76%;
  margin-left: auto;
}
.pg_header_mv_txt{
  width: 100%;
  position: absolute;
  top: 56.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_mv_txt .mv_text_box1_txt{
  padding-right: 20px;
}
.pg_header_mv_txt .mv_text_box2 p{
  padding: 5px 0px 5px 1px;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }
  .pg_header_mv_inr{
    padding: 50px 0;
  }
  .pg_header_mv_txt .mv_text_box1_txt{
    padding-right: 40px;
  }
  .pg_header_mv_txt .mv_text_box2 p{
    padding: 2px 0px 2px 1px;
  }

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

  .pg_header_title_txt{

  }



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

  .pg_header{
    margin-bottom: 86px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 650px;
  }

  .pg_header_title_txt{

  }

  .pg_header_mv_inr{
    padding: 100px 0 100px;
  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.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: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 25%;
  border-right: 1px solid #000;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 25%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 303px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_en{
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1 {
  width: 100%;
}
.ftr_contact_box2 {
  width: 100%;
  margin-top: 30px;
}
.ftr_contact_box2_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_contact_box2_item {
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tel{
  color: #fff;
}
.ftr_contact_box2_item_tel a:hover{
  color: #808080;
}
.ftr_contact_box2_item_tel1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.ftr_contact_box2_item_tel1:before {
  content: "\f095";
  display: block;
  font-family: "FontAwesome";
  margin-right: 10px;
  font-size: 29px;
}
.ftr_contact_box2_item_tel2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-top: 10px;
}
.ftr_contact_box2_item_tel2 strong{
  font-size: 14px;
  font-weight: 500;
}
.link_1 {
  display: block;
  width: 100%;
  max-width: 380px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 15px 0;
}
.link_1:hover{
  background: #000;
  color: #fff;
}
.link_1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.link_1 p:before{
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 27 / 20;
  background-image: url(/system_panel/uploads/images/envelope.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: 7px;
  margin-right: 15px;
}

.ftr_1{
  background: #2e2e2b;
  padding-top: 50px;
}
.ftr_1_box{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.ftr_1_box1{
  width:100%;
}
.ftr_logo{

}
.ftr_add{
  color: #fff;
  margin-top: 20px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_txt1{
  position: relative;
  padding-right: 10px;
}
.ftr_add_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_add_txt2{
  padding-left: 10px;
}
.ftr_add_txt2 a:hover{
  color: #808080;
}
.ftr_1_box2{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
}
.ftr_links{
  width: 100%;
}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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


  .ftr_contact_box1{
    text-align: center;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ftr_contact_box2_item:last-child{
    padding-bottom: 0;
  }
  .ftr_contact_img:before{
    padding-top: 450px;
  }

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

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_contact_box2 {
    margin-top: 40px;
  }
  .ftr_contact_en{
    color: #fff;
    font-size: 70px;
  }
  .ftr_contact_box2_item {
    position: relative;
  }
  .ftr_contact_box2_item {
    width: 50.48%;
  }
  .ftr_contact_box2_item:first-child{
    width: 48.71%;
  }
  .ftr_contact_box2_item:before {
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .link_1 {
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }


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

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

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 51.72%;
    padding: 40px;
  }
  .ftr_links{

  }
  .ftr_link{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #000000;
    padding-bottom: 6px;
    padding-top: 16px;
  }
  .ftr_link:before{
    content: "\f054";
    font-family: 'FontAwesome';
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.2s;
    margin-right: 10px;
    padding-left: 3px;
    padding-top: 2px;
  }
  .ftr_link:hover{
    color: #808080;
  }
  .ftr_link p{
    letter-spacing: 0.025em;
  }

  .ftr_copy{
    padding: 16px 0;
    margin-top: 71px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 160px;
  }

  .ftr_contact_box1 {
    width: 100%;
  }
  .ftr_contact_box2 {
    width: 100%;
    margin-top: 50px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 100px;
  }
  .link_1 {
    font-size: 15px;
    display: block;
    width: 100%;
    max-width: 320px;
  }

  .ftr_1{

  }
  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 51.72%;
  }
  .ftr_links{

  }
  .ftr_link{

  }
}
@media (min-width:1200px){
  .ftr_contact_box1 {
    width: 32.23%;
  }
  .ftr_contact_box2{
    width: 64.14%;
    margin-top: 0;
  }

  .ftr_contact_en{
    color: #fff;
    font-size: 60px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 160px;
  }
  .ftr_contact_box2_item_tel1{
    font-size: 36px;
  }
  .link_1 {
    font-size: 18px; 
  }

  .ftr_1{

  }
  .ftr_1_box{
width: auto;
  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 60.72%;
  }
  .ftr_links{
    width: 28.46%;
  }
  .ftr_link{
    padding-top: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 18px;
  }
}
@media (min-width:1440px){
  .ftr_contact_en{
    color: #fff;
    font-size: 90px;
  }
  .link_1 {
    font-size: 15px;
    display: block;
    width: 100%;
    max-width: 380px;
  }
}

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  /*  margin-left: -5px;
    margin-right: -5px;*/
}
.read_more a{

  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: none;
  border-bottom: 2px solid #000000;
  background: none;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.025em;
}
.read_more a p:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 4px;
}
.read_more a:hover{
  color: #FFF;
  background: none;
}
.read_more a:hover p:after{
  right: -5px;;
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.bk a{
  color: #000;
}


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


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

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

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

}

.sec_sub_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.sec_sub_tt p{
  letter-spacing: 0.025em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc.msg{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.71em;
}
.content_desc.msg p{
  letter-spacing: 0.075em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .read_more{
    width: 100%; 
  }

  /* スマホ用テーブル */
  .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: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 180px;
    font-size: 16px;
    padding: 0 0 13px;
    margin: 0;
  }
  .read_more a:after{
    content: "";

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

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

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

  .sec_sub_tt{
    font-size: 30px;
  }
  .content_desc{

  }
}
@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_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){
  .sec_sub_tt{
    font-size: 40px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }

  .content_desc.msg{
    font-size: 21px;
  }

}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{
  padding-top:60px;
  padding-bottom: 0;
  position: relative;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 77.65%;;
  aspect-ratio:1491 / 1061;
  background-image: url(/system_panel/uploads/images/sec1_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.pg_home .section.sec2{

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

}
.pg_home .section.sec4{
  padding-top:50px;
}
.pg_home .section.sec5{
  background: #e5e5e5;
  position: relative;
  padding-top: 16px;
  margin-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width: 100%;
  height: 250px;
  background: #2e2e2b;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{
  padding-top:50px;
}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

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

  }
  .pg_home .section.sec3{
    padding-top: 110px;
  }
  .pg_home .section.sec4{
    padding-top: 109px;
  }
  .pg_home .section.sec5{
    margin-top: 115px;
    padding-bottom: 50px;
  }
  .pg_home .section.sec5:before{
    height: 290px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 112px;
  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec5:before{
    height: 490px;
  }

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

  }
  .pg_home .section.sec3{
    padding-top: 110px;
  }
  .pg_home .section.sec4{
    padding-top: 109px;
  }
  .pg_home .section.sec5{
    margin-top: 115px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec5:before{
    height: 490px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 112px;
  }
  .pg_home .section.sec8{

  }

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

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


}

/*メイン*/

.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.home_sec1_wrap:before{

}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec1_box1_img:before{
  padding-top: 56.25%;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.btm_bdr_txt{
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-bottom: 2px solid #000000;
  letter-spacing: 0;
  padding-bottom: 9px;
}
.home_sec1_box2 .sec_sub_tt{
  margin-top: 20px;
}
.home_sec1_box2 .content_desc{

}

/*aboutius*/
.contents_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 40px 0px;
}
.contents_box.bg:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.contents_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.contents_box1_tt{

}
.contents_box1_txt{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.contents_box1_tt_en{
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}
.bg_wh_txt{
  font-size: 22px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}
.bg_wh_txt p{
  letter-spacing: 0.025em;;
  background: #fff;
  padding: 0px 11px;
  line-height: 1.2em;
}
.bg_wh_txt p:nth-child(n+2){
  margin-top: 22px;
}
.contents_box1 .content_desc{
  margin-top: 47px;
}
.contents_box1 .read_more{

}
.contents_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 40px;;
}
.contents_box2_item_outer:nth-child(n+2){
  margin-top: 60px;
}
.contents_box2_tt{
  border-bottom: 2px solid #000;
}
.contents_box2_text{
  display: inline-block;
  background: #000000;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 2px 10px;
}
.contents_box2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.contents_box2_item_outer{

}
.contents_box2_item{
  width: 100%;
}
.contents_box2_item:nth-child(n+2){
  margin-top: 30px;
}
.contents_box2_item_inr{
  display: block;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
}
.contents_box2_item_inr:hover{
  color: #8b8a8a;
}
.contents_box2_item_inr:hover .contents_box2_item_tt{
  border-bottom: 2px solid #8b8a8a;
}
.contents_box2_item_inr:hover img{
  transform: scale(1.05);
}
.contents_box2_item_inr:hover .contents_box2_item_tt:after{
  right: -5px;
}
.contents_box2_item_img{
  overflow: hidden;
}
.contents_box2_item_img:before{
  padding-top: 40%;
}
.contents_box2_item_img img{
  transition: all .2s;
}
.contents_box2_item_box2{
  background: #fff;
  padding: 20px 16px;
}
.contents_box2_item_tt{
  border-bottom: 2px solid #000000;
  padding-bottom: 9px;
  position: relative;
}
.contents_box2_item_tt:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  aspect-ratio:1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 12px;
  transition: all .2s;
}
.contents_box2_item_h3{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.contents_box2_item_h3 strong{
  font-size: 14px;
}
.contents_box2_item_box2 .content_desc{
  margin-top: 15px;
}
.home_sec2_item_inr:hover .read_more_a:after{
  right: -5px;
}

/*自動見積もり*/
.mitumori_box{
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 40px 0;
}
.mitumori_box_inr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mitumori_box1{
  text-align: center;
  width: 100%;
}
.mitumori_box1_img{

}
.mitumori_box2{
  width: 100%;
  margin-top: 30px;;
}
.mitumori_box2_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.mitumori_box2_tt_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-right: 23px;
}
.mitumori_box2_tt_en{
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.mitumori_box2 .content_desc{

}
.mitumori_box3{
  width: 100%;

  align-content: center;
  margin-top: 30px;;
}
.read_more.bg{
  margin-top: 0;
}
.read_more.bg a{
  min-width: inherit;
  width: 100%;
  max-width: 350px;
  background: #000000;
  color: #fff;
  padding-bottom: 0;
  font-weight: 700;
  padding: 13px 21px;
}
.read_more.bg p:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: relative;
  right: -5px;
  padding-bottom: 3px;
  padding-left: 2px;
}
.read_more.bg p{
  letter-spacing: 0.025em;
}
.read_more.bg a:hover p:after{
  right: -10px;
}
.read_more a:after{
  display: none;
}

/*サービス内容*/
.home_sec2_wrap{
  position: relative;
  padding: 40px 0;
}
.home_sec2_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_sec2_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home_sec2_head_box1{
  width: 100%;
}
.home_sec2_head_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_head_box2 .content_desc{
  width: 100%;
}
.home_sec2_head_box2_btn{
  width: 100%;
}
.home_sec2_head_box2_btn .read_more{
  margin-top: 0;
}
.home_sec2_head_box2_btn .read_more a{
  color: #000;
}

.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item:nth-child(n+2){
  margin-top: 10px;;
}
.home_sec2_item_inr{
  display:block;
  position: relative;
}
.home_sec2_item_img:before{
  padding-top: 88%;
  padding-top: 450px;
}
.home_sec2_item_img{
  overflow: hidden;
}
.home_sec2_item_img img{
  transition: all .2s;
}
.home_sec2_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transition: all .2s;
}
.home_sec2_item_inr:hover .home_sec2_item_img:after{
  background: rgba(0,0,0,0.9);
}
.home_sec2_item_inr:hover .home_sec2_item_img img{
  transform: scale(1.05);
}
.home_sec2_item_content{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
  padding: 0 16px;
}
.home_sec2_item_meta{
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}
.home_sec2_item_meta_txt1{
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 20px;
}
.home_sec2_item_meta_txt2{
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.home_sec2_item_tt{
  margin-top: 20px;
}
.home_sec2_item_h3{
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0 10px;

}
.home_sec2_item_h3.bold{
  font-weight: 700;
  line-height: 1.2em;
  padding-bottom: 5px;
}

.read_more.sp{
  width: 100%;
  justify-content: center;
}
.read_more.sp a{
  color: #000;
}
.home_sec2_item_content .content_desc{

}
.home_sec2_item_content .read_more{
  margin-top: 24px;
}
.read_more_a{
  width: 120px;
  border-bottom: 1px solid #fff;
  padding:8px 0;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.read_more_a:after{
  content: "\f054";
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all .2s;
}
.read_more_a p{
  letter-spacing: 0.025em;
}

.home_sec3_wrap{

}
.lg_tt{
  position: relative;
  text-align: center;
}
.lg_tt_en{
  font-size: clamp(3.125rem, 15.63vw, 18.75rem);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(255,255,255,0.05);
}
.lg_tt_ja{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;;
  color: #fff;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.works_list{
  margin-top: -7px;
  position: relative;
  z-index: 3;
}
.works_list .webgene-blog{

}
.works_slide .simply-scroll .simply-scroll-list{
  display: flex;
  flex-wrap: nowrap;
  margin-inline:-15px;
}
.works_list .webgene-item{
  width: 250px;
  min-width:250px;
  padding-inline:15px; 
}
.works_list .webgene-item a{

}
.works_list .webgene-item a:hover{
  color: #808080;
}
.works_list .webgene-item .img:before{
  padding-top: 70%;
}
.works_list .webgene-item .box2{
  background: #fff;
  padding: 24px 10px;
}
.works_list .webgene-item .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.works_list .webgene-item .date {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  letter-spacing: 0;
  margin-right: 15px;
  margin-bottom: 10px;
}
.works_list .webgene-item .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
  margin-top: 5px;
}
.works_list .webgene-item .title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 8px;
}
.simply-scroll{
  height: auto; 
}
.simply-scroll .simply-scroll-clip{
  height: auto;
}

.home_sec3_wrap .read_more a{
  color: #000;
}

/*スライドなし*/
.works_list.noi_slide{
  margin-top: 40px;
}
.works_list.noi_slide .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.works_list.noi_slide .webgene-item{
  width: 50%;
  min-width: inherit;
}
.works_list.noi_slide .webgene-item:nth-child(n+2){
  margin-top: 30px;
}
.works_list.noi_slide .webgene-item a{
  display: block;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);
}
.works_list.noi_slide .webgene-item .box2{
  padding: 15px 8px;
}


/*ブログ*/
.blog_list{

}
.blog_list .webgene-blog{

}
.blog_list .webgene-item{

}
.blog_list .webgene-item:nth-child(n+2){
  margin-top: 23px;
}

.blog_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);;
  padding: 10px;
  position: relative;
}
.blog_list .webgene-item a:hover{
  color: #565656;
}
.blog_list .webgene-item .box1{
  width: 100%;
}
.blog_list .webgene-item .img:before{
  padding-top: 83.333%;
}
.blog_list .webgene-item .box2{
  width: 100%;
}
.blog_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_list .webgene-item .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
}
.blog_list .webgene-item .date{
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  margin-right: 16px;
}
.blog_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.22em;
  margin-top: 15px;
  padding-right: 50px;
}
.blog_list .webgene-item a:after {
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: relative;
  right: 0;
  position: absolute;
  top: 50%;
  right: 39px;
  transform: translateY(-50%);
  transition: all 0.2s;
  padding-top: 2px;
  padding-left: 3px;
}
.blog_list .webgene-item a:hover:after{
  right: 34px;
}
.pg_home .section.sec6 .read_more a{
  color: #000;
}

/*インスタ*/
.home_sec4_wrap{
  background: #e5e5e5;
  padding: 40px 10px 40px;
}
.home_sec4_wrap .lg_tt_en{
  color: #fff;
}
.home_sec4_wrap .lg_tt_en{
  font-size: clamp(3.125rem, 1.75rem + 6.88vw, 10rem)
}
.home_sec4_wrap:before{

}
.insta_list{
  margin-top: -10px;
}

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

}
.insta_list .webgene-item .img:before{
  padding-top: 132%;
}

.pg_home .section.sec7 .read_more a p:after{
  content: "\f14c";
  font-size: 16px;
}
.pg_home .section.sec7 .read_more a{
  color: #000;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .blog_list .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-5px;
  }
  .blog_list .webgene-item{
    width: 50%;
    padding-inline:5px;
  }
  .blog_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .blog_list .webgene-item:nth-child(n+3){
    margin-top: 16px;;
  }
  .blog_list .webgene-item a{
    padding: 10px 10px 50px;
  }
  .blog_list .webgene-item .box2{
    padding-top: 20px;
  }
  .blog_list .webgene-item a:after{
    bottom: 10px;
    right: 10px;
    top: auto;
    transform: none;
  }
  .blog_list .webgene-item .title{
    padding-right: 0;
  }
  .blog_list .webgene-item .category{
    margin-top: 10px;
  }

  /*works*/
  .works_list .webgene-item{padding-inline:0;}

  /*インスタ*/
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }

  .blog_list .webgene-item .date{
    width: 100%;
  }
}
@media (min-width:768px){
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    margin-top: 30px;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{

  }
  .btm_bdr_txt{
    font-size: 20px;
  }
  .home_sec1_box2 .sec_sub_tt{
    margin-top: 37px;
  }
  .home_sec1_box2 .content_desc{
    margin-top: 23px;
  }

  /*aboutius*/
  .contents_box{
    padding: 98px 0px 50px;
  }
  .contents_box1{

  }
  .contents_box1_tt{

  }
  .contents_box1_txt{
    font-size: 40px;
  }
  .contents_box1_tt_en{

  }
  .bg_wh_txt{
    font-size: 30px;
    margin-top: 30px;
  }
  .contents_box1 .content_desc{
    margin-top: 47px;
  }
  .contents_box1 .read_more{
    margin-top: 54px;
  }
  .contents_box2{
    margin-top: 50px;;
  }
  .contents_box2_item_outer:nth-child(n+2){
    margin-top: 40px;
  }
  .contents_box2_tt{

  }
  .contents_box2_text{
    font-size: 18px;
  }
  .contents_box2_items{

  }
  .contents_box2_item{

  }
  .contents_box2_item:nth-child(n+2){
    margin-top: 20px;
  }
  .contents_box2_item_inr{

  }
  .contents_box2_item_img:before{

  }
  .contents_box2_item_box2{
    padding: 20px 41px 32px;
  }
  .contents_box2_item_tt{

  }
  .contents_box2_item_h3{
    font-size: 30px;
  }
  .contents_box2_item_h3 strong{
    font-size: 20px;
  }
  .contents_box2_item_box2 .content_desc{

  }

  /*自動見積もり*/
  .mitumori_box{
    padding: 80px 0;
  }
  .mitumori_box_inr{

  }
  .mitumori_box1{

  }
  .mitumori_box1_img{

  }
  .mitumori_box2{
    margin-top: 40px;;
  }
  .mitumori_box2_tt{

  }
  .mitumori_box2_tt_ja{
    font-size: 30px;
  }
  .mitumori_box2_tt_en{
    font-size: 18px;
  }
  .mitumori_box2 .content_desc{
    margin-top: 16px;
    padding-left: 7px;
  }
  .mitumori_box3{
    margin-top: 40px;;
  }
  .read_more.bg{

  }
  .read_more.bg a{
    font-size: 18px;
  }

  /*サービス内容*/
  .home_sec2_wrap{
    padding: 80px 0;
  }
  .home_sec2_head{

  }
  .home_sec2_head_box1{

  }
  .home_sec2_head_box2{

  }
  .home_sec2_head_box2 .content_desc{
    width: 100%;
    margin-top: 30px;;
  }
  .home_sec2_head_box2_btn{
    width: auto;
    align-content: flex-end;
  }

  .home_sec2_items{
    margin-top: 44px;
  }
  .home_sec2_item{

  }
  .home_sec2_item_inr{

  }
  .home_sec2_item_img:before{
    padding-top: 440px;
  }
  .home_sec2_item_img:after{

  }
  .home_sec2_item_content{
    padding: 0 52px;
  }
  .home_sec2_item_meta{

  }
  .home_sec2_item_meta_txt1{
    font-size: 30px;
  }
  .home_sec2_item_meta_txt2{

  }
  .home_sec2_item_tt{
    margin-top: 25px;
  }
  .home_sec2_item_h3{
    font-size: 32px;
  }
  .home_sec2_item_content .content_desc{
    margin-top: 33px;
  }

  /*works*/
  .works_list{
    margin-top: -30px;
  }
  .works_list .webgene-item{
    width: 400px;
    min-width:400px;
  }
  .works_list .webgene-item .box2{
    padding: 24px 20px;
  }
  .works_list .webgene-item .date {
    margin-bottom: 0;
}
  .works_list .webgene-item .category {
    margin-top: 0;
  }
  .works_list .webgene-item .title{
    font-size: 20px;
  }

  .lg_tt_ja{
    font-size: 30px;
  }
  .home_sec3_wrap .read_more{
    margin-top: 58px;
  }

  /*スライドなし*/
  .works_list.noi_slide{
    margin-top: 40px;
  }
  .works_list.noi_slide .webgene-blog{
    margin-inline:-20px;
  }
  .works_list.noi_slide .webgene-item{
    width: 50%;
    padding-inline:20px;
    min-width: inherit;
  }
  .works_list.noi_slide .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_list.noi_slide .webgene-item:nth-child(n+3){
    margin-top: 40px;
  }


  /*ブログ*/
  .blog_list{

  }
  .blog_list .webgene-blog{

  }
  .blog_list .webgene-item{

  }
  .blog_list .webgene-item a{

  }
  .blog_list .webgene-item .box1{
    width: 24.48%;
  }
  .blog_list .webgene-item .img:before{

  }
  .blog_list .webgene-item .box2{
    width: 71.93%;
    padding-top: 31px;
  }
  .blog_list .webgene-item .meta{

  }
  .blog_list .webgene-item .category{

  }
  .blog_list .webgene-item .date{

  }
  .blog_list .webgene-item .title{
    font-size: 18px;
    margin-top: 23px;
    padding-right: 70px;
  }

  /*インスタ*/
  .home_sec4_wrap{
    padding: 29px 50px 50px;
  }
  .insta_list{
    margin-top: -16px;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{

  }
  .insta_list .webgene-item a{

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

  }
}
@media (min-width:1024px){
  /*works*/
  .works_list{
    margin-top: -30px;
  }
  .works_list .webgene-item{
    width: 530px;
    min-width: 530px;
  }


  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top: 20px;
  }



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

  }
  .home_sec1_box1{
    width: 42.01%;
    order: 1;
    padding-top: 10px;
    margin-top: 0;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 52.63%;
    order: 2;
  }
  .btm_bdr_txt{
    font-size: 24px;
  }
  .home_sec1_box2 .sec_sub_tt{
    font-size: 32px;
  }
  .home_sec1_box2 .content_desc{

  }

  /*aboutius*/
  .contents_box{

  }
  .contents_box.bg{
    padding-bottom: 0;
  }
  .contents_box.bg:before{
    height: 955px;
    margin-right: 0;
    right: 13.48%;
  }
  .contents_box1{
    width: 25.98%;
  }
  .contents_box1_tt{

  }
  .contents_box1_txt{
    font-size: 40px;
  }
  .contents_box1_tt_en{

  }
  .bg_wh_txt{
    font-size: 30px;
    margin-top: 53px;
  }
  .content_desc{

  }
  .contents_box1 .read_more{

  }
  .contents_box2{
    width: 67.1%;
    padding-top: 26px;
    margin-top: 0;
  }
  .contents_box2_item_outer:nth-child(n+2){
    margin-top: 40px;
  }
  .contents_box2_tt{

  }
  .contents_box2_text{
    font-size: 18px;
  }
  .contents_box2_items{
    margin-inline:-10px;
  }
  .contents_box2_item{
    width: 50%;
    padding-inline:10px;
  }
  .contents_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .contents_box2_item_inr{

  }
  .contents_box2_item_img:before{

  }
  .contents_box2_item_box2{

  }
  .contents_box2_item_tt{

  }
  .contents_box2_item_h3{
    font-size: 20px;
  }
  .contents_box2_item_h3 strong{
    font-size: 15px;
  }
  .contents_box2_item_box2 .content_desc{

  }

  /*自動見積もり*/
  .mitumori_box{
    padding: 80px 0;
  }
  .mitumori_box_inr{

  }
  .mitumori_box1{
    width: 18.46%;
    text-align: left;
  }
  .mitumori_box1_img{

  }
  .mitumori_box2{
    width:42.79%;
    margin-top: 0;
  }
  .mitumori_box2_tt{
    justify-content: flex-start;
  }
  .mitumori_box2_tt_ja{
    font-size: 40px;
  }
  .mitumori_box2_tt_en{

  }
  .mitumori_box2 .content_desc{

  }
  .mitumori_box3{
    width:23.42%;
    margin-top: 0;
  }
  .read_more.bg{

  }
  .read_more.bg a{

  }

  /*サービス内容*/
  .home_sec2_wrap{
    padding: 105px 0 120px;
  }
  .home_sec2_wrap:before{
    margin-left: 0;
    left: 13.48%;
  }
  .home_sec2_head{

  }
  .home_sec2_head_box1{
    width: 27.82%;
    position: relative;
  }
  .home_sec2_head_box1:after{
    content: "";
    display: block;
    width: 2px;
    height: 100px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .home_sec2_head_box2{
    width: 72.1%;
  }
  .home_sec2_head_box1 .contents_box1_tt_en{
    font-size: 24px;
    margin-top: 5px;
  }
  .home_sec2_head_box2 .content_desc{
    padding: 0px 0 0px 60px;
    margin-top: 0;
    width: 55.38%;
  }
  .home_sec2_head_box2 .content_desc p{
    margin-right: -20px;
  }
  .home_sec2_head_box2_btn{

  }

  .home_sec2_items{
    margin-inline:-5px;
  }
  .home_sec2_item{
    width: 33.333%;
    padding-inline:5px;
  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_item_inr{

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

  }
  .home_sec2_item_content{

  }
  .home_sec2_item_meta{

  }
  .home_sec2_item_meta_txt1{

  }
  .home_sec2_item_meta_txt2{

  }
  .home_sec2_item_tt{

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

  }

  /*works*/
  .works_list{
    margin-top: -50px;
  }
  .lg_tt_ja{
    font-size: 40px;
  }

  /*スライドなし*/
  .works_list.noi_slide{
    margin-top: 54px;
  }
  .works_list.noi_slide .webgene-blog{

  }
  .works_list.noi_slide .webgene-item{
    width: 33.33%;
    min-width: inherit;
  }
  .works_list.noi_slide .webgene-item:nth-child(n+3){
    margin-top: 0;
  }

  /*ブログ*/
  .contents_box1_tt.lg{

  }
  .contents_box1_tt.lg .contents_box1_txt{
    font-size: clamp(3.125rem, 2.25rem + 4.38vw, 7.5rem);
    font-weight: 600;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
  }
  .contents_box1_tt.lg .contents_box1_tt_en{
    font-size: 24px;
    margin-top: 10px;
  }
  .pg_home .section.sec6 .contents_box1 .content_desc{
    margin-top: 35px;
  }
  .blog_list{

  }
  .blog_list .webgene-blog{

  }
  .blog_list .webgene-item{

  }
  .blog_list .webgene-item a{

  }
  .blog_list .webgene-item .box1{

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

  }
  .blog_list .webgene-item .box2{

  }
  .blog_list .webgene-item .meta{

  }
  .blog_list .webgene-item .category{

  }
  .blog_list .webgene-item .date{

  }
  .blog_list .webgene-item .title{

  }
  .pg_home .section.sec6 .contents_box2{
    width: 65.78%;
    padding-top: 14px;
  }

  /*インスタ*/
  .home_sec4_wrap{
    padding: 30px 100px 83px;
  }
  .insta_list{
    margin-top: -30px;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{

  }
  .insta_list .webgene-item a{

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

  }
}
@media (min-width:1470px){
  .home_sec1_box2 .sec_sub_tt{
    font-size: 40px;
  }

  .contents_box1_txt{
    font-size: 50px;
  }

  /*aboutius*/
  .contents_box1_txt{
    font-size: 50px;
  }
  .bg_wh_txt{
    font-size: 30px;
  }
  .contents_box2_item_h3{
    font-size: 24px;
  }
  .contents_box2_item_h3 strong{
    font-size: 20px;
  }

  /*サービス内容*/

  .home_sec2_head_box2 .content_desc{
    width: 55.38%;
  }
  .home_sec2_item_img:before{
    padding-top: 440px;
  }

  /*works*/
  .works_list{
    margin-top: -80px;
  }
}
@media (min-width:1720px){
  /*aboutius*/
  .bg_wh_txt{
    font-size: 40px;
  }
  .contents_box1_txt{
    font-size: 60px;
  }
  .contents_box2_item_h3{
    font-size: 30px;
  }
}




/*******************************
*　TFシリーズ
********************************/

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

}
.pg_tfseries .section.sec1{

}
.pg_tfseries .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_tfseries .section.sec1{

  }
  .pg_tfseries .section.sec2{

  }

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


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

  }
  .pg_tfseries .section.sec1{

  }
  .pg_tfseries .section.sec2{

  }

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


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


}

/* メイン部分 */

/*カテゴリ*/
.contents_cate_items{
  display: flex;
  flex-wrap: wrap;
}
.contents_cate_item{
  width: 100%;
}
.contents_cate_item:nth-child(n+2){
  margin-top: 16px;;
}
.contents_cate_item a{
  text-align: left;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 10px;
  border-bottom: 2px solid #000000;
}
.contents_cate_item a.on{
  background: #b8b8b8;
  color: #fff;
}
.contents_cate_item a:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 12px;
  transition: all .2s;
}
.contents_cate_item a:hover:after{
  right: 5px;
}
.contents_cate_item p{
  letter-spacing: 0.025em;
}

/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.page_hdr_box1{
  width: 100%;
}
.sec_sub_tt.en{

}
.page_hdr_box1 .content_desc{

}
.page_hdr_box2{
  width: 100%;
  margin-top: 20px;;
}
.page_hdr_box2_img{

}
.page_hdr_box2_img:before{
  padding-top: 56.25%;
}

/*繰り返し*/
.tfseries_item{
  position: relative;
  padding-top: 40px;
}
.tfseries_item:nth-child(n+2){
  margin-top: 50px;
}
.tfseries_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 717px;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  pointer-events: none;
}
.tfseries_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tfseries_item_head_box1{
  width: 100%;
}
.tfseries_item_head_box1 .contents_box1_txt{
  line-height: 1.3em;
}
.tfseries_item_head_box2{
  width: 100%;
}
.content_desc.height_h{
  font-weight: 700;
}
.content_desc.height_h p{
  letter-spacing: 0.025em;
}
.tfseries_item_head_box1_t1{

}
.tfseries_item_head_box1_t1 p{
  display: inline-block;
  background: #000000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 2px 10px 3px;
}

/*feture*/
.tfseries_item_feature{
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.tfseries_item_feature_tt_outer{
  text-align: center;
}
.tfseries_item_feature_tt{
  text-align: center;
  position: relative;
}
.tfseries_item_feature_tt:before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.tfseries_item_feature_tt p{
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  background: #e6e6e6;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}
.tfseries_item_feature_tt_ja{
  font-size: 16px;
  font-weight: 700;
}
.tfseries_feature_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.tfseries_feature_item{
  width: 100%;
}
.tfseries_feature_item:nth-child(n+2){
  margin-top: 20px;;
}
.tfseries_feature_item_inr{

}
.tfseries_feature_item_img:before{
  padding-top: 54.16%;
}
.tfseries_feature_item_content{
  padding-top: 16px;
}
.tfseries_feature_item_content_tt{
  font-size: 17px;
  font-weight: 700;
}
.tfseries_feature_item_content_tt:after{
  content: "";
  display: block;
  width: 145px;
  height: 1px;
  background: #000000;
  margin-top: 14px;
}
.tfseries_feature_item .content_desc{
  line-height: 2.125em;
  margin-top: 10px;
}

/*チェックリスト*/
.tfseries_rcm{
  border: 5px solid #000000;
  position: relative;
  margin-top: 50px;
}
.tfseries_rcm_tt{
  position: absolute;
  top: -34px;
  left: 50%;
  transform:translateX(-50%);
}
.tfseries_rcm_tt_inr{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0 33px 0 12px;
}
.tfseries_rcm_tt_icon{
  min-width: 54px;
}
.tfseries_rcm_tt_txt{
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
}
.tfseries_rcm_list{
  display:flex;
  flex-wrap: wrap;
}
.tfseries_rcm_list p{
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-left: 36px;
}
.tfseries_rcm_list p:before{
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}
.tfseries_rcm_list p:nth-child(n+2){
  margin-top: 16px;
}
.tfseries_item .content_desc.msg{
  margin-top: 30px;
}

/*works*/
.tfseries_item .mitumori_box{
  margin-top: 50px;
}
.works_list.noi_slide .read_more a p{
  color: #000;
}
@media (max-width:767px){
  .tfseries_rcm_tt{
    width: 95%;
    top: -35px;
  }
  .tfseries_rcm_tt_inr{
    padding: 0 12px;
  }
  .tfseries_rcm_tt_txt{
    font-size: 17px;
  }
  .tfseries_rcm_list{
    padding: 60px 16px;
  }
}
@media (min-width:768px){
  /* メイン部分 */

  /*カテゴリ*/
  .contents_cate_items{
    margin-inline:-13px;
  }
  .contents_cate_item{
    width: 50%;
    padding-inline:13px;
  }
  .contents_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .contents_cate_item:nth-child(n+3){
    margin-top: 16px;;
  }
  .contents_cate_item a{
    font-size: 18px;
  }
  .contents_cate_item p{

  }

  /*見出し*/
  .page_hdr_wrap{
    margin-top: 80px;
  }
  .page_hdr_box1{

  }
  .sec_sub_tt.en{

  }
  .page_hdr_box1 .content_desc{
    font-weight: 700;
  }
  .content_desc p{
    letter-spacing: 0.025em;
  }
  .page_hdr_box2{
    margin-top: 40px;;
  }
  .page_hdr_box2_img{

  }
  .page_hdr_box2_img:before{

  }

  /*繰り返し*/
  .tfseries_item{
    padding-top: 76px;
  }
  .tfseries_item:nth-child(n+2){
    margin-top: 100px;
  }
  .tfseries_item_head{

  }
  .tfseries_item_head_box1{

  }
  .tfseries_item_head_box2{

  }
  .content_desc.height_h{

  }
  .tfseries_item_head_box1_t1 p{
    font-size: 18px;
  }

  /*feture*/
  .tfseries_item_feature{
    margin-top: 54px;
  }
  .tfseries_item_feature_tt_outer{

  }
  .tfseries_item_feature_tt{

  }
  .tfseries_item_feature_tt p{
    font-size: 30px;
  }
  .tfseries_item_feature_tt_ja{
    font-size: 18px;
  }
  .tfseries_feature_items{
    margin-inline:-20px;
    margin-top: 55px;
  }
  .tfseries_feature_item{
    width: 50%;
    padding-inline:20px;
  }
  .tfseries_feature_item:nth-child(n+2){
    margin-top: 0;
  }
  .tfseries_feature_item:nth-child(n+3){
    margin-top: 20px;;
  }
  .tfseries_feature_item_inr{

  }
  .tfseries_feature_item_img:before{

  }
  .tfseries_feature_item_content{

  }
  .tfseries_feature_item_content_tt{
    font-size: 19px;
  }
  .tfseries_feature_item .content_desc{

  }

  /*チェックリスト*/
  .tfseries_rcm{
    margin-top: 70px;
  }
  .tfseries_rcm_tt{

  }
  .tfseries_rcm_tt_inr{

  }
  .tfseries_rcm_tt_icon{

  }
  .tfseries_rcm_tt_txt{
    font-size: 17px;
  }
  .tfseries_rcm_list{
    padding: 57px 50px;
  }
  .tfseries_rcm_list p{
    width: 100%;
    font-size: 18px;
  }
  .tfseries_rcm_list p:nth-child(n+2){
    margin-top: 16px;
  }
  .tfseries_item .content_desc.msg{
    margin-top: 41px;
  }

  /*works*/
  .tfseries_item .mitumori_box{
    margin-top: 80px;
  }
}
@media (min-width:1024px){
  /*チェックリスト*/
  .tfseries_rcm_list{
    padding: 57px 130px;
  }

}
@media (min-width:1200px){
  /* メイン部分 */

  /*カテゴリ*/
  .contents_cate_items{

  }
  .contents_cate_item{
    width: 25%;
  }
  .contents_cate_item:nth-child(n+3){
    margin-top:0;
  }
  .contents_cate_item:nth-child(n+5){
    margin-top: 16px;;
  }
  .contents_cate_item a{
    font-size: 14px;
  }
  .contents_cate_item p{

  }

  /*見出し*/
  .page_hdr_wrap{
    margin-top: 124px;
  }
  .page_hdr_box1{
    width: 50.398%;
  }
  .sec_sub_tt.en{

  }
  .page_hdr_box1 .content_desc{
    margin-top: 29px;
  }
  .page_hdr_box2{
    width: 42.1%;
    padding-top: 27px;
    margin-top: 0;
  }
  .page_hdr_box2_img{

  }
  .page_hdr_box2_img:before{

  }

  /*繰り返し*/
  .tfseries_item:nth-child(n+2){
    margin-top: 150px;
  }
  .tfseries_item:before{
    width: 78.9%;
  }
  .tfseries_item:nth-child(odd):before{
    margin-right: 0;
    left:0; 
  }
  .tfseries_item:nth-child(even):before{
    margin-left: 0;
    right:0; 
  }
  .tfseries_item_head{

  }
  .tfseries_item_head_box1{
    width: 29.98%;
  }
  .tfseries_item_head_box2{
    width: 67.76%;
    padding-top: 12px;
  }
  .content_desc.height_h{
    font-size: 18px;
    line-height: 3.11em;
  }

  /*feture*/
  .tfseries_item_feature{

  }
  .tfseries_item_feature_tt_outer{

  }
  .tfseries_item_feature_tt{

  }

  .tfseries_item_feature_tt p{
    font-size: 42px;
  }
  .tfseries_item_feature_tt_ja{

  }
  .tfseries_feature_items{

  }
  .tfseries_feature_item{
    width: 33.333%;
  }
  .tfseries_feature_item:nth-child(n+3){
    margin-top: 0;
  }
  .tfseries_feature_item:nth-child(n+4){
    margin-top: 60px;
  }
  .tfseries_feature_item_inr{

  }
  .tfseries_feature_item_img:before{

  }
  .tfseries_feature_item_content{

  }
  .tfseries_feature_item_content_tt{

  }
  .tfseries_feature_item_content_tt{
    font-size: 18px;
  }
  .tfseries_feature_item .content_desc{

  }
  .tfseries_feature_items.col_3{

  }
  .tfseries_feature_items.col_3 .tfseries_feature_item{
    width: 25%;
  }
  .tfseries_feature_items.col_3 .tfseries_feature_item:nth-child(n+4){
    margin-top: 0;
  }
  .tfseries_feature_items.col_3 .tfseries_feature_item:nth-child(n+5){
    margin-top: 60px;
  }
  .tfseries_feature_items.col_3 .tfseries_feature_item_img:before{
    padding-top: 74.28%;
  }

  /*チェックリスト*/
  .tfseries_rcm{
    margin-top: 99px;
  }
  .tfseries_rcm_tt{

  }
  .tfseries_rcm_tt_inr{

  }
  .tfseries_rcm_tt_icon{

  }
  .tfseries_rcm_tt_txt{
    font-size: 21px;
  }
  .tfseries_rcm_list{
    justify-content: space-between;
    padding: 57px 130px 41px 140px;
  }
  .tfseries_rcm_list p{
    width: 49.111%;
    font-size: 18px;
  }
  .tfseries_rcm_list p:nth-child(n+2){
    margin-top: 0;
  }
  .tfseries_rcm_list p:nth-child(n+3){
    margin-top: 25px;
  }
  .tfseries_rcm_list p:nth-child(odd){
    margin-right: -24px;
  }
  .tfseries_rcm_list p:nth-child(even){
    width: 47%;
  }

  /*works*/
  .works_list.noi_slide .read_more{
    margin-top: 54px;
  }

  .tfseries_item .mitumori_box{
    margin-top: 100px;
  }
}
@media (min-width:1470px){
  /*カテゴリ*/
  .contents_cate_item a{
    font-size: 17px;
  }

}
@media (min-width:1720px){
  .contents_cate_item a{
    font-size: 21px;
  }

  .tfseries_feature_item_content_tt{
    font-size: 20px;
  }

}



/*******************************
*　サービス
********************************/

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

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


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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

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


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


}

/* メイン部分 */
.tfseries_item_feature_tt p.no_bg{
  background: #fff;;
}

/*カテゴリ*/
.contents_cate_items.col_4{

}
.contents_cate_items.col_4 .contents_cate_item{

}
.contents_cate_items.col_4 .contents_cate_item a{

}

/*見出し*/
.content_block:nth-child(n+2){
  margin-top: 20px;
}
.tfseries_item_head.service .sec_sub_tt{
  line-height: 1.75em;
  margin-top: 19px;
}

/*背景色違い*/
.tfseries_items.service .tfseries_item:before{
  display: none;
}
.tfseries_items.service .home_sec2_item_h3{
  line-height: 1.4em;
  font-weight: 700;
}
.home_sec2_item_tt.bg_gray .home_sec2_item_h3{
  background: #e6e6e6;
}
.home_sec2_item_tt.bg_wh .home_sec2_item_h3{
  background: #fff;
}

.tfseries_items.service .tfseries_item{
  position: relative;
}
.tfseries_items.service .tfseries_item:nth-child(even):before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.tfseries_items.service .tfseries_item:first-child{
  padding-bottom: 70px;
}
.tfseries_items.service .tfseries_item:nth-child(n+2){
  margin-top: 0;
  padding: 70px 0;
}
.tfseries_items.service .tfseries_item:last-child{
  padding-bottom: 0;
}

.tfseries_item_head.service .content_desc{
  border-top: 1px solid #313332;
  padding-top: 20px;
  line-height: 2.125em;
  padding-top: 20px;
  margin-top: 19px;
}
.tfseries_item_head_box2_img:before{
  padding-top: 67.64%;
}

.tfseries_items.service .tfseries_item:nth-child(even) .tfseries_rcm .tfseries_rcm_tt_inr{
  background: #e6e6e6;
}

.tfseries_item_head.service .tfseries_item_head_box2{
  margin-top: 20px;
}
@media (max-width:767px){
  .tfseries_items.service .tfseries_item:first-child{
    padding-top: 0;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .contents_cate_items.col_4{

  }
  .contents_cate_items.col_4 .contents_cate_item{

  }
  .contents_cate_items.col_4 .contents_cate_item a{

  }

  /*見出し*/
  .content_block:nth-child(n+2){
    margin-top: 35px;
  }

  .tfseries_item_head.service .content_desc{
    padding-top: 37px;
  }

  .tfseries_items.service .tfseries_item_feature{
    margin-top: 104px;
  }

  .tfseries_item_head.service .tfseries_item_head_box2{
    margin-top: 40px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*カテゴリ*/
  .contents_cate_items.col_4{
    margin-inline:-16.5px;
  }
  .contents_cate_items.col_4 .contents_cate_item{
    width: 33.333%;
    padding-inline:16.5px;
  }
  .contents_cate_items.col_4 .contents_cate_item:nth-child(n+4){
    margin-top: 16px;
  }
  .contents_cate_items.col_4 .contents_cate_item a{

  }

  .tfseries_items.service .tfseries_item:first-child{
    padding-bottom: 117px;
  }
  .tfseries_items.service .tfseries_item:nth-child(n+2){
    margin-top: 0;
    padding: 110px 0 102px;
  }
  .tfseries_items.service .tfseries_item:last-child{
    padding-bottom: 0;
  }
  .tfseries_item_head.service .tfseries_item_head_box1{
    width: 49.01%;
  }
  .tfseries_item_head.service .tfseries_item_head_box2{
    width: 44.73%;
    padding-top: 58px;
    margin-top: 0;
  }

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


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


}







/*******************************
*　works
********************************/

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

}
.pg_works .section.sec1{

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


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_works .section.sec1{
    padding-bottom: 30px;;
  }

  .works_list .webgene-item .category{
    margin-top: 0;
  }

  .works_cate_list{
    display: none;
  }

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

  }
  .pg_works .section.sec1{

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

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


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

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 50px;
  }

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


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


}

/* メイン部分 */

/*カテゴリ*/
.works_cate_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}

/*詳細*/
.works_detail{
  position: relative;
  padding-top: 30px;
}
.works_detail:before{
  content: "";
  display: block;
  width: 100vw;
  height: 500px;
  background: #e6e6e6;
  position:absolute;
  top: 0;
  pointer-events: none;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.works_detail .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.works_detail .date{
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  letter-spacing: 0;
  margin-right: 15px;
}
.works_detail .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
  margin-top: 5px;
  background: #fff;
}
.works_detail .title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 10px;
}

@media (max-width:767px){
  .gallery_detail{
    margin-top: 40px;
  }

  .works_detail:before{
    height: 250px;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .works_cate_list .webgene-blog{
    margin-inline:-13.5px;
  }
  .works_cate_list .webgene-item.contents_cate_item{
    padding-inline:13.5px;
  }

  /*詳細*/
  .works_detail:before{
    height: 480px;
  }
  .works_detail .category{
    margin-top: 0;
  }
  .works_detail .title{
    font-size: 20px;
  }
}
@media (min-width:1024px){
  .pg_works .webgene-pagination{
    margin-top: 100px;
  }

}
@media (min-width:1200px){
  /*カテゴリ*/
  .works_cate_list .webgene-blog{

  }
  .works_cate_list .webgene-item.contents_cate_item:nth-child(n+5){
    margin-top: 27px;
  }


  /*リスト*/
  .pg_works .works_list.noi_slide .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }

  /*詳細*/
  .works_detail{
    padding-top: 57px;
  }

  .works_detail:before{
    height: 717px;
    margin-right: 0;
    right: 0;
  }
  .works_detail .category{
    margin-top: 0;
  }
  .works_detail .title{

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


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


}




/*******************************
*　ブログ
********************************/

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

}
.pg_blog .section.sec1{

}
.pg_xxx .section.sec2{

}


/*詳細*/
.blog_detail{
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  padding: 30px 16px;
}
.blog_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_detail .meta .date{
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  margin-right: 16px;
}
.blog_detail .meta .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 1px 10px;
}
.blog_detail .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #313332;
  padding-bottom: 16px;
  margin-top: 16px;
}
.blog_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.125em;
  padding-top: 30px;
}
.blog_detail{

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

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

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

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

  }
  .pg_blog .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

  /*詳細*/
  .blog_detail{
    padding: 42px 24px;
  }
  .blog_detail .meta{

  }
  .blog_detail .meta .date{

  }
  .blog_detail .meta .category{

  }
  .blog_detail .title{
    margin-top: 30px;
    padding-bottom: 25px;
  }
  .blog_detail .post_content{
    padding-top: 40px;
  }
  .blog_detail{

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

  }
  .pg_blog .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

  /*詳細*/
  .blog_detail{
    padding: 42px 67px 70px;
  }
  .blog_detail .meta{

  }
  .blog_detail .meta .date{

  }
  .blog_detail .meta .category{

  }
  .blog_detail .title{

  }
  .blog_detail .post_content{

  }
  .blog_detail{

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


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


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


}

/* メイン部分 */
.pg_blog .blog_list .webgene-item .img:before{
  padding-top: 83.33%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_blog .blog_list .webgene-item .box1{
    width: 29.81%;
  }
  .pg_blog .blog_list .webgene-item .box2{
    width: 65.83%;
  }
  .pg_blog .blog_list .webgene-item a:after{
    right: 12px;
  }
  .pg_blog .blog_list .webgene-item a:hover:after{
    right: 5px;
  }
}
@media (min-width:1024px){


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


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


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


}





/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #9e9c9c;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl p{
  letter-spacing: 0.05em;
}
.company_tbl .table_rows_th{
  background: #f5f5f5;
  border-inline:none;
}
.company_tbl .table_rows_td{
  background: #FFF;
  border-inline:none;
}

/* マップ */
.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;
  width: 100%;
  height: 250px;
}

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

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

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{
  }
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom:1px solid #9e9c9c;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

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

  }
  .company_tbl .table_rows_td{
    border-inline:none;
  }

  /* マップ */
  .company_map{

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

  .gmap{
    margin-top: 48px;
  }
  .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){


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}


/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li 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 li 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 li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li 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 li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

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

}


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

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

}
* + .news_list_thumb{
  margin-top: 50px;
}
.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{
  width: 50%;
  padding: 0 5px;
}
.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;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

  /* 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;
  }

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

  /* 一覧（サムネあり） */
  .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 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #000000;
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 6px;
}
.posts_cat_item a{
  display: block;
  font-weight: 500;
  position: relative;
  padding-left: 33px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #b3afb0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


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

  /* リスト */
  .posts_list{

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

  }

  .pg_blog .webgene-pagination{
    margin-top: 80px;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横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;
  margin-top: 30px;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: tranparent;
}
.gallery_main .img.img_fit:before{
  padding-top: 75%;
}
.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{
  border: 5px solid #000000;
  background: #eaeaea;
  padding: 12px 12px;
}
.gallery_detail .inner{
  background: #fff;
  padding: 16px;
}
.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;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  word-break: break-all;
  letter-spacing: 0.025em;
}
.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;
    padding-right: 36px;
  }

  /* サムネ */
  .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: 100%;
    margin-top: 50px;
  }
  .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;
  }

  .gallery_detail .inner{
    padding: 32px 56px 32px 48px;
  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 12px 20px;
  background: #f5f5f5;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  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;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 24px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  font-weight: 500;
}
.pg_contact .privacyLabel a{
  color: #a69b91;
}
.pg_contact .formBtn.formSend {
  display: block;
  min-width: 180px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;

  border: none;
  border-bottom: 2px solid #000000;
  background: none;
  /* border-radius: 27px; */
  color: #000;
  padding: 19px 0;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.pg_contact .formBtn.formSend:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pg_contact .formBtn.formSend:hover:after{
  right: -5px;
}

.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
  line-height: 2.25em;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.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.78em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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

  .thanks_text{
    text-align: center;
  }
}


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

.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: 48px;
}
.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: 50px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 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: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

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


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

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

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

  .privacy_box{
    padding: 30px 10px;
  }

  .thanks_text{
    margin-top: 30px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.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;
  }
}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


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

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
