@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Reenie+Beanie&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

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

  /* カラー(ボタン背景色など) */
  --main-color: #b9aac1;
  --sub-color: #627361;
  --txt-color: #424242;
  --bg-color: #faf9f4;

  /* フォント関連 */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Outfit","Zen Kaku Gothic New", sans-serif;
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: "Reenie Beanie", "Zen Kaku Gothic New", cursive;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  var(--font-ja), "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background-color: var(--bg-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;*/
    max-width: calc(1310px + 160px);
    padding-left: 80px;
    padding-right: 80px;
  }
  :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);
  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;
  }

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

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

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

  .hdr1{
    padding: 15px 15px ;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


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

}
@media (min-width:1470px){
  .hdr1{
    padding: 15px 40px;
  }
}


/*******************************
*　メインビジュアル
********************************/
/* 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 - 38px);
}

/* MVテキスト */
.mv_txt{
  min-width: 95px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  background: var(--bg-color);
  color: var(--txt-color);
  padding: 25px 10px;
}
.mv_txt_p1{
  font-size: 1em;
  font-weight: inherit;
  line-height: 1.875;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;

}
.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{
    margin-right: 60px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 470px;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 24px;
    padding: 50px 22px 30px 22px;
    right: -1px;
    min-width: 134px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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


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

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

  }
  .mv_txt_p2{

  }

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

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

  /* MVテキスト */
  .mv_txt{
    font-size: 40px;
    padding: 80px 42px 50px 42px;
    min-width: 210px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}
@media (min-width:1470px){
  .mv{
    margin-right: 80px;
  }
}
@media (min-width:1536px){
  .mv{
    /*margin-right: 80px;*/
  }
}
@media (min-width:1720px){

  .mv{
    margin-right: 120px;
  }

}


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

/* サイドバー */
.sidebar{
  width: 50px;
  position: fixed;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 42px;
  /*background-color: var(--bg-color);*/
}

.sidebar .hdr_menubtn{
  top: 0;
  left: 0;
  width: 100%;
}

/* バナー */
.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);
}

/* ボタン */
.sidebar_contact{
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0 10px;
}
.sidebar_contact_a{
  transition: 0.2s all;
}
.sidebar_contact_a + .sidebar_contact_a{
  margin-top: 15px;
}
.sidebar_contact_a:hover{
  transform: scale(1.05);
}

@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    width: 60px;
  }

  /* ボタン */
  .sidebar_contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 25%;
  }
  .sidebar_contact_a + .sidebar_contact_a{
    margin-top: 30px;
  }

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


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

  /* ボタン */
  .sidebar_contact{
    top: 28%;
  }
  
}
@media (min-width:1200px){

  /* サイドバー */
  .sidebar{
    width: 60px;
  }

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

  /* ボタン */
  .sidebar_contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 50%;
  }
}

@media (min-width:1470px){
  /* サイドバー */
  .sidebar{
    width: 80px;
  }
}
@media (min-width:1536px){
  /* サイドバー */
  .sidebar{
    /*width: 80px;*/
  }
}
@media (min-width:1720px){

  /* サイドバー */
  .sidebar{
    width: 120px;
  }
}


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

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




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

  .pg_header_title_txt{
    font-size: 32px;
  }

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

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 520px;
  }

  .pg_header_title_txt{
    font-size: 60px;
  }

}
@media (min-width:1470px){
  .pg_header{
    margin-right: 80px;
  }
}
@media (min-width:1536px){
  .pg_header{
    /*margin-right: 80px;*/
  }
}
@media (min-width:1720px){

  .pg_header{
    margin-right: 120px;
    margin-bottom: 200px;
  }
  
}




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


/* テーブル用 */
.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: #faf9f4;
  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: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  border-radius: 27px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "〉";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more a.green{
  background: var(--sub-color);
}
.read_more a.green:hover{
  background: var(--main-color);
}

.read_more a.email:after{
  display: none;
}
.read_more a.email p:before{
  content: "\f0e0";
  font-family: "FontAwesome";
  margin-right: 20px;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tt2.left{
  text-align: left;
}
.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: 700;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 900;
  font-weight: 700;
  color: var(--sub-color);
  ;
}
.tt2_ja_sub{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.625;
}

.tt2.tate{
  display: flex;
  align-items: center;
  padding: 0;
  /*padding-left: 55px;*/
}
.tt2.tate .tt2_ja{
   -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  position: static;
  border-left: 2px solid var(--sub-color);
  padding-left: 10px;
  margin-right: 20px;
}
  
.tt2.tate .tt2_ja{
  /*position: absolute;
  z-index: 1;
  top: 0;
  left: 0;*/
}

