@charset "UTF-8";

:root {
  --txt-color: #181818;
  --main-color: #8f8667;
  --sub-color: #79682d;
  /*--sub-color: #e7161a;*/
  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
  --margin-for-device-side-w: -15px;
  
  overflow-x: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--txt-color);
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@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){
  :root {
    /*--margin-for-device-side: calc(555px - 50vw);*/
    --margin-for-device-side-w: calc(625px - 50vw);
  }
}
@media (min-width:1450px){
  :root {
    /*--margin-for-device-side: calc(555px - 50vw);*/
    --margin-for-device-side-w: calc(685px - 50vw);
  }
}
@media (min-width:1700px){
  :root {
    --margin-for-device-side-w: calc(800px - 50vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/




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

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

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

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

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

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

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

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

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

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

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


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

/* 指定デバイスで改行を消す */
@media (min-width: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{
  transition: 0.2s all;
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  transition: 0.2s all;
/*  background: #FFF;*/
}

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

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

/* TELボタン */
.hdr_tel{
  color: #FFF;
}
.hdr_tel_txt1{
  font-size: 32px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}
.hdr_tel_txt1 p{
  letter-spacing: 0.12em;
}
.hdr_tel_txt2{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}
.hdr_tel_txt2 p{
  letter-spacing: 0;
}
.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;
}*/
.hdr_contact .read_more{
  margin: 0;
}
.hdr_contact .read_more a{
  width: 180px;
}


/* 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;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }
  
  .hdr_tel{
    display: none;
  }
  .hdr_contact{
    display: none;
  }
}
@media (min-width:768px){
  
  /* ヘッダー固定 */
  body{
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .hdr1{
    padding: 15px 15px;
  }
  
  /* ロゴ */
  .hdr_logo img{
    width: 180px;
  }
  
  /* ヘッダースリム */
  .header{
  }
  .header.slim{
    background: var(--main-color);
  }
  
  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 20px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  
  
}
@media (min-width:1024px){
  
  .hdr1{
    
  }
  
  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{
    
  }
  
  /* TELボタン */
  .hdr_tel{

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
 
  .hdr_tel_txt1{
    font-size: 24px;
  }
  
}

@media (min-width:1470px){
  .hdr1{
    padding: 20px 15px 10px 50px;
  }
  .header.slim .hdr1{
    padding-top: 10px;
  }
  
  .hdr_tel_txt1{
    font-size: 32px;
  }
  .hdr_contact .read_more a{
    width: 265px;
  }
}
@media (min-width:1720px){
  .hdr1{
    padding: 50px 15px 10px 50px;
  }
  
}


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

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  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;
}


/* MVサブ */
.mv_sub{
  position: relative;
  z-index: 1;
  /*height: 120px;*/
}
.mv_sub_img{
  position: absolute;
  z-index: 1;
}
.mv_sub_img.img_fit:before{
  display: none;
  padding-top: 0;
}
.mv_sub_img.pos1{
  aspect-ratio: 445 / 220;
  /*height: 78.57%;*/
  /*right: calc(50% + 15px);*/
  z-index: 2;
}
.mv_sub_img.pos2{
  aspect-ratio: 520 / 280;
  /*height: 100%;*/
  /*left: calc(50% + 15px);*/
  z-index: 1;
}

@media (max-width:767px){
  
  .mv_sub{
    height: auto;
  }
  
  .mv_sub{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .mv_sub_img{
    
    position: relative;
  }
  .mv_sub_img.pos1{
    width: 45%;
    /*left: 0;*/
    /*right: auto;*/
  }
  .mv_sub_img.pos2{
    width: 52%;
    /*right: 0;*/
    /*left: auto;*/
    /*margin-left: auto;*/
  }

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

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

  /* MVテキスト */
  .mv_txt{
    
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }
  
  /* MVサブ */
  .mv_sub{
    height: 150px;
  }
  .mv_sub_img.pos1{
    right: calc(50% + 25px);
    height: 78.57%;
  }
  .mv_sub_img.pos2{
    left: calc(50% + 50px);
    height: 100%;
  }
  
}
@media (min-width:1024px){
  

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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }
  
  /* MVサブ */
  .mv_sub{
    height: 200px;
  }
  
  
}
@media (min-width:1200px){

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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
  }
  .mv_txt_p2{
  }
  
  /* MVサブ */
  .mv_sub{
    height: 200px;
  }
  .mv_sub_img.pos1{
    right: calc(50% + 15px);
  }
  .mv_sub_img.pos2{
    left: calc(50% + 175px);
  }
  
}
@media (min-width:1470px){
  
  /* MVサブ */
  .mv_sub{
    height: 200px;
  }
  .mv_sub_img.pos1{
    right: calc(50% + 15px);
  }
  .mv_sub_img.pos2{
    left: calc(50% + 175px);
  }
  
}
@media (min-width:1520px){

  /* MV */
  .mv_img.img_fit:before{
    padding-top: 900px;
  }
  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
  }
  .mv_txt_p2{
  }
  
  /* MVサブ */
  .mv_sub{
    height: 250px;
  }
  
}
@media (min-width:1720px){

  /* MV */
  .mv_img.img_fit:before{
    padding-top: 900px;
  }
  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
  }
  .mv_txt_p2{
  }
  
  /* MVサブ */
  .mv_sub{
    height: 280px;
  }
  
}


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

/* サイドバー */
.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;
  }
  
}
@media (min-width:1470px){

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

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

  
}

