@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: "Oswald", '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: 55px;
  --panel-height: 50px;
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{
  padding: 10px 0;
}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}
.header.slim .hdr_logo{
  padding: 10px 0;
}

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

/* 標識メニュー */
.hdr_link_btns{
  display: flex;
  gap: 0 5px;
  padding-top: 0;
}
.hdr_link_btns_item{

}
.hdr_link_btns_item_a{

}
.hdr_link_btns_item_a img{
  display: block;
  height: var(--panel-height);
  transition: 0.2s all;
}
.hdr_link_btns_item_a:hover img{
  transform: scale(1.05);
}

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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



@media (min-width:375px){

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

  .header{
    left: 15px;
    right: 15px;
  }
  .hdr1 {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .hdr_logo{
    width: 100%;
  }
  .hdr_logo img{
    height: auto;
  }
  .hdr_menu{
    width: 100%;
    display: none;
  }
  .body_home .hdr_menu{
    display: flex;
  }

  .hdr_link_btns{
    width: 100%;
    width: 90%;
    margin: 0 auto;
  }
  .hdr_link_btns_item{
    width: 100%;
  }
  .hdr_link_btns_item_a img{
    height: auto;
  }

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

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

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

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

  .hdr1{
    padding: 0 0 0 15px;
    transition: 0.2s all;
  }

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

  /* 標識メニュー */
  .hdr_link_btns{
    gap: 0 15px;
    padding-top: 0;
    /*padding-top: 15px;*/
  }
  .hdr_link_btns_item{

  }
  .hdr_link_btns_item_a{

  }
  .hdr_link_btns_item_a img{
    display: block;
    height: var(--panel-height);
    transition: 0.2s all;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


  .hdr_menu{
    margin-top: 15px;
    padding-right: 40px;
    background-image: url('https://updraft2021.com/system_panel/uploads/images/hdr_pole_img1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
  }

  .body_home .hdr1{
    margin-right: 30px;
  }
  .body_home .header.slim .hdr1{
    margin-right: 0;
  }

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

  .header{
    --logo-height: 100px;
    --panel-height: 100px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .body_home .hdr1{
    margin-right: 100px;
  }
}
@media (min-width:1200px){

  .header{
    --logo-height: 139px;
    --panel-height: 150px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }
  .header.slim .hdr_link_btns_item img{
    height: calc(var(--panel-height) * 0.6);
    height: calc(var(--panel-height) * 0.55);
  }


}

@media (min-width:1470px){

  .header{
    /*--logo-height: 139px;*/
    /*--panel-height: 177px;*/
  }

  .body_home .hdr1{
    margin-right: 120px;
  }
}

@media (min-width:1720px){

  .header{
    --logo-height: 139px;
    --panel-height: 177px;
  }

  /* 標識メニュー */
  .hdr_link_btns{
    gap: 0 15px;
    /*padding-top: 35px;*/
  }

  .hdr_menu{
    margin-top: 35px;
    padding-right: 40px;
  }

  .body_home .hdr1{
    margin-right: 228px;
  }
}

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

/* MV車 */
.mv_car{
  width: 45vw;
  position: absolute;
  z-index: 2;
  bottom: 58px;
  right: 50%;
  -webkit-transform: translate(12.72%, 0);
  transform: translate(12.72%, -0);
}

/* 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_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: 500px;
  }

  /* MV車 */
  .mv_car{
    width: 32vw;
    bottom: 58px;
    -webkit-transform: translate(12.72%, 0);
    transform: translate(12.72%, -0);
  }

  /* 電柱 */
  .mv:after{
    content: "";
    width: 39px;
    background-image: url('https://updraft2021.com/system_panel/uploads/images/hdr_pole_img2b.png');
    background-size: 19px auto;
    background-repeat: repeat-y;
    background-position: center bottom;
    position: absolute;
    z-index: 2;
    right: 3px;
    top: 30px;
    bottom: 14%;
    transition: 0.2s all;
  }
  .mv:before{
    content: "";
    width: 39px;
    background-image: url('https://updraft2021.com/system_panel/uploads/images/hdr_pole_img3.png');
    background-size: 39px auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    z-index: 2;
    right: 3px;
    bottom: 14%;
    height: 100px;
    transition: 0.2s all;
  }

  .mv:before{
    width: 39px;
    background-size: 39px auto;
    right: 3px;
    bottom: 14%;
    height: 100px;
  }
  
  .header.slim + .mv:after,
  .header.slim + .mv:before{
    /*right: -50px;*/
    opacity: 0;
  }
}
@media (min-width:1024px){


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

  /* MV車 */
  .mv_car{
    width: 25vw;
    bottom: 58px;
  }

  /* 電柱 */
  .mv:after{
    width: 39px;
    background-size: 19px auto;
    right: 72px;
    top: 30px;
    bottom: 14%;
  }
  .mv:before{
    width: 39px;
    background-size: 39px auto;
    right: 72px;
    bottom: 14%;
    height: 100px;
  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

  /* MV車 */
  .mv_car{
    width: 28vw;
    bottom: 58px;
  }
}
@media (min-width:1470px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

  /* MV車 */
  .mv_car{
    width: auto;
    bottom: 58px;
    -webkit-transform: translate(12.72%, 0);
    transform: translate(12.72%, -0);
  }

  /* 電柱 */
  .mv:after{
    width: 39px;
    background-size: 19px auto;
    right: 92px;
    top: 40px;
    bottom: 14%;
  }
  .mv:before{
    width: 39px;
    background-size: 39px auto;
    right: 92px;
    bottom: 14%;
    height: 100px;
  }
}
@media (min-width:1720px){
  /* 電柱 */
  .mv:after{
    width: 39px;
    background-size: 19px auto;
    right: 200px;
    top: 67px;
    /*bottom: 160px;*/
  }
  .mv:before{
    width: 39px;
    background-size: 39px auto;
    right: 200px;
    /*bottom: 140px;*/
    height: 100px;
  }
}


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

/* サイドバー */
.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;
  }

}



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


:root{
  --tt-en-color: #ea0013;
  --tt-en-text-shadow: 2px  2px 1px #000000,
    -2px  2px 1px #000000,
    2px -2px 1px #000000,
    -2px -2px 1px #000000,
    2px  0px 1px #000000,
    0px  2px 1px #000000,
    -2px  0px 1px #000000,
    0px -2px 1px #000000;
  --tt-en-text-shadow-wh: 2px  2px 1px #FFF,
    -2px  2px 1px #FFF,
    2px -2px 1px #FFF,
    -2px -2px 1px #FFF,
    2px  0px 1px #FFF,
    0px  2px 1px #FFF,
    -2px  0px 1px #FFF,
    0px -2px 1px #FFF;
}




/* テーブル用 */
.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 #888888;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #e0e0e0;
  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;
}


/* 共通見出し */
.tt_en{
  font-size: 45px;
  font-family: var(--font-en);
  font-weight: 500;
  /*letter-spacing: -0.025em;*/
  letter-spacing: 0;
  line-height: 1;
  color: var(--tt-en-color);
  text-shadow: var(--tt-en-text-shadow);
}
.tt_en.wh{
  text-shadow: var(--tt-en-text-shadow-wh);
}
.tt_en.ltr25{
  letter-spacing: -0.025em;
}
.tt_ja{
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
}

/* 共通見出し */
.tt_en{
  font-size: 45px;
}
.tt_ja{
  font-size: 18px;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{

}
.tt2_ja{
  margin-top: 12px;
}


/* 共通テキスト */
.cmn_txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
}



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

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

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

}