.tt2_ja .bdr{
  position: relative;
  z-index: 1;
}
.tt2_ja.bdrBtm .bdr{
  display: inline-block;
}
.tt2_ja.bdrBtm .bdr:after{
  content: "";
  display: block;
  height: 2px;
  background: var(--sub-color);
  margin-top: 5px;
}
.tt2_ja.bdrLeft .bdr{
  display: inline-block;
  padding-left: 15px;
}
.tt2_ja.bdrLeft .bdr:before{
  content: "";
  width: 3px;
  height: 30px;
  background: var(--sub-color);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.tt2_ja.bdrBtm.bdrBtmWh .bdr:after{
  background: #FFF;
}

.tt2_ja2.color2{
  color: #b9aac1;
}

.tt2_ja2.icon1,
.tt2_ja2.icon2,
.tt2_ja2.icon3{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.tt2_ja2.icon1 .icon_txt,
.tt2_ja2.icon2 .icon_txt,
.tt2_ja2.icon3 .icon_txt{
  margin: 0 20px;
}
.tt2_ja2.icon1 .icon_bf,
.tt2_ja2.icon1 .icon_af,
.tt2_ja2.icon2 .icon_bf,
.tt2_ja2.icon2 .icon_af,
.tt2_ja2.icon3 .icon_bf,
.tt2_ja2.icon3 .icon_af{
  width: 40px;
  height: 2px;
  background: var(--sub-color);
  position: relative;
  z-index: 1;
}
.tt2_ja2.icon1 .icon_af:after,
.tt2_ja2.icon2 .icon_af:after,
.tt2_ja2.icon3 .icon_af:after{
  content: "";
  width: 157.5%;
  aspect-ratio: 63 / 48;
  background-image: url('/system_panel/uploads/images/tt2_ja_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  position: absolute;
  z-index: 1;
  left: calc(100% - 5px);
  bottom: 0;
}

.tt2_ja2.icon2 .icon_bf,
.tt2_ja2.icon2 .icon_af{
  background: #b9aac1;
}
.tt2_ja2.icon2 .icon_af:after{
  background-image: url('/system_panel/uploads/images/tt2_ja_icon2.png');
}

.tt2_ja2.icon3 .icon_bf,
.tt2_ja2.icon3 .icon_af{
  /*background: #b9aac1;*/
}
.tt2_ja2.icon3 .icon_af:after{
  width: 175%;
  aspect-ratio: 70 / 52;
  background-image: url('/system_panel/uploads/images/tt2_ja_icon3.png');
  left: 12px;
}

/* 説明テキスト */
.cmn_txt{
  font-size: 16px;
  line-height: 2.1875;
  line-height: 1.875;
  text-align: justify;
}


/* About */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cmn_about_box1{
  width: 100%;
  position: relative;
  z-index: 2;
  background: var(--bg-color);
  padding-top: 30px;
  padding-right: 0;
  margin-top: 35px;
}
.cmn_about_box2{
  width: 100%;
  /*position: absolute;
  z-index: 0;
  top: 0;
  right: 0;*/
}

.cmn_about_title_en{
  font-size: 50px;
  font-family: var(--font-mincho);
  line-height: 0.666;
  color: var(--sub-color);
  /*margin-bottom: 45px;*/
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -75%);
  transform: translate(0, -75%);
}
.cmn_about_title_en p{
  letter-spacing: 0;
}
.cmn_about_img{

}
.cmn_about_img.img_fit:before{
  padding-top: 220px;
}


.cmn_about_row{
  position: relative;
  z-index: 1;
}
.cmn_about_row + .cmn_about_row{
  margin-top: 50px;
}

.cmn_about_row .cmn_about_box2{
}
.cmn_about_row:nth-child(odd) .cmn_about_box2:after{
  content: "";
  width: 51.14%;
  width: 42.33%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/home_about_bg1.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: -20px;
  left: -20px;
}
.cmn_about_row:nth-child(even) .cmn_about_box2:after{
  content: "";
  width: 51.14%;
  width: 42.33%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/home_about_bg1.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  bottom: -20px;
  left: -20px;
}

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

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




@media (max-width:374px){

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

}
@media (max-width:1023px){
  .tt2.tate{
    display: flex;
    align-items: center;
    padding: 0;
  }
  .tt2.tate .tt2_ja{
    position: static;
    margin-right: 20px;
  }
}
@media (max-width:767px){

  .tt2_ja.bdrBtm{
    margin-bottom: 5px;
  }
  
  .tt2.tate{
    display: flex;
    align-items: center;
    padding: 0;
  }
  .tt2.tate .tt2_ja{
    position: static;
    margin-right: 20px;
  }
  
  .tt2_ja2.icon1 .icon_bf,
  .tt2_ja2.icon1 .icon_af,
  .tt2_ja2.icon2 .icon_bf,
  .tt2_ja2.icon2 .icon_af{
    width: 30px;
  }
  
  /* スマホ用テーブル */
  .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;
  }


  /* About */
  .cmn_about{
    padding-top: 0;
  }
  .cmn_about_box1{
    order: 2;
  }
  .cmn_about_box2{
    order: 1;
  }
  
  .cmn_about_box1{
    margin-top: 20px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
    border-radius: 27px;
  }
  .read_more a:after{
    content: "〉";
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
  
  .read_more a.email{
    min-width: 330px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 35px;
  }
  .tt2.left{
    text-align: left;
  }

  .tt2_en{
  }
  .tt2_ja{
    font-size: 18px;
  }
  .tt2_ja2{
    font-size: 20px;
  }
  .tt2_ja_sub{
    font-size: 28px;
  }

  .tt2.tate{
    /*padding-left: 30px;*/
  }
  .tt2.tate .tt2_ja{
    border-left: 2px solid var(--sub-color);
    padding-left: 10px;
  }

  /* 説明テキスト */
  .cmn_txt{
    font-size: 16px;
    /*line-height: 2.1875;*/
    /*text-align: justify;*/
  }


  /* About */
  .cmn_about{
    padding-top: 120px;
  }
  .cmn_about_box1{
    /*width: 680px;*/
    width: 85%;
    padding-top: 50px;
    padding-right: 95px;
    margin-top: 130px;
  }
  .cmn_about_box2{
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
  }
  .cmn_about_title_en{
    font-size: 80px;
    -webkit-transform: translate(0, -75%);
    transform: translate(0, -75%);
  }

  .cmn_about.reverse .cmn_about_box1{
    margin-left: auto;
    padding-left: 30px;
    margin-right: 0;
  }
  .cmn_about.reverse .cmn_about_box2{
    left: 0;
    right: auto;
  }
  .cmn_about.reverse .cmn_about_title_en{
    left: auto;
    right: 0;
  }

  .cmn_about_row + .cmn_about_row{
    margin-top: 100px;
  }


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

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

  .tt2.tate{
    /*padding-left: 60px;*/
  }

  /* About */
  .cmn_about{
    padding-top: 120px;
  }
  .cmn_about_box1{
    /*width: 680px;*/
    width: 44.73%;
    width: 58%;
    padding-top: 65px;
    padding-right: 50px;
    padding-bottom: 30px;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 80.26%;
    top: 0;
    right: 0;
  }

  .cmn_about.reverse .cmn_about_box1{
    width: 57%;
  }
  .cmn_about.reverse .cmn_about_box2{
    width: 58.22%;
  }
  .cmn_about.reverse.wide .cmn_about_box1{
    /*width: 47%;*/
  }
  .cmn_about.reverse.wide .cmn_about_box2{
    width: 93.42%;
  }
  .cmn_about.reverse.wide .cmn_about_img{
    margin-left: -80px;
  }

  .cmn_about_title_en{
    font-size: 80px;
    -webkit-transform: translate(0, -75%);
    transform: translate(0, -75%);
  }
  
  .cmn_about.reverse .cmn_about_box1{
    min-height: 457px;
  }
}
@media (min-width:1200px){

  .tt2_ja_sub{
    font-size: 30px;
  }
  .read_more a.email{
    min-width: 355px;
  }
  
  .cmn_about_box1{
    width: 55%;
  }
  .cmn_about_box2{
    width: 80.26%;
  }
  
  .cmn_about.reverse .cmn_about_box1{
    padding-bottom: 50px;
  }

}


@media (min-width:1366px){

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

  .tt2.tate{
    /*padding-left: 95px;*/
  }


  /* 説明テキスト */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.1875;
    /*text-align: justify;*/
  }


  .cmn_about_row + .cmn_about_row{
    margin-top: 150px;
  }
  
  .cmn_about_box1{
    /*width: 680px;*/
    width: 44.73%;
    width: 52%;
    padding-top: 105px;
    padding-right: 65px;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 80.26%;
    top: 0;
    right: 0;
  }

  .cmn_about_title_en{
    font-size: 120px;
    -webkit-transform: translate(0, -75%);
    transform: translate(0, -75%);
  }
  
  
  .cmn_about.reverse .cmn_about_box1{
    padding-left: 65px;
    
  }
  .cmn_about.reverse .cmn_about_box1{
    
  }
  .cmn_about.reverse.wide .cmn_about_box1{
    width: 47%;
  }
  
  .pg_service .section.sec2 .cmn_about.reverse .cmn_about_box1{
    padding-top: 45px;
    padding-bottom: 50px;
  }
}

@media (min-width:1720px){

  /* 見出し */
  .tt2{
    margin-bottom: 35px;
  }
  .tt2_en{
  }
  .tt2_ja{
    font-size: 20px;
  }
  .tt2_ja2{
    font-size: 32px;
  }
  .tt2_ja_sub{
    font-size: 40px;
  }
  
  .tt2.tate .tt2_ja{
    margin-right: 50px;
  }

  .cmn_about_box1{
    /*width: 680px;*/
    width: 44.73%;
    padding-top: 105px;
    padding-right: 65px;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 80.26%;
    top: 0;
    right: 0;
  }
  
}

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


/* カテゴリ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;
  border: 1px solid #e0dbd0;
  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: 5px;
  -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: #e0dbd0;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #e0dbd0;
}
.cmn_cat_nav.color2 li a:hover{
  background: #FFF;
  color: #181818;
}

@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%;
  }

}


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

}
.pg_home .section{
  position: relative;
  z-index: 1;
}
.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 (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 85px;
  }
  .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){

  .pg_home .section.sec1{
    padding-top: 165px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 85px;
  }

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


}


/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.home_about_box1{
  order: 2;
  width: 49.01%;
  width: 100%;
  margin-top: 30px;
  padding-top: 34px;
  padding-bottom: 34px;
  position: relative;
  z-index: 1;
}
.home_about_box1:before{
  content: "";
  width: 51.14%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/home_about_bg1.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: -32px;
}
.home_about_box1:after{
  content: "";
  width: 51.14%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/home_about_bg1.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -32px;
}
.home_about_box2{
  order: 1;
  width: 49.01%;
  width: 100%;
  padding-top: 0;
  padding-left: 0;
  position: relative;
  z-index: 1;
}
.home_about_imgs{
  /*width: 90.30%;*/
  width: 100%;
  aspect-ratio: 745 / 760;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.home_about_imgs_item1{
  width: 61.74%;
}
.home_about_imgs_item2{
  width: 77.18%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
.home_about_imgs_item1.img_fit:before{
  padding-top: 108.696%;
}
.home_about_imgs_item2.img_fit:before{
  padding-top: 83.478%;
}

.home_about_box2 .tt2.tate{
  padding-top: 52px;
}
.home_about_box2_inner{
  /*padding-left: 95px;*/
}

/* About(下層用) */
.home_about.type2{
  align-items: center;
}
.home_about.type2 .home_about_box3{
  width: 52.96%;
  width: 100%;
}
.home_about.type2 .home_about_box4{
  width: 100%;
  /*padding-left: 30px;*/
}
.home_about.type2 .home_about_box3{
  order: 2;
}
.home_about.type2 .home_about_box4{
  order: 1;
}

.home_about.type2 .home_about_imgs{
  aspect-ratio: 805 / 647;
}
.home_about.type2 .home_about_imgs_item1{
  width: 67.08%;
  overflow: visible;
}
.home_about.type2 .home_about_imgs_item1.img_fit:before{
  padding-top: 85.185%;
}
.home_about.type2 .home_about_imgs_item1:after{
  content: "";
  width: 70%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/inherit_about_bg1.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -20px;
}

.home_about.type2 .home_about_imgs_item2{
  width: 71.42%;
  /*margin-right: -32px;*/
}
.home_about.type2 .home_about_imgs_item2.img_fit:before{
  padding-top: 73.043%;
}

/* サポート */
.home_support{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
* + .home_support{
  margin-top: 30px;
}
.home_support_item{
  width: 100%;
  padding: 0 30px;
}
.home_support_item:nth-child(n+2){
  margin-top: 65px;
}
.home_support_item_inner{
  padding: 15px 15px;
  background: #FFF;
  position: relative;
  z-index: 1;
}
.home_support_item_img{

}
.home_support_item_img.img_fit:before{
  padding-top: 63.971%;
}
.home_support_item_title{
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  background: #FFF;
  margin-top: -55px;
  margin-bottom: 0;
  padding: 15px 10px;
  position: relative;
  z-index: 2;
}
.home_support_item_title strong{
  position: relative;
  z-index: 1;
}
.home_support_item_title strong:after{
  content: "";
  left: 10px;
  right: 5px;
  bottom: 0;
  height: 0.5em;
  background: #d4ecd3;
  position: absolute;
  z-index: -1;
}
.home_support_item_title_en{
  font-size: 60px;
  line-height: 1;
  font-family: var(--font-mincho);
  color: var(--sub-color);
  position: absolute;
  z-index: 2;
  top: -25px;
  left: 12px;
  transform: rotate(-7deg);
}
.home_support_item_title_en p{
  letter-spacing: 0;
}
.home_support_item_txt{
  padding: 0 10px;
}
.home_support_item .read_more{
  margin-top: 40px;
}

/* その他リンク */
.home_others{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.home_others_item{
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.home_others_item:nth-child(n+2){
  margin-top: 50px;
}
.home_others_item_inner{
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
.home_others_item_img{
  overflow: visible;
}
.home_others_item_img.img_fit:before{
  padding-top: 66.667%;
}
.home_others_item_img:after{
  content: "";
  width: 52.91%;
  aspect-ratio: 381 / 288;
  background-image: url(/system_panel/uploads/images/home_about_bg2.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  bottom: -28px;
  left: -46px;
}
.home_others_item_txt{
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.home_others_item_more{
  width: 50px;
  aspect-ratio: 90 / 60;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  background-image: url(/system_panel/uploads/images/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s all;
}
.home_others_item_more:hover{
  margin-right: -5px;
}

@media (max-width:374px){

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

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

  .home_others_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_others_item_txt {
    padding-bottom: 50px;
  }
  .home_others_item_more{
  }
  
}
@media (min-width:768px){


  /* About */
  .home_about{
  }
  .home_about_box1{
    /*order: 1;*/
    /*width: 49.01%;*/
    /*margin-top: 0;*/
    padding-top: 34px;
  }
  .home_about_box1:before{
    top: 0;
    left: -32px;
  }
  .home_about_box2{
    /*order: 2;*/
    /*width: 49.01%;*/
    padding-top: 50px;
    padding-left: 30px;
  }

  .home_about_box2 .tt2.tate{
    padding-top: 50px;
  }
  .home_about_box2_inner{
    padding-left: 0;
  }

  /* About(下層用) */
  .home_about.type2{
    /*align-items: center;*/
  }
  .home_about.type2 .home_about_box3{
    /*width: 52.96%;*/
  }
  .home_about.type2 .home_about_box4{
    /*width: 42.76%;*/
    /*padding-left: 30px;*/
  }
  .home_about.type2 .home_about_box3{
    /*order: 2;*/
  }
  .home_about.type2 .home_about_box4{
    /*order: 1;*/
  }
  .home_about.type2.reverse .home_about_box3{
    /*order: 1;*/
  }
  .home_about.type2.reverse .home_about_box4{
    /*order: 2;*/
  }

  .home_about.type2 .home_about_imgs_item1{
  }
  .home_about.type2 .home_about_imgs_item2{
    margin-right: -32px;
  }

  /* サポート */
  .home_support{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_support{
    margin-top: 65px;
  }
  .home_support_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_support_item:nth-child(n+2){
    margin-top: 65px;
  }
  .home_support_item:nth-child(n+3){
    margin-top: 65px;
  }
  .home_support_item_inner{
    padding: 15px 15px;
  }
  .home_support_item_title{
    font-size: 22px;
    /*margin-top: -75px;*/
    /*margin-bottom: 20px;*/
    /*padding: 20px 15px;*/
  }
  .home_support_item_title strong:after{
    left: 10px;
    right: 5px;
    /*bottom: 0;*/
    /*height: 19px;*/
  }
  .home_support_item_title_en{
    font-size: 60px;
    /*top: -56px;*/
    /*left: 12px;*/
  }
  .home_support_item_txt{
    padding: 0 15px;
  }
  .home_support_item .read_more{
    margin-top: 40px;
  }


  /* その他リンク */
  .home_others{
    margin-left: -20px;
    margin-right: -20px;
  }
  .home_others_item{
    /*width: 50%;*/
    padding-left: 20px;
    padding-right: 20px;
  }
  .home_others_item:nth-child(n+2){
    margin-top: 50px;
  }
  .home_others_item_inner{
    padding-bottom: 0;
  }
  .home_others_item_img:after{
    bottom: -28px;
    left: -46px;
  }
  .home_others_item_txt{
    margin-top: 20px;
    padding-right: 90px;
  }
  .home_others_item_more{
    width: 70px;
    top: 50%;
    bottom: auto;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

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

  /* About */
  .home_about{
  }
  .home_about_box1{
    order: 1;
    width: 49.01%;
    margin-top: 0;
    padding-top: 34px;
  }
  .home_about_box1:before{
    top: 0;
    left: -32px;
  }
  .home_about_box2{
    order: 2;
    width: 49.01%;
    padding-top: 95px;
    padding-left: 30px;
  }

  .home_about_box2 .tt2.tate{
    padding-top: 80px;
  }
  .home_about_box2_inner{
    padding-left: 60px;
  }

  /* About(下層用) */
  .home_about.type2{
    align-items: center;
  }
  .home_about.type2 .home_about_box3{
    width: 52.96%;
    width: 45%;
  }
  .home_about.type2 .home_about_box4{
    width: 42.76%;
    width: 53%;
    padding-left: 30px;
  }
  .home_about.type2 .home_about_box3{
    order: 2;
  }
  .home_about.type2 .home_about_box4{
    order: 1;
  }
  
  
  .home_about.type2.reverse .home_about_box3{
    order: 1;
  }
  .home_about.type2.reverse .home_about_box4{
    order: 2;
  }
  
  .home_about.type2 .home_about_imgs_item1{
  }
  .home_about.type2 .home_about_imgs_item2{
    margin-right: -32px;
  }

  /* サポート */
  .home_support{
    margin-left: -30px;
    margin-right: -30px;
  }
  .home_support_item{
    width: 50%;
    padding: 0 30px;
  }
  .home_support_item:nth-child(n+2){
    margin-top: 65px;
  }
  .home_support_item:nth-child(n+3){
    margin-top: 65px;
  }
  .home_support_item_inner{
    padding: 30px 30px;
  }
  .home_support_item_title{
    font-size: 20px;
    margin-top: -75px;
    margin-bottom: 0;
    padding: 20px 15px;
  }
  .home_support_item_title strong:after{
  }
  .home_support_item_title_en{
    font-size: 80px;
    top: -30px;
    left: 12px;
  }
  .home_support_item_txt{
    padding: 0 15px;
  }
  .home_support_item .read_more{
    margin-top: 40px;
  }

  /* その他リンク */
  .home_others{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_others_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home_others_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_others_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_others_item_inner{
    padding-bottom: 0;
  }
  .home_others_item_img:after{

  }
  .home_others_item_txt{
    font-size: 15px;
    margin-top: 35px;
    /*padding-right: 80px;*/
  }
  .home_others_item_more{
    /*width: 90px;*/
  }

  .home_others_item:nth-child(odd) .home_others_item_img:after{
    bottom: -28px;
    left: -46px;
  }
  .home_others_item:nth-child(even) .home_others_item_img:after{
    top: -20px;
    right: -30px;
    bottom: auto;
    left: auto;

  }

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


}
@media (min-width:1366px){
  /* About */
  .home_about{
  }
  .home_about_box1{
    order: 1;
    width: 49.01%;
    margin-top: 0;
    padding-top: 34px;
  }
  .home_about_box1:before{
    top: 0;
    left: -32px;
  }
  .home_about_box2{
    order: 2;
    width: 49.01%;
    padding-top: 95px;
    padding-left: 30px;
  }

  .home_about_box2 .tt2.tate{
    padding-top: 80px;
  }
  .home_about_box2_inner{
    padding-left: 65px;
  }

  /* その他リンク */
  .home_others{
    margin-left: -20px;
    margin-right: -20px;
  }
  .home_others_item{
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home_others_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_others_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_others_item_inner{
  }
  .home_others_item_img:after{
    bottom: -28px;
    left: -46px;
  }
  .home_others_item_txt{
    font-size: 16px;
    margin-top: 35px;
  }
  .home_others_item_more{
    width: 90px;
  }
}
@media (min-width:1470px){

  .home_support_item_title{
    font-size: 40px;
    margin-top: -75px;
    margin-bottom: 20px;
    padding: 20px 15px;
  }
  .home_support_item_title_en{
    font-size: 120px;
    top: -56px;
    left: 12px;
  }

}
@media (min-width:1720px){
  
  .home_about_box2_inner{
    padding-left: 95px;
  }

  /* About(下層用) */
  .home_about.type2{
  }
  .home_about.type2 .home_about_box3{
    width: 52.96%;
  }
  .home_about.type2 .home_about_box4{
    width: 42.76%;
    padding-left: 30px;
  }
  .home_about.type2 .home_about_box3{
  }
  .home_about.type2 .home_about_box4{
  }
  
}




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

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


}



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

.bg_sec{
  position: relative;
  z-index: 1;
}
.bg_sec_img{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.bg_sec_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.bg_sec_img:after{
  content: "";
  background: rgba(0,0,0,0.27);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* 線イラスト */
.bg_illust{
  --bg-illust-resize: 0.3;
  background-size: cover;
  position: absolute;
  z-index: -1;
}
.bg_illust.type1{
  width: calc(469px * var(--bg-illust-resize));
  aspect-ratio: 469 / 234;
  background-image: url('/system_panel/uploads/images/bg_illust1.png');
}
.bg_illust.type2{
  width: calc(407px * var(--bg-illust-resize));
  aspect-ratio: 407 / 195;
  background-image: url('/system_panel/uploads/images/bg_illust2.png');
}
.bg_illust.type3{
  width: calc(486px * var(--bg-illust-resize));
  aspect-ratio: 486 / 145;
  background-image: url('/system_panel/uploads/images/bg_illust3.png');
}
.bg_illust.type4{
  width: calc(478px * var(--bg-illust-resize));
  aspect-ratio: 478 / 99;
  background-image: url('/system_panel/uploads/images/bg_illust4.png');
}



.bg_illust.pos_home1{
  top: 0;
  right: 0;
  transform: translate(-20%, 73%);
}
.bg_illust.pos_home2{
  top: 0;
  left: 0;
  transform: translate(-3%, 42%);
}
.bg_illust.pos_home3{
  top: 0;
  right: 10px;
  transform: translate(-10%, 0%);
}

.bg_illust.pos_reason1{
  top: 0;
  left: 0;
}
.bg_illust.pos_bequeath1{
  top: 0;
  left: 10px;
  transform: translateY(-100%);
}
.bg_illust.pos_bequeath2{
  top: 0;
  right: 10px;
  transform: translate(31%, -35%);
}
.bg_illust.pos_inherit1{
  top: 0;
  right: 0;
}
.bg_illust.pos_service1{
  top: 0;
  right: 0;
  transform: translate(39%, -28%);
}
.bg_illust.pos_service2{
  top: 0;
  right: 0;
  transform: translate(18%, -45%);
}
.bg_illust.pos_process1{
  top: 0;
  right: 0;
  transform: translate(2%, -28%);
}

.section.sec_green{
  background-image: url(/system_panel/uploads/images/dots_bg1.jpg);
  padding: 0;
}
.section.sec_green:before,
.section.sec_green:after{
  content: "";
  display: block;
  height: 80px;
  background-size: cover;
}
.section.sec_green:before{
  background-position: center top;
  background-image: url(/system_panel/uploads/images/bg_green_top.png);
  margin-bottom: 30px;
}
.section.sec_green:after{
  background-position: center bottom;
  background-image: url(/system_panel/uploads/images/bg_green_btm.png);
  margin-top: 30px;
}

@media (min-width:768px){
  
  /* 線イラスト */
  .bg_illust{
    --bg-illust-resize: 0.5;
  }
  
  .section.sec_green:before,
  .section.sec_green:after{
    height: 90px;
  }
  .section.sec_green:before{
    margin-bottom: 40px;
  }
  .section.sec_green:after{
    margin-top: 40px;
  }
  
}
@media (min-width:1024px){

  

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

  .section.sec_green:before,
  .section.sec_green:after{
    height: 123px;
  }
  .section.sec_green:before{
    margin-bottom: 70px;
  }
  .section.sec_green:after{
    margin-top: 70px;
  }
  

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

  .bg_illust{
    --bg-illust-resize: 0.7;
  }
  .bg_illust.pos_bequeath1{
    left: 40px;
    transform: translateY(-40%);
  }

}
@media (min-width:1720px){
  /* 線イラスト */
  .bg_illust{
    --bg-illust-resize: 1.0;
  }
  
  
}


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

}
.pg_bequeath .section.sec1{
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.pg_bequeath .section.sec2{
  
}
/*.pg_bequeath .section.sec2{
  background-image: url(/system_panel/uploads/images/dots_bg1.jpg);
  padding-top: 185px;
  padding-bottom: 185px;
  padding: 0;
}
.pg_bequeath .section.sec2:before,
.pg_bequeath .section.sec2:after{
  content: "";
  display: block;
  height: 123px;
  background-size: cover;
  
}
.pg_bequeath .section.sec2:before{
  background-position: center top;
  background-image: url(/system_panel/uploads/images/bg_green_top.png);
  margin-bottom: 70px;
}
.pg_bequeath .section.sec2:after{
  background-position: center bottom;
  background-image: url(/system_panel/uploads/images/bg_green_btm.png);
  margin-top: 70px;
}*/


.pg_bequeath .section.sec3{
  padding-top: 30px;
}
.pg_bequeath .section.sec4{

}
.pg_bequeath .section.sec5{

}


@media (max-width:374px){

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

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

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

  .pg_bequeath{

  }
  .pg_bequeath .section.sec1{
    padding-bottom: 100px;
  }
  .pg_bequeath .section.sec2{

  }
  .pg_bequeath .section.sec3{
    padding-top: 100px;
  }
  .pg_bequeath .section.sec4{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pg_bequeath .section.sec5{

  }

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


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


  .pg_bequeath{

  }
  .pg_bequeath .section.sec1{
    padding-bottom: 135px;
  }
  .pg_bequeath .section.sec2{

  }
  .pg_bequeath .section.sec3{
    padding-top: 175px;
  }
  .pg_bequeath .section.sec4{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pg_bequeath .section.sec5{

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

  .pg_bequeath .section.sec6 .tt2{
    margin-bottom: 55px;
  }

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


}

/* メイン部分 */

/* 遺せるもの */
.bequeath_property_head{

}
* + .bequeath_property_head{
  margin-top: 50px;
}

.bequeath_property_head_title{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
.bequeath_property_head_title_txt{
  font-size: 20px;
  font-weight: 900;
  margin-left: 10px;
  margin-right: 10px;
}
.bequeath_property_head_title:before,
.bequeath_property_head_title:after{
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}
.bequeath_property_head_title_txt em{
  font-style: normal;
  font-weight: inherit;
  position: relative;
  z-index: 1;
}
.bequeath_property_head_title_txt em:after{
  content: "";
  width: 100%;
  height: 0.5em;
  background: #d4ecd3;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.bequeath_property_head_msg{
  text-align: justify;
}
.bequeath_property_head_msg.lg{
  font-weight: 500;
}

.bequeath_property_head.wh{
  color: #FFF;
}
.bequeath_property_head_title.noBdr{

}
.bequeath_property_head_title.noBdr:before,
.bequeath_property_head_title.noBdr:after{
  display: none;
}
.bequeath_property_head_title.noBdr .bequeath_property_head_title_txt{
  margin-left: 0;
  margin-right: 0;
}

.bequeath_property_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
* + .bequeath_property_list{
  margin-top: 50px;
}
.bequeath_property_list_item{
  width: 50%;
  padding: 0 10px;
}
.bequeath_property_list_item:nth-child(n+3){
  margin-top: 30px;
}

.bequeath_property_list_item_icon{
  text-align: center;
}
.bequeath_property_list_item_txt{
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

/* 注意点 */
.bequeath_warning{
  background-image: url(/system_panel/uploads/images/dots_bg1.jpg);
  padding: 50px 15px 30px;
}
* + .bequeath_warning{
  margin-top: 50px;
}
.bequeath_warning_head{
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.bequeath_warning_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.bequeath_warning_list_item{
  width: 100%;
  padding: 0 10px;
}
.bequeath_warning_list_item:nth-child(n+2){
  margin-top: 20px;
}
.bequeath_warning_list_item_title{
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.bequeath_warning_list_item_title:before{
  content: "\f14a";
  font-family: "FontAwesome";
  color: var(--sub-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.bequeath_warning_list_item_txt{
  line-height: 1.6;
  text-align: justify;
}
.bequeath_warning_list_item_{

}
.bequeath_warning_list_item_{

}

/* ケース */
.bequeath_cases_list{
}
* + .bequeath_cases_list{
  margin-top: 50px;
}
.bequeath_cases_item{
  width: 100%;
  height: auto;
}
.bequeath_cases_item_inner{
  background: #FFF;
  height: 100%;
  padding: 25px 20px;
}
.bequeath_cases_item_title{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--sub-color);
  margin-bottom: 15px;
}
.bequeath_cases_item_title:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #1a1a1a;
  margin: 15px auto 0;
}
.bequeath_cases_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

@media (max-width:767px){

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

  /* 遺せるもの */
  .bequeath_property_head{

  }
  * + .bequeath_property_head{
    margin-top: 80px;
  }

  .bequeath_property_head_title{
    margin-bottom: 40px;
  }
  .bequeath_property_head_title_txt{
    font-size: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }
  .bequeath_property_head_title:before,
  .bequeath_property_head_title:after{
    width: 40px;
  }

  .bequeath_property_head_msg{
    /*text-align: center;*/
  }

  .bequeath_property_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .bequeath_property_list{
    margin-top: 50px;
  }
  .bequeath_property_list_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .bequeath_property_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .bequeath_property_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .bequeath_property_list_item_icon{
  }
  .bequeath_property_list_item_txt{
    font-size: 19px;
    margin-top: 10px;
  }

  /* 注意点 */
  .bequeath_warning{
    padding: 30px 50px 60px;
  }
  * + .bequeath_warning{
    margin-top: 50px;
  }
  .bequeath_warning_head{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .bequeath_warning_list{
    margin-left: -47.5px;
    margin-right: -47.5px;
  }
  .bequeath_warning_list_item{
    width: 100%;
    padding: 0 47.5px;
  }
  .bequeath_warning_list_item:nth-child(n+2){
    margin-top: 35px;
  }
  .bequeath_warning_list_item_title{
    font-size: 20px;
    padding-left: 30px;
  }
  .bequeath_warning_list_item_title:before{

  }
  .bequeath_warning_list_item_txt{
    line-height: 2;
  }


  /* ケース */
  .bequeath_cases_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .bequeath_cases_list{
    margin-top: 50px;
  }
  .bequeath_cases_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bequeath_cases_item:nth-child(n+2){
    margin-top: 0;
  }
  .bequeath_cases_item:nth-child(n+3){
    margin-top: 20px;
  }
  .bequeath_cases_item_inner{
    padding: 28px 30px;
  }
  .bequeath_cases_item_title{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .bequeath_cases_item_title:after{
    width: 50px;
    margin: 18px auto 0;
  }
  .bequeath_cases_item_txt{
    font-size: 16px;
    line-height: 2;
  }

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

  /* 遺せるもの */
  .bequeath_property_head{

  }

  .bequeath_property_head_title{
    margin-bottom: 40px;
  }
  .bequeath_property_head_title_txt{
    font-size: 32px;
    margin-left: 30px;
    margin-right: 30px;
  }
  .bequeath_property_head_title:before,
  .bequeath_property_head_title:after{
    width: 40px;
  }

  .bequeath_property_head_msg{
    text-align: center;
  }
  .bequeath_property_head_msg.lg{
    font-size: 18px;
    line-height: 1.888;
  }

  .bequeath_property_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .bequeath_property_list{
    margin-top: 75px;
  }
  .bequeath_property_list_item{
    width: 20%;
    padding: 0 10px;
  }
  .bequeath_property_list_item:nth-child(n+3){
    margin-top: 30px;
  }
  .bequeath_property_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .bequeath_property_list_item:nth-child(n+6){
    margin-top: 30px;
  }
  .bequeath_property_list_item_icon{
  }
  .bequeath_property_list_item_txt{
    /*font-size: 30px;*/
    /*margin-top: 10px;*/
  }
  .bequeath_property_list_item_txt.slim{
    /*font-size: 26px;*/
  }

  /* 注意点 */
  .bequeath_warning{
    padding: 30px 40px 50px;
  }
  * + .bequeath_warning{
    margin-top: 70px;
  }
  .bequeath_warning_head{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .bequeath_warning_list{
    margin-left: -20px;
    margin-right: -20px;
  }
  .bequeath_warning_list_item{
    width: 50%;
    padding: 0 20px;
  }
  .bequeath_warning_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .bequeath_warning_list_item:nth-child(n+3){
    margin-top: 35px;
  }
  .bequeath_warning_list_item_title{
    font-size: 18px;
    padding-left: 30px;
  }
  .bequeath_warning_list_item_title:before{

  }
  .bequeath_warning_list_item_txt{
    line-height: 2;
  }


  /* ケース */
  .bequeath_cases_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .bequeath_cases_list{
    margin-top: 50px;
  }
  .bequeath_cases_item{
    width: 33.333%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .bequeath_cases_item:nth-child(n+3){
    margin-top: 0;
  }
  .bequeath_cases_item:nth-child(n+4){
    margin-top: 30px;
  }
  .bequeath_cases_item_inner{
    padding: 28px 30px ;
  }
  .bequeath_cases_item_title{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .bequeath_cases_item_title:after{
    width: 50px;
    margin: 18px auto 0;
  }
  .bequeath_cases_item_txt{
  }
}
@media (min-width:1200px){

  .bequeath_property_list_item_txt{
    font-size: 22px;
    margin-top: 10px;
  }
  .bequeath_property_list_item_txt.slim{
    font-size: 20px;
  }
  .bequeath_cases_item_title{
    font-size: 22px;
    margin-bottom: 15px;
  }

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

  .bequeath_warning{
    padding: 30px 70px 60px;
  }
  .bequeath_warning_list_item_title{
    font-size: 20px;
    padding-left: 30px;
  }

  .bequeath_property_head_title_txt{
    font-size: 40px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (min-width:1720px){

  .bequeath_property_list{
    margin-left: -25px;
    margin-right: -25px;
  }
  * + .bequeath_property_list{
    margin-top: 75px;
  }
  .bequeath_property_list_item{
    width: 20%;
    padding: 0 25px;
  }
  
  .bequeath_property_list_item_txt{
    font-size: 30px;
    margin-top: 10px;
  }
  .bequeath_property_list_item_txt.slim{
    font-size: 26px;
  }
  
  /* 注意点 */
  .bequeath_warning{
    padding: 30px 125px 60px;
  }
  * + .bequeath_warning{
    margin-top: 70px;
  }
  .bequeath_warning_head{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .bequeath_warning_list{
    margin-left: -47.5px;
    margin-right: -47.5px;
  }
  .bequeath_warning_list_item{
    width: 50%;
    padding: 0 47.5px;
  }


}





/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .cmn_cat_nav{
  margin-top: 50px;
}
.cmn_cat_nav_item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4285;
}
.cmn_cat_nav_item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 45px;
  padding: 2px 10px 3px;
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
  color: #FFF;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}


.cmn_cat_nav_item a:after{
  content: "\f105";
  font-size: 10px;
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav_item.on a,
.cmn_cat_nav_item a:hover{
  background: #FFF;
  color: var(--sub-color);
}
.cmn_cat_nav_item a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 .cmn_cat_nav_item a{
  background: #e0dbd0;
}
.cmn_cat_nav.color2 .cmn_cat_nav_item a:hover{
  background: #FFF;
  color: #181818;
}

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav_item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav_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{
    margin-top: 80px;
  }
  .cmn_cat_nav_item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 16px;
  }
  .cmn_cat_nav_item a{

  }

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

}




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

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

}
.pg_reason .section.sec1{
  
}
.pg_reason .section.sec2{
  padding-top: 50px;
  position: relative;
  z-index: 1;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_service .section.sec1{
    padding-bottom: 0;
  }
}
@media (min-width:768px){

  .pg_reason .section.sec1{

  }
  .pg_reason .section.sec2{
    padding-top: 75px;
  }

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


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

  .pg_reason .section.sec2{
    padding-top: 135px;
  }

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


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


}

/* メイン部分 */

/* プラン */
.service_plan{

}
* + .service_plan{
  margin-top: 50px;
}

.table_rows.service_tbl{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.service_tbl .table_rows_th,
.service_tbl .table_rows_td{
  border: 1px solid #CCC;
}
.service_tbl .table_rows_th{
  background:#f5f5f7;
  text-align: center;
}
.service_tbl .table_rows_td{
  background: #FFF;
  padding-left: 15px;
}

.service_tbl .table_rows_th:nth-child(2){
  width: 120px;
}

/* サポート */
.service_support{
  display: flex;
  flex-wrap: wrap;
  margin-left: -32.5px;
  margin-right: -32.5px;
}
* + .service_support{
  margin-top: 50px;
}
.service_support_item{
  width: 100%;
  padding: 0 32.5px;
}
.service_support_item:nth-child(n+2){
  margin-top: 30px;
}
.service_support_item_img{
  margin-bottom: 15px;
}
.service_support_item_img.img_fit:before{
  padding-top: 71.429%;
}
.service_support_item_title{
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
.service_support_item_txt{

}
.service_support_item_price{
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #99b297;
  margin-top: 5px;
}

@media (max-width:767px){

  .service_tbl .table_rows_th,
  .service_tbl .table_rows_td{
    font-size: 14px;
    padding: 5px 10px;
  }

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


  /* プラン */
  .service_plan{

  }
  * + .service_plan{
    margin-top: 50px;
  }

  .table_rows.service_tbl{
    /*width: 850px;*/
  }
  .service_tbl .table_rows_th,
  .service_tbl .table_rows_td{
  }
  .service_tbl .table_rows_th{
  }
  .service_tbl .table_rows_td{
    padding-left: 30px;
  }

  .service_tbl .table_rows_th:nth-child(2){
    width: 245px;
  }


  /* サポート */
  .service_support{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .service_support{
    margin-top: 50px;
  }
  .service_support_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .service_support_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_support_item:nth-child(n+4){
    margin-top: 50px;
  }
  .service_support_item_img{
    margin-bottom: 28px;
  }
  .service_support_item_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .service_support_item_txt{

  }
  .service_support_item_price{
    font-size: 16px;
    margin-top: 5px;
  }


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


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

  .table_rows.service_tbl{
    width: 850px;
  }
  
  /* サポート */
  .service_support{
    margin-left: -32.5px;
    margin-right: -32.5px;
  }
  * + .service_support{
    margin-top: 50px;
  }
  .service_support_item{
    width: 33.333%;
    padding: 0 32.5px;
  }
  .service_support_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_support_item:nth-child(n+4){
    margin-top: 50px;
  }
  .service_support_item_img{
    margin-bottom: 28px;
  }
  .service_support_item_title{
    font-size: 26px;
    margin-bottom: 10px;
  }
  .service_support_item_txt{

  }
  .service_support_item_price{
    font-size: 20px;
    margin-top: 5px;
  }

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


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

  /* サポート */
  .service_support{
    width: 1465px;
    margin-left: -32.5px;
    margin-right: -32.5px;
    margin-left: auto;
    margin-right: auto;
  }
  
   .service_support_item_title{
    font-size: 30px;
    margin-bottom: 10px;
  }

}




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

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

}
.pg_inherit .section.sec1{

}
.pg_inherit .section.sec2{
  padding-top: 65px;
  position: relative;
  z-index: 1;
}
.pg_inherit .section.sec3{
  
}
.pg_inherit .section.sec4{
  margin-top: 30px;
  padding-top: 85px;
  padding-bottom: 95px;
}
.pg_inherit .section.sec5{
  padding-top: 50px;
}



@media (max-width:374px){

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

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

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

  .pg_inherit .section.sec1{

  }
  .pg_inherit .section.sec2{
    padding-top: 75px;
  }
  .pg_inherit .section.sec3{

  }
  .pg_inherit .section.sec4{
    margin-top: 50px;
    padding-top: 85px;
    padding-bottom: 95px;
  }
  .pg_inherit .section.sec5{
    padding-top: 100px;
  }


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


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

  .pg_inherit .section.sec1{

  }
  .pg_inherit .section.sec2{
    padding-top: 130px;
  }
  .pg_inherit .section.sec3{

  }
  .pg_inherit .section.sec4{
    margin-top: 190px;
    padding-top: 85px;
    padding-bottom: 95px;
  }
  .pg_inherit .section.sec5{
    padding-top: 195px;
  }
  
  .pg_inherit .section.sec5 .tt2{
    margin-bottom: 55px;
  }

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


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


}

/* メイン部分 */


/* 範囲 */
.inherit_range{
  background: #FFF;
  padding: 50px 20px 30px;
}
* + .inherit_range{
  margin-top: 50px;
}
.inherit_range_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
* + .inherit_range_list{
  margin-top: 30px;
}
.inherit_range_list_item{
  width: 50%;
  padding: 0 10px;
}
.inherit_range_list_item:nth-child(n+3){
  margin-top: 30px;
}
.inherit_range_list_item_img{
  
}
.inherit_range_list_item_img.img_fit:before{
  padding-top: 78.87%;
}
.inherit_range_list_item_txt{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 5px;
}


@media (max-width:767px){

}
@media (min-width:768px){
  
  /* 範囲 */
  .inherit_range{
    padding: 50px 30px 30px;
  }
  * + .inherit_range{
    margin-top: 50px;
  }
  .inherit_range_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .inherit_range_list{
    margin-top: 30px;
  }
  
  .inherit_range_list_item{
    width: 25%;
  }
  .inherit_range_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .inherit_range_list_item:nth-child(n+5){
    margin-top: 30px;
  }
  .inherit_range_list_item_txt{
    font-size: 20px;
  }
  
}
@media (min-width:1024px){


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

  /* 範囲 */
  .inherit_range{
    padding: 50px 110px;
  }
  * + .inherit_range{
    margin-top: 50px;
  }
  .inherit_range_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .inherit_range_list{
    margin-top: 50px;
  }
  
  .inherit_range_list_item{
    width: 25%;
  }
  .inherit_range_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .inherit_range_list_item:nth-child(n+5){
    margin-top: 30px;
  }
  .inherit_range_list_item_txt{
    font-size: 26px;
  }
  
}

@media (min-width:1470px){


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


}

.scroll_container{
  margin-top: 35px;
}

/* 選ばれる理由 */
.home_thought_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.home_thought_head .tt2{
  margin-bottom: 0;
}
.home_thought_head .read_more{
  margin-top: 0;
}

.home_thought{

}
* + .home_thought{
  margin-top: 35px;
}
.home_thought_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_thought_item + .home_thought_item{
  margin-top: 50px;
}
.home_thought_item_box1{
  width: 100%;
  padding-top: 0;
}
.home_thought_item_box2{
  width: 100%;
  margin-top: 30px;
}
.home_thought_item_img{
  overflow: hidden;
}
.home_thought_item_img.img_fit:before{
  padding-top: 68.37%;
}
.home_thought_item_label{

}
.home_thought_item_num{
  display: inline-block;
  text-align: center;
  font-size: 85px;
  font-family: var(--font-mincho);
  line-height: 1;
  color: var(--sub-color);
  margin-bottom: 20px;
  text-align: left;
}
.home_thought_item_num_txt1{
  font-size: 0.25em;
  line-height: 0.39;
  letter-spacing: 0;
}
.home_thought_item_num_txt2{
  line-height: 0.39;
  letter-spacing: 0;
  margin-top: 5px;
}
/*.home_thought_item_num:after{
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #555;
  margin: 0 auto 0;
}*/
.home_thought_item_title{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.home_thought_item_title:after{
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background: var(--sub-color);
  margin-top: 15px;
}

.home_thought_item_txt{
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
}

@media (max-width:374px){

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

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


  .home_thought_head{
    
  }
  .home_thought_head .read_more{
    margin-left: auto;
    margin-right: auto;
  }
  .scroll_container{
    margin-top: 0;
  }

}
@media (min-width:768px){
  
  .scroll_container{
    margin-top: 35px;
  }
  
  /* 選ばれる理由 */
  .home_thought_head{
    margin-bottom: 50px;
  }

  /* 選ばれる理由 */
  .home_thought{

  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
  }
  .home_thought_item + .home_thought_item{
    margin-top: 70px;
  }
  .home_thought_item_box1{
    /*width: 57.20%;*/
    /*padding-top: 12px;*/
  }
  .home_thought_item_box2{
    /*width: 40.09%;*/
    margin-top: 40px;
  }
  .home_thought_item_img{
  }
  .home_thought_item_num{
    font-size: 100px;
    margin-bottom: 20px;
  }
  .home_thought_item_title{
    font-size: 26px;
    margin-bottom: 10px;
  }
  .home_thought_item_title:after{
  }
  .home_thought_item_txt{
    font-size: 16px;
    line-height: 2.1875;
  }



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


  .scroll{
    padding-top: 100px;
    position: relative;
    z-index: 1;
   
  }
  .scroll:after{
    content: "";
    background-size:  auto 500px;
    background-repeat: repeat;
    background-image: url(/system_panel/uploads/images/dots_bg1.jpg);
    width: 100vw;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .scroll_container{
    position: relative;
    z-index: 1;
    /*height: 500px;*/
    height: calc(100vh - 100px - 103px - 35px);
    margin-top: 35px;
  }
  .scroll_wrap{
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-right: 200px;
  }

  .gjs-dashed .scroll_container{
    height: auto;
  }
  .gjs-dashed .scroll_wrap{
    display: block;
    position: static;
    height: auto;
  }
  .gjs-dashed .home_thought_item + .home_thought_item{
    margin-top: 50px;
    margin-left: 0;
  }

  .scroll_nav{
    display: flex;
    margin-top: -50px;
  }
  .scroll_nav_item{
    width: 100%;
    height: 2px;
    background: #555555;
  }
  .scroll_nav_item.active{
    background: #8a691e;
  }

  /* 選ばれる理由 */
  .home_thought{

  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
    width: 930px;
    width: 1100px;
  }
  .home_thought_item + .home_thought_item{
    margin-top: 0;
    margin-left: 60px;

  }
  .home_thought_item:last-child{

  }
  .home_thought_item_box1{
    width: 56.79%;
    width: 53%;
    padding-top: 12px;
  }
  .home_thought_item_box2{
    width: 36.89%;
    width: 37.89%;
    width: 42%;
    margin-top: 0;
  }
  .home_thought_item_num{
    font-size: 100px;
  }
  .home_thought_item_title{
    font-size: 24px;
    margin-bottom: 10px;
  }

  .pg_home .section.sec4.sec_green{
    background-attachment: fixed;
  }
  .pg_home .section.sec4.sec_green:before{
    margin-bottom: 0;
  }
  .pg_home .section.sec4.sec_green:after{
    margin-top: 0;
  }
  
}

@media (min-width:1200px){


  .scroll{
    padding-top: 175px;
    padding-bottom: 180px;
    padding-top: 100px;
    padding-bottom: 0;
  }
  .scroll_container{
    /*height: 500px;*/
    height: calc(100vh - 175px - 110px - 35px);
    margin-top: 58px;
  }

  /* 選ばれる理由 */
  .home_thought{

  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
    width: 1030px;
  }
  .home_thought_item_box1{
    /*width: 57.20%;*/
    /*padding-top: 12px;*/
  }
  .home_thought_item_box2{
    width: 40.09%;
  }
  .home_thought_item_num{
    font-size: 140px;
    margin-bottom: 45px;
  }
  .home_thought_item_title{
    font-size: 24px;
    /*margin-bottom: 12px;*/
  }


}
@media (min-width:1470px){
  .scroll_wrap{
    padding-right: 500px;
    padding-right: 0;
  }
  
  .home_thought_item_box1{
    width: 57.20%;
    /*padding-top: 12px;*/
  }
  .home_thought_item_box2{
    width: 40.09%;
  }
  
  .home_thought_item_title{
    font-size: 30px;
    /*margin-bottom: 12px;*/
  }
}
@media (min-width:1720px){
  .home_thought_item_num{
    font-size: 200px;
    margin-bottom: 45px;
  }
}

/* 縦幅がせまいノートPC */
@media (min-width:1200px) and (max-height:650px){
  
  .home_thought_item{
    width: 900px;
  }
  .home_thought_item_num{
    font-size: 100px;
    margin-bottom: 20px;
  }
  .home_thought_item_box1{
    width: 33%;
  }
  .home_thought_item_box2{
    width: 60%;
  }
}






/* 縦パターン */
.home_thought.tate{

}
.home_thought.tate .home_thought_item{
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home_thought.tate .home_thought_item{

}
.home_thought.tate .home_thought_item + .home_thought_item{
  margin-top: 50px;
  margin-left: 0;
}

.home_thought.tate .home_thought_item:nth-child(odd){
  z-index: 2;
}
.home_thought.tate .home_thought_item:nth-child(even){
  
}
.home_thought.tate .home_thought_item:before{
  width: 100vw;
  height: 706px;
  background-image: url(/system_panel/uploads/images/bg_green.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home_thought.tate .home_thought_item:nth-child(even):before{
  content: "";
}

.home_thought.tate .home_thought_item_img.img_fit:before{
  padding-top: 63.22%;
}

.home_thought_item_head{
  display: flex;
  align-items: flex-end;
  align-items: center;
  margin-bottom: 30px;
}
.home_thought_item_head .home_thought_item_num{
  margin-bottom: 0;
  margin-right: 30px;
}
.home_thought_item_head .home_thought_item_title{
  margin-bottom: 0;
}
.home_thought_item_head .home_thought_item_title:before{
  display: none;
}
.home_thought_item_head .home_thought_item_title:after{
  display: none;
}


@media (min-width:768px){

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

  .home_thought.tate .home_thought_item + .home_thought_item{
    margin-top: 100px;
    margin-left: 0;
  }
  .home_thought.tate .home_thought_item:nth-child(odd) .home_thought_item_box1{
    order: 2;
  }
  .home_thought.tate .home_thought_item:nth-child(odd) .home_thought_item_box2{
    order: 1;
  }
  .home_thought.tate .home_thought_item:nth-child(even) .home_thought_item_box1{

  }
  .home_thought.tate .home_thought_item:nth-child(even) .home_thought_item_box2{

  }

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

}
@media (min-width:1470px){
  
  .home_thought.tate .home_thought_item_box1{
    width: 50.98%;
    /*padding-top: 12px;*/
  }
  .home_thought.tate .home_thought_item_box2{
    width: 40.09%;
    width: 45%;
  }
  .home_thought.tate .home_thought_item_title{
    font-size: 32px;
  }
}
@media (min-width:1720px){
  
  .home_thought.tate .home_thought_item_box1{
    width: 50.98%;
    /*padding-top: 12px;*/
  }
  .home_thought.tate .home_thought_item_box2{
    width: 40.09%;
    width: 42%;
  }
  .home_thought.tate .home_thought_item_title{
    font-size: 40px;
  }
}

@media (max-width:1023px){
  .home_thought.tate .home_thought_item:nth-child(even):before{
    
  }
  .home_thought.tate .home_thought_item:before{
    content: "";
    background-size: auto 100%;
    height: 300px;
    transform: translate(-50%, 0);
    top: auto;
    bottom: 0;
  }
}
@media (max-width:767px){
  .home_thought.tate .home_thought_item:before{
    height: 400px;
  }
}

/**/

/*******************************
*　記事一覧(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){


}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.line_pop{
 display:none;
}
.line_pop_item_txt{
  text-align:center;
}
@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){


}