/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{
  
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_h1{
  font-size: 24px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFF;
}

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

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

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

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

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

  .pg_header{
    margin-bottom: 130px;
  }
  
}






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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  text-align: center;
  border: 0;
  background: none;
  color: #FFF;
  padding: 9px 8px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a:before,
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 0;
  transition: 0.2s all;
}
.read_more a:before{
  inset: 5px 0;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.read_more a:after{
  inset: 0 4px;
  border-left: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
}
.read_more a:hover:before,
.read_more a:hover:after{
  border-color: var(--sub-color);
  transform: scale(1.01);
}


.read_more a p{
  background: var(--main-color);
  padding: 10px 15px 11px;
  position: relative;
  z-index: 1;
  /*letter-spacing: 0;*/
}
.read_more a p:after{
  content: "→";
  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 p{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover p:after{
  margin-right: -5px;
}

.read_more a.wh{
  color: var(--txt-color);
}
.read_more a.wh p{
  background-color: #FFF;
}
.read_more a.wh:before,
.read_more a.wh:after{
  border-color: #FFF;
}
.read_more a.wh:hover p{
  /*color: var(--sub-color);*/
  background-color: var(--sub-color);
}
.read_more a.wh:hover:before,
.read_more a.wh:hover:after{
  border-color: var(--sub-color);
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 11px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--sub-color);
}
.tt2_ja{
  font-size: 22px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.444;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.tt2_en + .tt2_ja{
  margin-top: 5px;
}
.tt2.tate{
  text-align: left;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  
}
.tt2.tate .tt2_ja{
  margin-top: 0;
}
.tt2.tate .tt2_en + .tt2_ja{
  margin-right: 5px;
}
.tt2_en + .tt2_ja{
  margin-top: 10px;
}

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




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

}
.container.wide{

}
.container.wide{

}

.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
* + .cmn_txt{
  margin-top: 20px;
}

@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;
  }
  
}
@media (min-width:768px){
  
  .anchor{
    top: -150px;
  }
  
  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 285px;
    font-size: 14px;
    margin: 5px 5px;
  }
  .read_more a p{
    padding: 10px 20px 11px;
  }
  .read_more a p:after{
    right: 18px;
  }
  .read_more a:hover p:after{
    margin-right: -5px;
  }
  
  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_ja{
    font-size: 30px;
    line-height: 1.444;
  }
  .tt2.tate .tt2_ja{
    
  }
  .tt2.left{
    text-align: left;
  }
  
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  * + .cmn_txt{
    margin-top: 40px;
  }

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

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

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

  

}

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }
  
}
@media (min-width:1450px){
  
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }
  
}

@media (min-width:1700px){
  .container.wide{
    max-width: calc(1600px + 100px);
    padding-left: 50px;
    padding-right: 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);
}


.body_side_parts1,
.body_side_parts2{
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.body_side_parts1{
  bottom: 0;
  left: 0;
}
.body_side_parts2{
  top: -28px;
  right: -115px;
}
.body_side_parts1{
  width: 150px;
  aspect-ratio: 581 / 264;
  background-image: url(/system_panel/uploads/images/body_side_parts1.png);
  background-position: left top;
  bottom: 0;
  left: -50px;
}
.body_side_parts2{
  width: 200px;
  aspect-ratio: 526 / 242;
  background-image: url(/system_panel/uploads/images/body_side_parts2.png);
  background-position: right top;
  top: 0;
  right: -50px;
}



/*******************************
*　
********************************/
.pg_about{
  overflow: hidden;
}
.pg_about .section.sec1{
  padding-top: 30px;
}
.pg_about .section.sec2{
  z-index: 2;
}
.pg_about .section.sec3{
  background-color: #dfdcd0;
}
.pg_about .section.sec3:before{
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.pg_about .section.sec4{
  
}
.pg_about .section.sec5{
  
}


.pg_about .section.sec1 .body_side_parts2{
  width: 150px;
  top: 0;
  right: -50px;
}
.pg_about .section.sec2 .body_side_parts1{
  width: 200px;
  bottom: -40px;
  left: -50px;
}

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

  }
  .pg_about .section.sec1{
    
  }
  .pg_about .section.sec2{
    /*margin-top: -188px;*/
  }
  .pg_about .section.sec3{
    
  }
  .pg_about .section.sec3:before{
    height: 200px;
  }
  .pg_about .section.sec4{
    
  }
  .pg_about .section.sec5{
    
  }
  
  .pg_about .section.sec1 .body_side_parts2{
    width: 300px;
    top: -28px;
    right: -115px;
  }
  .pg_about .section.sec2 .body_side_parts1{
    width: 300px;
    bottom: -100px;
    left: -100px;
  }
  
}
@media (min-width:1024px){
  .pg_about .section.sec1{
    
  }
  .pg_about .section.sec2{
    margin-top: -100px;
  }
  .pg_about .section.sec3{
    
  }
  
  .pg_about .section.sec4{
    
  }
  .pg_about .section.sec5{
    
  }
}
@media (min-width:1200px){
  
  .pg_about .section.sec1 .body_side_parts2{
    width: 400px;
    top: 0;
    right: -115px;
  }
  .pg_about .section.sec2 .body_side_parts1{
    width: 400px;
    bottom: -160px;
    left: -100px;
  }
  
}
@media (min-width:1470px){
  .pg_about .section.sec1{
    
  }
  .pg_about .section.sec2{
    margin-top: -188px;
    margin-bottom: 75px;
  }
  .pg_about .section.sec3{
    padding-bottom: 200px;
  }
  .pg_about .section.sec3:before{
    height: 250px;
  }
  .pg_about .section.sec4{
    
  }
  .pg_about .section.sec5{
    
  }
  
  
  
}
@media (min-width:1520px){
  
}
@media (min-width:1700px){
  
  .pg_about .section.sec1 .body_side_parts2{
    width: 526px;
    top: 0;
    right: -115px;
  }
  .pg_about .section.sec2 .body_side_parts1{
    width: 694px;
    bottom: -192px;
    left: -200px;
  }
  
}