@media (max-width:374px){

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

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

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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }
  .tt2_en{
    text-shadow: 
  1px 1px 1px #000000,
  -1px 1px 1px #000000,
  1px -1px 1px #000000,
  -1px -1px 1px #000000,
  1px 0px 1px #000000,
  0px 1px 1px #000000,
  -1px 0px 1px #000000,
  0px -1px 1px #000000;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

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



  /* 共通見出し */
  .tt_en{
    font-size: 70px;
  }
  .tt_ja{
    font-size: 18px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }

  /* 共通テキスト */
  .cmn_txt{
    font-size: 16px;
  }

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

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

  /* 見出し */


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

  /* 共通テキスト */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }

}

@media (min-width:1470px){

  /* 共通見出し */
  .tt_en{
    font-size: 100px;
  }
  .tt_ja{
    font-size: 18px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }

}

.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: 95px;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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


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


}


/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
  /*padding-top: 28px;*/
}
.home_about_box2{
  width: 100%;
  margin-top: 30px;
}
.home_about_title{
  font-size: 23px;
  font-weight: 900;
  line-height: 1.67;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.home_about_txt{

}
.home_about_imgs{
  width: 100%;
  aspect-ratio: 680 / 705;
  position: relative;
  z-index: 1;
}
.home_about_imgs_item.pos1{
  width: 55.88%;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}
.home_about_imgs_item.pos1.img_fit:before{
  padding-top: 117.632%;
}
.home_about_imgs_item.pos2{
  width: 58.08%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.home_about_imgs_item.pos2.img_fit:before{
  padding-top: 143.038%;
}

/* 私たちの強み（イラスト） */
.cmn_strength_illust{
  height: 300px;
  margin-top: -100px;
  background-image: url(https://updraft2021.com/system_panel/uploads/images/home_strengths_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  position: relative;
  z-index: 1;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.cmn_strength_illust_drone,
.cmn_strength_illust_car1,
.cmn_strength_illust_car2{
  position: absolute;
  z-index: 2;
  will-change: transform, left;
  transform: translateZ(0);
}
.cmn_strength_illust_drone img,
.cmn_strength_illust_car1 img,
.cmn_strength_illust_car2 img{
  width: 100%;
}

.cmn_strength_illust_drone{
  width: 28px;
  left: 43.4%;
  bottom: 135px;
}
.cmn_strength_illust_car1,
.cmn_strength_illust_car2{
  width: 75px;
  bottom: 5px;
}
.cmn_strength_illust_car1{
  left: 33%;
}
.cmn_strength_illust_car2{
  left: 73%;
}

.pg_header .cmn_strength_illust_drone img,
.pg_header .cmn_strength_illust_car1 img,
.pg_header .cmn_strength_illust_car2 img{
  width: 100%;
  height: auto;
  position: static;
  object-fit: contain;
}

/* 事業内容 */
.home_service{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.home_service_item{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.home_service_item:nth-child(n+2){
  margin-top: 10px;
}
.home_service_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f6f6f6;
  padding: 25px 25px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.home_service_item_inner:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 10px;
  border: 1px solid #000;
  pointer-events: none;
  transition: 0.2s all;
}

.home_service_item_inner:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  background: #000;
  color: #FFF;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 25px;
  transition: 0.2s all;
}

.home_service_item_inner:hover{
  color: #FFF;
  background: #1a1a1a;
}
.home_service_item_inner:hover:before{
  border-color: #FFF;
}
.home_service_item_inner:hover:after{
  margin-right: -5px;
  background: #FFF;
  color: #000;
}

.home_service_item_box1{
  width: 38.23%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.home_service_item_box2{
  width: 100%;
  min-height: 240px;
  padding-bottom: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 2;

}
.home_service_item_title1{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 15px 7px;
  margin-bottom: 10px;
  background: #ea0013;
  color: #FFF;
}
.home_service_item_title2{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  /*margin-left: 15px;*/
}
.home_service_item_txt{
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;
  /*margin-left: 15px;*/
}
.home_service_item_img{
  /*margin-top: -45px;*/
  /*margin-left: -40px;*/
}
.home_service_item_img.img_fit:before{
  padding-top: 81.667%;
}

/* 採用情報 */
.home_recruit{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_box1{
  width: 100%;
}
.home_recruit_box2{
  width: 100%;
  margin-top: 20px;
}
.home_recruit_title{
  font-size: 26px;
  font-weight: 900;
  line-height: 1.47;
  /*margin-right: -20px;*/
  margin-bottom: 10px;
}
.home_recruit_txt{

}
.home_recruit_img{

}
.home_recruit_img.img_fit:before{
  padding-top: 61.935%;
}

@media (max-width:374px){

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

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

  .pg_header .cmn_strength_illust_drone{
    left: 10%;
  }
  
}
@media (min-width:768px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 50.98%;*/
    /*padding-top: 28px;*/
  }
  .home_about_box2{
    /*width: 44.73%;*/
    margin-top: 40px;
  }
  .home_about_title{
    font-size: 36px;
    margin-bottom: 15px;
    /*margin-right: -50px;*/
  }
  .home_about_txt{

  }

  /* 私たちの強み（イラスト） */
  .cmn_strength_illust{
    height: 400px;
    margin-top: -150px;
  }
  .cmn_strength_illust_drone,
  .cmn_strength_illust_car1,
  .cmn_strength_illust_car2{
  }
  .cmn_strength_illust_drone img,
  .cmn_strength_illust_car1 img,
  .cmn_strength_illust_car2 img{
  }

  .cmn_strength_illust_drone{
    width: 40px;
    left: 43.4%;
    bottom: 200px;
  }
  .cmn_strength_illust_car1,
  .cmn_strength_illust_car2{
    width: 80px;
    bottom: 10px;
  }
  .cmn_strength_illust_car1{
    left: 33%;
  }
  .cmn_strength_illust_car2{
    left: 73%;
  }

  .pg_header .cmn_strength_illust_drone{
    left: 34.4%;
    bottom: 180px;
  }
  .pg_header .cmn_strength_illust_car1{
    width: 100px;
    /*bottom: 45px;*/
    bottom: 30px;
  }
  .pg_header .cmn_strength_illust_car2{
    width: 100px;
    /*bottom: 45px;*/
    bottom: 30px;
  }

  .pg_header .cmn_strength_illust_car1.large{
    width: 200px;
    /*bottom: 25px;*/
  }
  .pg_header .cmn_strength_illust_car2.large{
    /*width: 145px;*/
    /*bottom: 25px;*/
  }


  /* 事業内容 */
  .home_service{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_service_item{
    width: 100%;
    padding-left: 30px;
    padding-right: 15px;
  }
  .home_service_item:nth-child(n+2){
    margin-top: 40px;
  }
  .home_service_item_inner{
    padding: 30px 25px;
  }

  .home_service_item_inner:before{
    inset: 10px;
  }

  .home_service_item_inner:after{
    width: 42px;
    font-size: 16px;
    bottom: 20px;
    right: 25px;
  }

  .home_service_item_box1{
    width: 38.23%;
  }
  .home_service_item_box2{
    width: 59.55%;
    min-height: 200px;
    margin-top: 0;
    padding-bottom: 30px;
  }
  .home_service_item_title1{
    font-size: 18px;
    padding: 5px 15px 7px;
    margin-bottom: 20px;
  }
  .home_service_item_title2{
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 15px;
  }
  .home_service_item_txt{
    font-size: 16px;
    line-height: 1.75;
    margin-left: 15px;
  }
  .home_service_item_img{
    margin-top: -45px;
    margin-left: -40px;
  }

  /* 採用情報 */
  .home_recruit{
    /*justify-content: space-between;*/
  }
  .home_recruit_box1{
    /*width: 58.93%;*/
  }
  .home_recruit_box2{
    /*width: 36.12%;*/
    /*margin-top: -10px;*/
  }
  .home_recruit_title{
    font-size: 34px;
    /*margin-right: -20px;*/
    margin-bottom: 20px;
  }

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


  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 50.98%;
    padding-top: 28px;
  }
  .home_about_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .home_about_title{
    font-size: 32px;
    margin-bottom: 30px;
    margin-right: -50px;
  }
  .home_about_txt{

  }

  /* 事業内容 */
  .home_service_item_box1{
    width: 28%;
  }
  .home_service_item_box2{
    width: 68%;
    min-height: 200px;
  }

  /* 採用情報 */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 58.93%;
  }
  .home_recruit_box2{
    width: 36.12%;
    margin-top: -10px;
  }
  .home_recruit_title{
    font-size: 29px;
    margin-right: -20px;
    margin-bottom: 20px;
  }
  
  .pg_header .cmn_strength_illust_car1{
    bottom: 35px;
  }
}
@media (min-width:1200px){

  /* ABOUT */
  .home_about_title{
    font-size: 38px;
  }

  /* 私たちの強み（イラスト） */
  .cmn_strength_illust{
    height: 500px;
    margin-top: -250px;
  }

  /* 事業内容 */
  .home_service{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_service_item{
    width: 50%;
    padding-left: 30px;
    padding-right: 15px;
  }
  .home_service_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_service_item:nth-child(n+3){
    margin-top: 40px;
  }
  .home_service_item_inner{
    padding: 30px 25px;
    height: 100%;
  }

  .home_service_item_inner:before{
    inset: 10px;
  }

  .home_service_item_inner:after{
    width: 42px;
    font-size: 16px;
    bottom: 20px;
    right: 25px;
  }

  .home_service_item_box1{
    width: 38.23%;
  }
  .home_service_item_box2{
    width: 59.55%;
    min-height: 240px;
    margin-top: 0;
    padding-bottom: 30px;
  }
  .home_service_item_title1{
    font-size: 18px;
    padding: 5px 15px 7px;
    margin-bottom: 20px;
  }
  .home_service_item_title2{
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 15px;
  }
  .home_service_item_txt{
    font-size: 16px;
    line-height: 1.75;
    margin-left: 15px;
  }
  .home_service_item_img{
    margin-top: -45px;
    margin-left: -40px;
  }

  .pg_header .cmn_strength_illust_drone{
    left: 24.4%;
    bottom: 350px;
  }
  
   .pg_header .cmn_strength_illust_car1.large{
    width: 250px;
   }
}
@media (min-width:1470px){

  /* ABOUT */
  .home_about_title{
    font-size: 42px;
  }

  /* 私たちの強み（イラスト） */
  .cmn_strength_illust{
    height: 673px;
    margin-top: -285px;
  }
  .cmn_strength_illust_drone,
  .cmn_strength_illust_car1,
  .cmn_strength_illust_car2{
  }
  .cmn_strength_illust_drone img,
  .cmn_strength_illust_car1 img,
  .cmn_strength_illust_car2 img{
  }

  .cmn_strength_illust_drone{
    width: 56px;
    left: 43.4%;
    bottom: 293px;
  }
  .cmn_strength_illust_car1,
  .cmn_strength_illust_car2{
    width: 114px;
    bottom: 15px;
  }
  .cmn_strength_illust_car1{
    left: 33%;
  }
  .cmn_strength_illust_car2{
    left: 73%;
  }

  .pg_header .cmn_strength_illust_drone{
    left: 34.4%;
    bottom: 429px;
  }
  .pg_header .cmn_strength_illust_car1{
    width: 151px;
    bottom: 45px;
  }
  .pg_header .cmn_strength_illust_car2{
    width: 151px;
  }
  .pg_header .cmn_strength_illust_car1.large{
    width: 311px;
    bottom: 25px;
  }
  .pg_header .cmn_strength_illust_car2.large{
    width: 145px;
    bottom: 25px;
  }

  /* 採用情報 */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 58.93%;
  }
  .home_recruit_box2{
    width: 36.12%;
    margin-top: -10px;
  }
  .home_recruit_title{
    font-size: 40px;
    margin-right: -20px;
    margin-bottom: 40px;
  }

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

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 50.98%;
    padding-top: 28px;
  }
  .home_about_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .home_about_title{
    font-size: 56px;
    margin-bottom: 30px;
    margin-right: -50px;
  }
  .home_about_txt{

  }

  /* 採用情報 */
  .home_recruit_title{
    font-size: 46px;
    margin-right: -20px;
    margin-bottom: 40px;
  }

}




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

/* Strength */
.cmn_strength{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.cmn_strength_box1{
  width: 100%;
  margin-bottom: 20px;
}
.cmn_strength_box2{
  width: 100%;
}
.cmn_strength_head{
  text-align: center;
}
.cmn_strength_head_ja{
  font-size: 18px;
  margin-top: 5px;
}
.cmn_strength_head_en{
  font-size: 45px;
}
.cmn_strength_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  position: relative;
  z-index: 2;
}
.cmn_strength_list_item{
  width: 100%;
  padding: 0 5px;
}
.cmn_strength_list_item:nth-child(n+2){
  margin-top: 30px;
}
.cmn_strength_list_item_img{
  margin-bottom: 15px;
}
.cmn_strength_list_item_img.img_fit:before{
  padding-top: 75%;
}
.cmn_strength_list_item_title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.cmn_strength_list_item_txt{

}

/* Values */
.cmn_values{
  background: #000;
  color: #FFF;
  padding: 35px 25px 30px;
  position: relative;
  z-index: 1;
}
.cmn_values:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 10px;
  pointer-events: none;
  border: 1px solid #FFF;
}
.cmn_values_head{
  text-align: center;
  margin-bottom: 20px;
}
.cmn_values_head_en{
  /*font-size: 45px;*/
}
.cmn_values_head_ja{
  /*font-size: 18px;*/
  margin-top: 12px;
}
.cmn_values_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_values_list_item{
  width: 100%;
  padding: 0 5px;
}
.cmn_values_list_item:nth-child(n+2){
  margin-top: 20px;
}
.cmn_values_list_item_inner{

}
.cmn_values_list_item_title{
  background: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 5px 5px;
  margin-bottom: 10px;
}
.cmn_values_list_item_txt{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}

@media (max-width:767px){
  .cmn_strength_head_en{
    text-shadow: 
      1px 1px 1px #000000,
      -1px 1px 1px #000000,
      1px -1px 1px #000000,
      -1px -1px 1px #000000,
      1px 0px 1px #000000,
      0px 1px 1px #000000,
      -1px 0px 1px #000000,
      0px -1px 1px #000000;
  }
  .cmn_values_head_en.wh{
    text-shadow: 
      1px 1px 1px #fff,
      -1px 1px 1px #fff,
      1px -1px 1px #fff,
      -1px -1px 1px #fff,
      1px 0px 1px #fff,
      0px 1px 1px #fff,
      -1px 0px 1px #fff,
      0px -1px 1px #fff;
  }
}
@media (min-width:768px){




  /* Strength */
  .cmn_strength{
  }
  .cmn_strength_box1{
  }
  .cmn_strength_box2{
  }
  .cmn_strength_head{
  }
  .cmn_strength_head_ja{
    font-size: 18px;
    margin-top: 5px;
  }
  .cmn_strength_head_en{
    font-size: 70px;
  }
  .cmn_strength_list{
    margin-left: -8px;
    margin-right: -8px;
  }
  .cmn_strength_list_item{
    width: 33.333%;
    padding: 0 8px;
  }
  .cmn_strength_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_strength_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .cmn_strength_list_item_img{
    margin-bottom: 15px;
  }
  .cmn_strength_list_item_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .cmn_strength_list_item_txt{

  }

  /* Values */
  .cmn_values{
    padding: 35px 35px 65px;
  }
  .cmn_values:after{
    inset: 15px;
  }
  .cmn_values_head{
    margin-bottom: 25px;
  }
  .cmn_values_head_en{
    /*font-size: 70px;*/
  }
  .cmn_values_head_ja{
    /*font-size: 18px;*/
    margin-top: 12px;
  }
  .cmn_values_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  .cmn_values_list_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .cmn_values_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_values_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .cmn_values_list_item_inner{

  }
  .cmn_values_list_item_title{
    font-size: 21px;
    padding: 5px 5px;
    margin-bottom: 10px;
  }
  .cmn_values_list_item_txt{
    font-size: 18px;
    /*line-height: 2;*/
  }


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

  /* Strength */
  .cmn_strength{
  }
  .cmn_strength_box1{
    width: 120px;
    margin-bottom: 0;
  }
  .cmn_strength_box2{
    width: calc(100% - 120px);
  }
  .cmn_strength_head{
    display: flex;
    flex-direction: column-reverse;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
  }
  .cmn_strength_head_ja{
    font-size: 18px;
    margin-top: 0;
  }
  .cmn_strength_head_en{
    font-size: 70px;
  }
  .cmn_strength_list{
    /*margin-left: -14px;*/
    /*margin-right: -14px;*/
  }
  .cmn_strength_list_item{
    width: 33.333%;
    /*padding: 0 14px;*/
  }
  .cmn_strength_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .cmn_strength_list_item_img{
    /*margin-bottom: 15px;*/
  }
  .cmn_strength_list_item_title{
    /*font-size: 20px;*/
    /*margin-bottom: 20px;*/
  }

  /* 逆ver */
  .cmn_strength.reverse{
    flex-direction: row-reverse;
  }
  .cmn_strength.reverse .cmn_strength_head{
    flex-direction: column;
    margin-left: auto;
    margin-right: -15px;
  }
  .cmn_strength.reverse .cmn_strength_head_ja{
    margin-right: 15px;
  }


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



  /* Strength */
  .cmn_strength{
  }
  .cmn_strength_box1{
    width: 160px;
    margin-bottom: 0;
  }
  .cmn_strength_box2{
    width: calc(100% - 160px);
  }

  /* Values */
  .cmn_values{
    padding: 35px 55px 65px;
  }
  .cmn_values:after{
    inset: 20px;
  }
  .cmn_values_head{
    /*margin-bottom: 48px;*/
  }
  .cmn_values_head_en{
    /*font-size: 100px;*/
  }
  .cmn_values_head_ja{
    /*font-size: 18px;*/
    margin-top: 12px;
  }
  .cmn_values_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_values_list_item{
    width: 20%;
    padding: 0 15px;
  }
  .cmn_values_list_item:nth-child(n+4){
    margin-top: 0;
  }
  .cmn_values_list_item:nth-child(n+6){
    margin-top: 30px;
  }
  .cmn_values_list_item_inner{

  }
  .cmn_values_list_item_title{
    font-size: 18px;
    padding: 5px 5px;
    margin-bottom: 10px;
  }
  .cmn_values_list_item_txt{
    font-size: 18px;
    line-height: 2;
  }

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

  /* Strength */
  .cmn_strength{
  }
  .cmn_strength_box1{
    width: 205px;
  }
  .cmn_strength_box2{
    width: calc(100% - 205px);
  }
  .cmn_strength_head{
  }
  .cmn_strength_head_ja{
    font-size: 18px;
  }
  .cmn_strength_head_en{
    font-size: 100px;
  }
  .cmn_strength_list{
    margin-left: -14px;
    margin-right: -14px;
  }
  .cmn_strength_list_item{
    width: 33.333%;
    padding: 0 14px;
  }
  .cmn_strength_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .cmn_strength_list_item_img{
    margin-bottom: 15px;
  }
  .cmn_strength_list_item_title{
    font-size: 24px;
    margin-bottom: 20px;
  }

  /* Values */
  .cmn_values{
    padding: 35px 55px 75px;
  }
  .cmn_values_head{
    margin-bottom: 48px;
  }
  .cmn_values_head_en{
    /*font-size: 100px;*/
  }
  .cmn_values_head_ja{
    /*font-size: 18px;*/
    /*margin-top: 12px;*/
  }
  .cmn_values_list_item_title{
    font-size: 21px;
  }
}
@media (min-width:1720px){


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}







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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    padding-top: 80px;
  }

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

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    padding-top: 100px;
  }

}
@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: #181818;
  border-color: #888888;
  padding: 10px 10px;
}
.pg_company .company_tbl .table_rows_th{
  background: #e0e0e0;
  font-weight: 400;
}
.pg_company .company_tbl .table_rows_td{
  background: #FFF;
  font-weight: 400;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .pg_company .company_tbl .table_rows_th,
  .pg_company .company_tbl .table_rows_td{
    padding: 16px 14px 15px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map iframe{
    height: 450px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 62px;
  }
  .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{

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

/* 一覧（サムネあり） */
.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: #0069ba;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.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: 55px;
  }

  /* 詳細 */
  .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{

  }

}
@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;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
  margin-top: 50px;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #e0e0e0;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 11px;
  margin-top: 3px;
  float: right;
  font-family: var(--font-fa);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.07em;
  padding: 12px 19px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.formWrap .text-center{
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #ea0013;
}
.formBtn.formSend {
  display: flex;
  min-width: 135px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: none;
  color: var(--txt-color);
  padding: 12px 20px 16px 0;
  margin: 5px 5px 5px 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  justify-content: space-between;
  letter-spacing: 0.025em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  align-items: center;
}
.formBtn.formSend:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.075em;
  background: #000;
  color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  background: none;
}
.formBtn.formSend:hover:after{
  margin-right: -5px;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
  line-height: 2.4em;
  margin-left: 9px;
  color: #181818;
}
.radioArea .d-inline-block{
  margin-right: 25px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

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


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_box {
  padding: 0 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 55px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #ea0013;
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.2em;
  margin-top: 30px;
  margin-bottom: 45px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .privacy_box {
    padding: 0 10px;
  }
}

@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;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .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;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .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;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

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

@media (min-width: 1720px) {
  .pg_contact .formBtn.formSend {
    min-width: 135px;
  }
}

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

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

  .privacy_box{
    padding: 0 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .thanks_text {
    text-align: center !important;
  }
}

/*******************************
*　
********************************/
.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){


}