/* 想い */
.about_omoi{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_omoi_box1{
  /*width: 310px;*/
}
.about_omoi_box2{
  /*width: calc(100% - 310px - 95px);*/
  margin-bottom: 30px;
}
.about_omoi_box3{
  /*width: 1100px;*/
}
.about_omoi_box4{
  /*width: calc(100% - 1100px - 65px);*/
}
.about_omoi_box4_inner{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: auto;
}

.about_omoi_img1{
  
}
.about_omoi_img1.img_fit:before{
  padding-top: 91.48%;
}
.about_omoi_img2{
  
}
.about_omoi_img2.img_fit:before{
  padding-top: 57.27%;
}
.about_omoi_img3{
  margin-top: 90px;
}
.about_omoi_img3.img_fit:before{
  padding-top: 67.22%;
}

.about_omoi_title1{
  
}
.about_omoi_title1.tt2{
  margin-bottom: 0;
}
.about_omoi_title1 .tt2_en{
  font-size: 15px;
}
.about_omoi_title1 .tt2_ja{
  line-height: 1.25;
  margin-top: 8px;
}
.about_omoi_txt1{
  margin-top: 20px;
}
.about_omoi_title2{
  font-size: 22px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.about_omoi_txt2{
  margin-top: 0;
  margin-right: 80px;
  
}


/* コンテンツ1 */
.about_contents1{
  
}
.about_contents1_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents1_row + .about_contents1_row{
  margin-top: 50px;
}
.about_contents1_box1{
  width: 100%;
}
.about_contents1_box2{
  width: 100%;
  margin-top: 20px;
}
.about_contents1_img{
  
}
.about_contents1_img.img_fit:before{
  padding-top: 61.74%;
}
.about_contents1_title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: var(--sub-color);
}
.about_contents1_title:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: currentColor;
  margin-top: 15px;
}
.about_contents1_txt{
  margin-top: 15px;
}

/* 心 */
.about_kokoro{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.about_kokoro_txt{
  font-size: 16px;
  line-height: 1.9;
  /*line-height: 3.75;*/
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.about_kokoro_txt p{
  letter-spacing: 0.2em;
}

/* コンテンツ2 */
.about_contents2{
  
}
.about_contents2_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.about_contents2_row + .about_contents2_row{
  margin-top: 70px;
}
.about_contents2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.about_contents2_box2{
  width: 100%;
  background: #FFF;
  padding: 20px 20px;
  position: relative;
  z-index: 2;
}
.about_contents2_img{
  
}
.about_contents2_img.img_fit:before{
  padding-top: 63.63%;
}
.about_contents2_num{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  color: var(--sub-color);
  margin-bottom: 10px;
}
.about_contents2_num p{
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.about_contents2_num:after{
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-left: 10px;
}
.about_contents2_title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: var(--sub-color);
}
.about_contents2_txt{
  margin-top: 10px;
}
.about_contents2_txt2{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  z-index: 2;
}
.about_contents2_txt2 p{
  background: #FFF;
  
  letter-spacing: 0.1em;
}
.about_contents2_txt2 p+p{
  /*margin-top: 30px;*/
  /*margin-right: 20px;*/
}

@media (max-width:374px){

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

}

@media (max-width:1023px){

  /* 想い */
  .about_omoi{
    align-items: flex-start;
  }
  .about_omoi_box1,
  /*.about_omoi_box2,*/
  /*.about_omoi_box3,*/
  .about_omoi_box4{
    display: contents;
  }
  
  .about_omoi_box2{
    order: 1;
    width: 100%;
    padding-top: 0;
  }
  .about_omoi_box3{
    order: 6;
    width: 100%;
    margin-top: 30px;
  }
  .about_omoi_title1.tt2{
    text-align: left;
  }
  
  .about_omoi_img1{
    order: 2;
    width: 48%;
  }
  .about_omoi_img3{
    order: 3;
    width: 48%;
    margin-top: 120px;
  }
  .about_omoi_box4_inner{
    order: 5;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .about_omoi_txt2{
    margin-right: 30px;
    height: 250px;
  }
}
@media (max-width:767px){
  
  .about_omoi_img3{
    order: 3;
    width: 48%;
    margin-top: 70px;
  }
  
  .about_contents2_box2{
    margin: -50px 10px 0;
  }
  
  .about_contents2_txt2{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    
    
    font-family: "Shippori Mincho", serif;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
  }
  .about_contents2_txt2 p{
    background: #FFF;
    padding: 2px 0px 3px 10px;
    letter-spacing: 0.1em;
  }
  .about_contents2_txt2 p+p{
    margin-top: 10px;
    margin-left: 30px;
  }
  
  .about_contents2_txt2{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    top: -30px;
    left: 5px;
  }
  .about_contents2_txt2 p{
    white-space: nowrap;
    padding: 5px 3px 5px 2px;
  }
  .about_contents2_txt2 p+p{
    margin-left: 0;
    margin-right: 5px;
  }
  .about_contents2_box2{
    margin-top: 30px;
  }
  .about_contents2_img.img_fit:before{
    padding-top: 68%;
  }
}

@media (min-width:768px){
  
  
  /* 心 */
  .about_kokoro{
  }
  .about_kokoro_txt{
    font-size: 16px;
    line-height: 3;
  }
  .about_kokoro_txt p{
    letter-spacing: 0.2em;
  }
  
  
  
  
  /* コンテンツ1 */
  
  .about_contents1_title{
    font-size: 24px;
  }
  
  /* コンテンツ2 */
  .about_contents2{

  }
  .about_contents2_row{
    justify-content: space-between;
  }
  .about_contents2_row + .about_contents2_row{
    margin-top: 120px;
  }
  .about_contents2_box1{
  }
  .about_contents2_box2{
    margin: -100px 10px 0 70px;
    padding: 30px 20px;
  }
  
  .about_contents2_num{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about_contents2_title{
    font-size: 24px;
  }
  .about_contents2_txt{
    margin-top: 15px;
  }
  .about_contents2_txt2{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 18px;
    top: -55px;
    left: 15px;
  }
  .about_contents2_txt2 p{
    padding: 12px 4px 0 3px;
  }
  .about_contents2_txt2 p+p{
    margin-top: 38px;
    margin-right: 20px;
    padding-top: 10px;
  }
  
  
  
}
@media (min-width:1024px){

  
  
  /* 想い */
  .about_omoi{
  }
  .about_omoi_box1{
    width: 250px;
  }
  .about_omoi_box2{
    width: calc(100% - 250px - 35px);
    padding-top: 5px;
    margin-bottom: 50px;
  }
  .about_omoi_box3{
    width: 500px;
  }
  .about_omoi_box4{
    width: calc(100% - 500px - 35px);
  }
  .about_omoi_box4_inner{
  }

  .about_omoi_img1{

  }
  .about_omoi_img1{
    margin-left: var(--margin-for-device-side-w);
  }
  .about_omoi_img2{
    
  }
  .about_omoi_img3{
    margin-top: 35px;
    margin-right: var(--margin-for-device-side-w);
  }

  .about_omoi_title1{

  }
  .about_omoi_title1 .tt2_en{
    font-size: 20px;
  }
  .about_omoi_title1 .tt2_ja{
    line-height: 1.25;
    margin-top: 8px;
  }
  .about_omoi_txt1{
    margin-top: 38px;
  }
  .about_omoi_title2{
    font-size: 26px;
  }
  .about_omoi_txt2{
    margin-right: 35px;
    height: 300px;
  }
  
  
  /* コンテンツ1 */
  .about_contents1{

  }
  * + .about_contents1{
    margin-top: 10px;
  }
  .about_contents1_row{
    align-items: center;
  }
  .about_contents1_row + .about_contents1_row{
    margin-top: 70px;
  }
  .about_contents1_box1{
    width: 46%;
  }
  .about_contents1_box2{
    width: 50%;
    margin-top: 15px;
  }
  .about_contents1_title{
    font-size: 24px;
  }
  .about_contents1_title:after{
    width: 65px;
    margin-top: 10px;
  }
  .about_contents1_txt{
    margin-top: 15px;
  }
  .about_contents1_row:nth-child(odd) .about_contents1_box1{
    
  }
  .about_contents1_row:nth-child(odd) .about_contents1_box2{
    
  }
  .about_contents1_row:nth-child(even) .about_contents1_box1{
    order: 2;
  }
  .about_contents1_row:nth-child(even) .about_contents1_box2{
    order: 1;
  }
  
  /* 心 */
  .about_kokoro{
  }
  .about_kokoro_txt{
    line-height: 3.75;
  }
  
  

  /* コンテンツ2 */
  .about_contents2{

  }
  .about_contents2_row{
    justify-content: space-between;
  }
  .about_contents2_row + .about_contents2_row{
    margin-top: 120px;
  }
  .about_contents2_box1{
    width: 55%;
  }
  .about_contents2_box2{
    width: 50.93%;
    width: 55%;
    min-height: 77%;
    margin: 0;
    padding: 30px 20px;
    position: absolute;
    z-index: 2;
    top: 50%;
    
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .about_contents2_num{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .about_contents2_num:after{
    margin-left: 10px;
  }
  .about_contents2_title{
    font-size: 24px;
  }
  .about_contents2_txt{
    margin-top: 15px;
  }
  .about_contents2_txt2{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 18px;
    top: -55px;
    
  }
  .about_contents2_txt2 p{
    padding: 12px 4px 0 3px;
  }
  .about_contents2_txt2 p+p{
    margin-top: 38px;
    margin-right: 20px;
    padding-top: 10px;
  }

  .about_contents2_row:nth-child(odd) .about_contents2_box1{
    
  }
  .about_contents2_row:nth-child(odd) .about_contents2_box2{
    right: 0;
  }
  
  .about_contents2_row:nth-child(even) .about_contents2_box1{
    order: 2;
    margin-left: auto;
  }
  .about_contents2_row:nth-child(even) .about_contents2_box2{
    order: 1;
    left: 0;
  }
  
  .about_contents2_row:nth-child(odd) .about_contents2_txt2{
    left: 30px;
  }
  .about_contents2_row:nth-child(even) .about_contents2_txt2{
    right: 30px;
  }
  
}
@media (min-width:1200px){

  /* 想い */
  .about_omoi_box1{
    width: 250px;
  }
  .about_omoi_box2{
    width: calc(100% - 250px - 35px);
  }
  .about_omoi_box3{
    width: 700px;
  }
  .about_omoi_box4{
    width: calc(100% - 700px - 35px);
  }
  
  /* コンテンツ1 */
  .about_contents1{

  }
  * + .about_contents1{
    margin-top: 170px;
  }

}
@media (min-width:1470px){
  
  
  
  /* 想い */
  .about_omoi{
  }
  .about_omoi_box1{
    width: 310px;
  }
  .about_omoi_box2{
    width: calc(100% - 310px - 95px);
    padding-top: 5px;
    margin-bottom: 120px;
  }
  .about_omoi_box3{
    width: 900px;
  }
  .about_omoi_box4{
    width: calc(100% - 900px - 65px);
  }
  .about_omoi_box4_inner{
    padding-right: 27px;
  }

  .about_omoi_img1{

  }
  .about_omoi_img2{

  }
  .about_omoi_img3{
    margin-top: 90px;
  }

  .about_omoi_title1{

  }
  .about_omoi_title1 .tt2_en{
    font-size: 20px;
  }
  .about_omoi_title1 .tt2_ja{
    line-height: 1.25;
    margin-top: 8px;
  }
  .about_omoi_txt1{
    margin-top: 38px;
  }
  .about_omoi_title2{
    font-size: 36px;
  }
  .about_omoi_txt2{
    margin-right: 80px;
    height: auto;
  }
  
  /* コンテンツ1 */
  .about_contents1{

  }
  .about_contents1_row{
    align-items: center;
  }
  .about_contents1_row + .about_contents1_row{
    margin-top: 100px;
  }
  .about_contents1_box1{
    /*width: 46.56%;*/
  }
  .about_contents1_box2{
    /*width: 45%;*/
    margin-top: 15px;
  }
  .about_contents1_title{
    font-size: 36px;
  }
  .about_contents1_title:after{
    width: 65px;
    margin-top: 20px;
  }
  .about_contents1_txt{
    margin-top: 25px;
  }
  
  /* コンテンツ2 */
  .about_contents2{
    
  }
  * + .about_contents2{
    margin-top: 100px;
  }
  .about_contents2_row{
  }
  .about_contents2_row + .about_contents2_row{
    margin-top: 70px;
  }
  .about_contents2_box1{
    width: 55%;
  }
  .about_contents2_box2{
    width: 50.93%;
    min-height: 77%;
    padding: 45px 48px;
  }
  .about_contents2_num{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .about_contents2_num:after{
    margin-left: 10px;
  }
  .about_contents2_title{
    font-size: 30px;
  }
  .about_contents2_txt{
    margin-top: 30px;
  }
  .about_contents2_txt2{
    font-size: 20px;
    top: -55px;
    
  }
  /*.about_contents2_txt2 p{
    padding: 12px 4px 0 3px;
  }
  .about_contents2_txt2 p+p{
    margin-top: 38px;
    margin-right: 20px;
  }*/

}
@media (min-width:1520px){
  
  
  
}
@media (min-width:1720px){
  
   /* 想い */
  .about_omoi{
  }
  .about_omoi_box1{
    width: 310px;
  }
  .about_omoi_box2{
    width: calc(100% - 310px - 95px);
  }
  .about_omoi_box3{
    width: 1100px;
  }
  .about_omoi_box4{
    width: calc(100% - 1100px - 65px);
  }
  
  /* コンテンツ1 */
  .about_contents1{

  }
  .about_contents1_row{
    align-items: center;
  }
  .about_contents1_row + .about_contents1_row{
    margin-top: 100px;
  }
  .about_contents1_box1{
    width: 46.56%;
  }
  .about_contents1_box2{
    width: 45%;
    margin-top: 15px;
  }
  
  /* コンテンツ2 */
  .about_contents2{

  }
  .about_contents2_row{
  }
  .about_contents2_row + .about_contents2_row{
    margin-top: 200px;
  }
  .about_contents2_box1{
    width: 55%;
  }
  .about_contents2_box2{
    width: 50.93%;
    min-height: 77%;
    padding: 45px 48px;
  }
  .about_contents2_num{
    font-size: 24px;
    margin-bottom: 35px;
  }
  .about_contents2_num:after{
    margin-left: 10px;
  }
  .about_contents2_title{
    font-size: 36px;
  }
  .about_contents2_txt{
    margin-top: 30px;
  }
  .about_contents2_txt2{
    font-size: 28px;
    top: -55px;
    
  }
  /*.about_contents2_txt2 p{
    padding: 12px 4px 0 3px;
  }
  .about_contents2_txt2 p+p{
    margin-top: 38px;
    margin-right: 20px;
  }*/
  
}


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


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



/*******************************
*　
********************************/
.pg_reform{

}
.pg_reform .section.sec1{
  
}
.pg_reform .section.sec2{
  padding-top: 0;
}
.pg_reform .section.sec3{
  padding-top: 0;
}
.pg_reform .section.sec4{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_reform .section.sec5{
  background: #dfdcd0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_reform .section.sec5 .halfUp{
  /*position: relative;*/
  z-index: 1;
  /*top: -60px;*/
  margin-bottom: 30px;
}
.pg_reform .section.sec5 .halfUp .tt2_ja{
  margin-top: 0;
}
.pg_reform .section.sec6{
  padding-top: 50px;
}
.pg_reform .section.sec7{
  background: #fff;
  padding-top: 0;
}
.pg_reform .section.sec8{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_reform .section.sec9{
  background: #dfdcd0;
  padding-top: 0;
  padding-bottom: 50px;
}

.pg_reform .section.sec9:before{
  content: "";
  background: #FFF;
  width: 100%;
  height: 200px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}


.pg_reform .section.sec4 .body_side_parts2{
  width: 150px;
  top: -40px;
  right: -50px;
}
.pg_reform .section.sec6 .body_side_parts1{
  width: 200px;
  top: 20px;
  left: -50px;
}
.pg_reform .section.sec8 .body_side_parts2{
  width: 150px;
  top: auto;
  bottom: 0;
  right: -50px;
}

@media (min-width:768px){
  

  .pg_reform .section.sec1{

  }
  .pg_reform .section.sec2{
    padding-top: 0;
  }
  .pg_reform .section.sec3{
    padding-top: 30px;
  }
  .pg_reform .section.sec4{
    padding-top: 0;
    padding-bottom: 150px;
  }
  .pg_reform .section.sec5{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_reform .section.sec5 .halfUp{
    position: absolute;
    top: -40px;
    margin-bottom: 0;
  }
  .pg_reform .section.sec5 .halfUp .tt2_ja{
    margin-top: 0;
  }
  .pg_reform .section.sec6{
    padding-top: 75px;
  }
  .pg_reform .section.sec7{
    padding-top: 30px;
  }
  .pg_reform .section.sec8{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_reform .section.sec9{
    padding-top: 0;
    padding-bottom: 70px;
  }

  
  .pg_reform .section.sec4 .body_side_parts2{
    width: 300px;
    top: -28px;
    right: -115px;
  }
  .pg_reform .section.sec6 .body_side_parts1{
    width: 300px;
    top: 30px;
    left: -100px;
  }
  .pg_reform .section.sec8 .body_side_parts2{
    width: 300px;
    bottom: 0;
    right: -115px;
  }
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
  .pg_reform .section.sec1{

  }
  .pg_reform .section.sec2{
    padding-top: 0;
  }
  .pg_reform .section.sec3{
    padding-top: 100px;
  }
  .pg_reform .section.sec4{
    padding-top: 0;
    padding-bottom: 275px;
  }
  .pg_reform .section.sec5{
    padding-top: 105px;
    padding-bottom: 135px;
  }
  .pg_reform .section.sec5 .halfUp{
    top: -60px;
    margin-bottom: 0;
  }
  .pg_reform .section.sec5 .halfUp .tt2_ja{
    margin-top: 0;
  }
  .pg_reform .section.sec6{
    padding-top: 155px;
  }
  .pg_reform .section.sec7{
    padding-top: 100px;
  }
  .pg_reform .section.sec8{
    padding-top: 95px;
    padding-bottom: 150px;
  }
  .pg_reform .section.sec9{
    padding-top: 0;
    padding-bottom: 100px;
  }
  
  .pg_reform .section.sec4 .body_side_parts2{
    width: 400px;
    top: -50px;
    right: -115px;
  }
  .pg_reform .section.sec6 .body_side_parts1{
    width: 400px;
    top: 30px;
    left: -100px;
  }
  .pg_reform .section.sec8 .body_side_parts2{
    width: 400px;
    bottom: 0;
    right: -115px;
  }
  
}
@media (min-width:1470px){
  
  
  
}
@media (min-width:1520px){
  
}
@media (min-width:1700px){
  
  .pg_reform .section.sec1{

  }
  .pg_reform .section.sec2{
    padding-top: 0;
  }
  .pg_reform .section.sec3{
    padding-top: 100px;
  }
  .pg_reform .section.sec4{
    padding-top: 0;
    padding-bottom: 275px;
  }
  .pg_reform .section.sec5{
    padding-top: 105px;
    padding-bottom: 135px;
  }
  .pg_reform .section.sec5 .halfUp{
    top: -60px;
    margin-bottom: 0;
  }
  .pg_reform .section.sec5 .halfUp .tt2_ja{
    margin-top: 0;
  }
  .pg_reform .section.sec6{
    padding-top: 155px;
  }
  .pg_reform .section.sec7{
    padding-top: 100px;
  }
  .pg_reform .section.sec8{
    padding-top: 95px;
    padding-bottom: 150px;
  }
  .pg_reform .section.sec9{
    padding-top: 0;
    padding-bottom: 100px;
  }
  
  .pg_reform .section.sec4 .body_side_parts2{
    width: 526px;
    top: -70px;
    right: -115px;
  }
  .pg_reform .section.sec6 .body_side_parts1{
    width: 581px;
    top: 75px;
    left: -175px;
  }
  .pg_reform .section.sec8 .body_side_parts2{
    width: 526px;
    bottom: 0;
    right: -115px;
  }
}












/* 概要 */
.reform_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reform_about_box1{
  width: 48%;
  order: 2;
}
.reform_about_box2{
  width: 100%;
  padding-top: 0;
  margin-bottom: 20px;
  order: 1;
}
.reform_about_box3{
  width: 48%;
  padding-top: 0;
  order: 2;
}
.reform_about_head{
  margin-bottom: 0;
}
.reform_about_head_txt1{
  
}
.reform_about_head_txt2{
  
}
.reform_about_txt{
  text-align: justify;
}

.reform_about_img1{
  
}
.reform_about_img1.img_fit:before{
  padding-top: 110.5%;
}
.reform_about_img2{
  
}
.reform_about_img2.img_fit:before{
  padding-top: 110.5%;
}

/* 悩み */
.reform_nayami{
  
}
.reform_nayami_head{
  font-size: 24px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 20px;
}
.reform_nayami_list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  
}
.reform_nayami_list_item{
  width: 100%;
  padding: 0 5px;
}
.reform_nayami_list_item:nth-child(n+2){
  margin-top: 10px;
}
.reform_nayami_list_item_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #a19677;
  background: #FFF;
  padding: 2px;
  text-align: center;
}
.reform_nayami_list_item_txt{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #dfdcd0;
  padding: 10px;
  width: 100%;
  min-height: 100px;
  line-height: 1.59;
}
.reform_nayami_list_item_txt p{
  letter-spacing: 0.14em;
}

/* セクション概要 */
.reform_sec_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reform_sec_about_box1{
  width: 100%;
}
.reform_sec_about_box2{
  width: 100%;
  padding-top: 20px;
}
.reform_sec_about_inner{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 auto;
}
.reform_sec_about_img.img_fit:before{
  padding-top: 57.69%;
}
.reform_sec_about_title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 2.03;
  letter-spacing: 0.14em;
  margin-left: 15px;
}
.reform_sec_about_txt{
  font-size: 16px;
  line-height: 1.875;
}



/* 共通クラス */
.reform_contents_box1{
  
}
.reform_contents_box2{
  
}
.reform_contents_img{
  
}
.reform_contents_img.img:before{
  
}
.reform_contents_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.reform_contents_txt{
  font-size: 16px;
  line-height:2.25;
  text-align: justify;
}

/* リフォーム内容 */
.reform_contents1{
  
}
.reform_contents1_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.reform_contents1_row + .reform_contents1_row{
  margin-top: 30px;
}
.reform_contents1 .reform_contents_box1{
  width: 100%;
}
.reform_contents1 .reform_contents_box2{
  width: 100%;
  padding: 15px 15px;
  background: #FFF;
}
.reform_contents1 .reform_contents_title{
  font-size: 20px;
  border-bottom: 1px solid #a19677;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.reform_contents1 .reform_contents_txt{
  
}
.reform_contents1 .reform_contents_img.img_fit:before{
  padding-top: 61.14%;
}

/* リノベーション内容 */
.reform_contents2{
  
}
.reform_contents2_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reform_contents2_row + .reform_contents2_row{
  margin-top: 30px;
}
.reform_contents2_row .anchor{
  width: 100%;
}
.reform_contents2 .reform_contents_box1{
  width: 100%;
}
.reform_contents2 .reform_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.reform_contents2 .reform_contents_title_sub{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reform_contents2 .reform_contents_title_sub_txt{
  font-size: 16px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
  color: #79682d;
}
.reform_contents2 .reform_contents_title_sub:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-left: 15px;
}
.reform_contents2 .reform_contents_title{
  font-size: 20px;
  margin-bottom: 10px;
}
.reform_contents2 .reform_contents_txt{
  
}
.reform_contents2 .reform_contents_img.img_fit:before{
  padding-top: 61.14%;
}

/* エクステリア内容 */
.reform_contents3{
  
}
.reform_contents3_row{
  
}

@media (max-width:374px){

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

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


  /* 悩み */
  .reform_nayami{

  }
  .reform_nayami_head{
    font-size: 32px;
    margin-bottom: 20px;
  }
  .reform_nayami_list{
    margin: 0 -10px;
  }
  .reform_nayami_list_item{
    width: 50%;
    padding: 0 10px;
  }
  .reform_nayami_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .reform_nayami_list_item:nth-child(n+3){
    margin-top: 20px;
  }
  .reform_nayami_list_item_inner{
  }
  .reform_nayami_list_item_txt{
    min-height: 100px;
    font-size: 18px;
  }
  
  .reform_sec_about_txt{
    font-size: 16px;
    line-height: 2.25;
  }
  
  .reform_contents1 .reform_contents_box2{
    padding: 25px;
  }
  .reform_contents1 .reform_contents_title{
    font-size: 26px;
  }

  .reform_sec_about_title{
    font-size: 24px;
  }
  .reform_contents1 .reform_contents_img.img_fit:before{
    padding-top: 50%;
  }
  
  .reform_contents2_row + .reform_contents2_row{
    margin-top: 50px;
  }
  .reform_contents2 .reform_contents_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media (min-width:1024px){

  /* 概要 */
  .reform_about{
  }
  .reform_about_box1{
    width: 150px;
    order: 1;
  }
  .reform_about_box2{
    width: calc(100% - 150px - 150px);
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
    order: 2;
  }
  .reform_about_box3{
    width: 150px;
    padding-top: 120px;
    order: 3;
  }
  .reform_about_head{
    margin-bottom: 0;
  }
  .reform_about_head_txt1{

  }
  .reform_about_head_txt2{

  }
  .reform_about_txt{
    text-align: center;
  }
  .reform_about_img1{
    margin-left: var(--margin-for-device-side-w);
  }
  .reform_about_img2{
    margin-right: var(--margin-for-device-side-w);
  }
  
  /* 悩み */
  .reform_nayami{

  }
  .reform_nayami_head{
    font-size:26px;
    margin-bottom: 25px;
  }
  .reform_nayami_list{
    margin: 0 -10px;
  }
  .reform_nayami_list_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .reform_nayami_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .reform_nayami_list_item:nth-child(n+4){
    margin-top: 27px;
  }
  .reform_nayami_list_item_inner{
  }
  .reform_nayami_list_item_txt{
    min-height: 175px;
    /*font-size: 22px;*/
  }
  
  
  /* セクション概要 */
  .reform_sec_about{
    padding-top: 20px;
  }
  .reform_sec_about_box1{
    width: calc(100% - 450px);
  }
  .reform_sec_about_box2{
    width: 450px;
    padding-top: 30px;
  }
  .reform_sec_about_inner{
  }
  .reform_sec_about_title{
    font-size: 26px;
    line-height: 2.03;
    margin-left: 20px;
  }
  .reform_sec_about_txt{
    line-height: 2.25;
  }

  .reform_sec_about_img{
    margin-left: var(--margin-for-device-side-w);
  }
  
  .reform_sec_about.rvs .reform_sec_about_box1{
    order: 2;
  }
  .reform_sec_about.rvs .reform_sec_about_box2{
    order: 1;
  }
  .reform_sec_about.rvs .reform_sec_about_img{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }
  

  /* リフォーム内容 */
  .reform_contents1{

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

  }
  .reform_contents1_row + .reform_contents1_row{
    margin-top: 50px;
  }
  .reform_contents1 .reform_contents_box1{
    width: 49.06%;
  }
  .reform_contents1 .reform_contents_box2{
    width: 50.94%;
    height: 500px;
    padding: 60px 45px 30px 50px;
    padding: 30px 30px;
    position: relative;
    z-index: 1;
  }
  .reform_contents1 .reform_contents_title{
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .reform_contents1 .reform_contents_txt{

  }
  .reform_contents1 .reform_contents_img.img_fit{
    width: 100%;
    height: 100%;
  }
  .reform_contents1 .reform_contents_img.img_fit:before{
    /*padding-top: 61.14%;*/
    padding-top: 0;
  }
  
  .reform_contents1_row:nth-child(odd) .reform_contents_box1{
    
  }
  .reform_contents1_row:nth-child(odd) .reform_contents_box2{
    
  }
  .reform_contents1_row:nth-child(even) .reform_contents_box1{
    order: 2;
  }
  .reform_contents1_row:nth-child(even) .reform_contents_box2{
    order: 1;
  }


  /* リノベーション内容 */
  .reform_contents2{

  }
  .reform_contents2_row{
    align-items: center;
  }
  .reform_contents2_row + .reform_contents2_row{
    margin-top: 70px;
  }
  .reform_contents2 .reform_contents_box1{
    width: 43.125%;
    width: 43%;
  }
  .reform_contents2 .reform_contents_box2{
    width: 50.9375%;
    width: 52%;
    margin-top: 0;
  }
  .reform_contents2 .reform_contents_title_sub{
    margin-bottom: 10px;
  }
  .reform_contents2 .reform_contents_title_sub_txt{
    font-size: 16px;
  }
  .reform_contents2 .reform_contents_title_sub:after{
    margin-left: 15px;
  }
  .reform_contents2 .reform_contents_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .reform_contents2 .reform_contents_txt{
    
  }
  
  .reform_contents2_row:nth-child(odd) .reform_contents_box1{
    
  }
  .reform_contents2_row:nth-child(odd) .reform_contents_box2{
    
  }
  .reform_contents2_row:nth-child(even) .reform_contents_box1{
    order: 2;
  }
  .reform_contents2_row:nth-child(even) .reform_contents_box2{
    order: 1;
  }
  
}
@media (min-width:1200px){

   /* 概要 */
  .reform_about{
  }
  .reform_about_box1{
    width: 245px;
  }
  .reform_about_box2{
    width: calc(100% - 245px - 245px);
    padding-top: 50px;
  }
  .reform_about_box3{
    width: 245px;
    padding-top: 120px;
  }
  .reform_about_head{
    margin-bottom: 0;
  }
  .reform_about_head_txt1{

  }
  .reform_about_head_txt2{

  }
  
    .reform_contents1 .reform_contents_img.img_fit:before{
    /*padding-top: 61.14%;*/
    padding-top: 0;
  }
  
  
  /* 悩み */
  .reform_nayami{

  }
  .reform_nayami_head{
    font-size: 32px;
    margin-bottom: 35px;
  }
  .reform_nayami_list_item_txt{
    font-size: 22px;
  }
  
  /* リフォーム内容 */
  .reform_contents1{

  }
  .reform_contents1_row{
    
  }
  .reform_contents1_row + .reform_contents1_row{
    /*margin-top: 100px;*/
  }
  .reform_contents1 .reform_contents_box1{
    /*width: 49.06%;*/
  }
  .reform_contents1 .reform_contents_box2{
    /*width: 50.94%;*/
    height: 480px;
    padding: 60px 45px 30px 50px;
  }
  .reform_contents1 .reform_contents_title{
    font-size: 28px;
    padding-bottom: 22px;
    margin-bottom: 20px;
  }
  .reform_contents1 .reform_contents_txt{

  }
  
  /* リノベーション内容 */
  .reform_contents2{

  }
  .reform_contents2_row{
    
  }
  .reform_contents2_row + .reform_contents2_row{
    margin-top: 80px;
  }
  .reform_contents2 .reform_contents_box1{
    width: 43.125%;
  }
  .reform_contents2 .reform_contents_box2{
    width: 50.9375%;
    padding-top: 0;
  }
  .reform_contents2 .reform_contents_title_sub{
    margin-bottom: 20px;
  }
  .reform_contents2 .reform_contents_title_sub_txt{
    font-size: 20px;
  }
  .reform_contents2 .reform_contents_title_sub:after{
    margin-left: 15px;
  }
  .reform_contents2 .reform_contents_title{
    font-size: 28px;
    margin-bottom: 30px;
  }
  .reform_contents2 .reform_contents_txt{
    line-height: 2.5;
  }
  
}
@media (min-width:1470px){
  
}
@media (min-width:1520px){
  
}
@media (min-width:1720px){
 
  /* セクション概要 */
  .reform_sec_about{
    padding-top: 40px;
  }
  .reform_sec_about_box1{
    width: calc(100% - 720px);
  }
  .reform_sec_about_box2{
    width: 720px;
    padding-top: 110px;
    padding-top: 75px;
  }
  .reform_sec_about_inner{
  }
  .reform_sec_about_title{
    font-size: 32px;
    margin-left: 70px;
  }
  .reform_sec_about_txt{
  }
  
  /* リフォーム内容 */
  .reform_contents1{

  }
  .reform_contents1_row{
    
  }
  .reform_contents1_row + .reform_contents1_row{
    margin-top: 100px;
  }
  .reform_contents1 .reform_contents_box1{
    /*width: 49.06%;*/
  }
  .reform_contents1 .reform_contents_box2{
    /*width: 50.94%;*/
    height: 480px;
    padding: 60px 45px 30px 50px;
  }
  .reform_contents1 .reform_contents_title{
    font-size: 32px;
    padding-bottom: 22px;
    margin-bottom: 20px;
  }
  .reform_contents1 .reform_contents_txt{

  }
  
}

.pg_custom{
  overflow-x: hidden;
  overflow-y: clip;
}

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



/* カテゴリボタン */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 30px;
}
.cmn_cat_nav_item{
  width: 100%;
  padding: 0 5px;
}
.cmn_cat_nav_item:nth-child(n+2){
  margin-top: 10px;
}

.cmn_cat_nav_item_a{
  display: block;
  background: #8f8667;
  border: 1px solid #8f8667;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 5px 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cmn_cat_nav_item_a p{
  letter-spacing: 0.075em;
}
.cmn_cat_nav_item_a:after{
  content: "→";
  /*width: 7px;
  height: 7px;
  background: #FFF;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);*/
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 16px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.cmn_cat_nav_item_a:hover{
  background: #fff;
  color: #8f8667;
}

.cmn_cat_nav.col4 .cmn_cat_nav_item{
  width: 50%;
}
.cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+2){
  margin-top: 0;
}
.cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
  margin-top: 10px;
}



@media (max-width:374px){

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

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

  .cmn_cat_nav_item_a:after{
    display: none;
  }
  
}
@media (min-width:768px){
  
  /* カテゴリボタン */
  .cmn_cat_nav{
    margin: 0 -5px 30px;
  }
  .cmn_cat_nav_item{
    width: 50%;
    padding: 0 5px;
  }
  
  .cmn_cat_nav_item_a{
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .cmn_cat_nav_item_a p{
    letter-spacing: 0.2em;
  }
  .cmn_cat_nav_item_a:after{

  }

  .cmn_cat_nav.col2 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 10px;
  }
  
  .cmn_cat_nav.col3 .cmn_cat_nav_item{
    width: 33.333%;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+4){
    margin-top: 10px;
  }

  .cmn_cat_nav.col4 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 10px;
  }

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

  /* カテゴリボタン */
  .cmn_cat_nav{
    margin: 0 -10px 30px;
  }
  .cmn_cat_nav_item{
    width: 50%;
    padding: 0 10px;
  }
  .cmn_cat_nav_item_a{
    padding: 13px 5px;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 15px;
  }
  
  .cmn_cat_nav.col3 .cmn_cat_nav_item{
    width: 33.333%;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col3 .cmn_cat_nav_item:nth-child(n+4){
    margin-top: 10px;
  }

  .cmn_cat_nav.col4 .cmn_cat_nav_item{
    width: 25%;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 0;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+5){
    margin-top: 20px;
  }
  

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

  /* カテゴリボタン */
  .cmn_cat_nav{
    margin: 0 -15px 30px;
  }
  .cmn_cat_nav_item{
    width: 50%;
    padding: 0 15px;
  }
  .cmn_cat_nav_item_a{
    font-size: 15px;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item{
    width: 50%;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_cat_nav.col2 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 20px;
  }

  .cmn_cat_nav.col4 .cmn_cat_nav_item{
    width: 25%;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+3){
    margin-top: 0;
  }
  .cmn_cat_nav.col4 .cmn_cat_nav_item:nth-child(n+5){
    margin-top: 20px;
  }
  

}
@media (min-width:1470px){
  
  .tt2 + .cmn_cat_nav{
    padding-top: 20px;
  }
}
@media (min-width:1520px){
  
}
@media (min-width:1720px){
  
}







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


}


.pagetop a{
  /*display: inline-block !important;*/
  color: var(--sub-color) !important;
}