@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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


/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  padding: 10px;
}
.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;
  }
  .hdr_logo img{
    width: auto;
  }

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 37px 31px 37px 29px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }


  .hdr1{
    padding: 0 15px 0;
  }

  .hdr_contact_btn{
    width: 190px;
    background: #f7d357;

    border: 1px solid transparent;
    border-radius: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    margin-left: 65px;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
  }
  .hdr_contact_btn p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    font-size: 19px;
    margin-right: 10px;
  }
  .hdr_contact_btn:hover{
    background: #FFF;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 31px 20px 29px;
  }
  .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: 48px;
  }

  /* ロゴ */
  .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: 48px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

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

}
.mv_txt_p2{

}

.mv_img_box{
  width:100%;
  border-radius: 5px 0 0 5px;
}
.mv_txt_box{
  position: absolute;
  top: 67%;
  top: 55%;
  left: 3.1%;
  transform: translateY(-50%);
  z-index: 2;
}
.mv_txt_single{
  font-size: 30px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mv_txt_single p{
  letter-spacing: 0;
  line-height: 1;
  /*background: #fff;*/
  /*box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);*/
  padding: 9px 10px 10px;

  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255,255,255,1),
    0 0 12px rgba(255,255,255,0.95),
    0 0 20px rgba(255,255,255,0.9);
  text-shadow:
    0 0 12px rgba(255,255,255,1),
    0 0 60px rgba(255,255,255,1),
    0 0 21px rgba(255,255,255,0.95),
    0 0 28px rgba(255,255,255,0.9);
}
.mv_txt_single p strong{
  font-weight: 700;
  color: var(--main-color);
}

.mv_txt_single p:nth-child(n+2){
  margin-top: 5px;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

@media (max-width:767px){
  .mv_img_box{
    width:100%;
    border-radius: 0;
  }

  .mv_txt_single{
    font-size: 22px;
  }
  .mv_txt_single p{
    letter-spacing: 0;
    line-height: 1;
    /*background: #fff;*/
    /*box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);*/
    padding: 9px 10px 10px;
    padding: 3px 10px 8px;

    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(255,255,255,1),
      0 0 12px rgba(255,255,255,0.95),
      0 0 20px rgba(255,255,255,0.9);
    text-shadow:
      0 0 10px rgba(255,255,255,1),
      0 0 30px rgba(255,255,255,1),
      0 0 20px rgba(255,255,255,1),
      0 0 42px rgba(255,255,255,1);
  }
}
@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

  .mv_img_box{
    width: 93.75%;
    margin-left: auto;
    margin-right: 0;
  }
  .mv_txt_box{
    left: 8%;
  }
  .mv_txt_single{
    font-size: 35px;
  }
  .mv_txt_single p{
    padding: 15px 19px 17px;
    padding: 10px 19px 10px;
  }
  .mv_txt_single p:nth-child(n+2){
    margin-top: 15px;
  }
}
@media (min-width:1024px){


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

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

  }
  .mv_txt_p2{

  }

  .mv_img_box{

  }
  .mv_txt_box{

  }
  .mv_txt_single{
    font-size: 50px;
  }
  .mv_txt_single p{
    padding: 15px 19px 17px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 800px;
    padding-top: calc(100vh - 134px);
  }

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

  }
  .mv_txt_p2{

  }

  .mv_img_box{

  }
  .mv_txt_box{
    top: 68%;
    left: 7.8%;
  }
  .mv_txt_single{
    font-size: 60px;
  }
  .mv_txt_single p{
    padding: 15px 19px 17px;
  }
}
@media (min-width: 1470px) {

}
@media (min-width: 1720px) {
  .mv_txt_box {
    top: 75.5%;
    left: 7.8%;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img.img_fit:before{
  padding-top: 180px;
}
.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: 32px;
  font-weight: 700;
  color: #FFF;
}

.pg_header_h1{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: inline-block;
  background: #fff;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);
  top: -20px;
  position: relative;
  z-index: 1;
  padding: 5px 17px;
}



@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_h1{
    font-size: 28px;
    margin-top: -65px;
    top: auto;
    top: -7px;
    padding: 12px 35px;
  }

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

  .pg_header_title_txt{

  }

  .pg_header_h1{
    font-size: 36px;
    margin-top: -57px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 144px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 480px;
  }

  .pg_header_title_txt{

  }

  .pg_header_h1{
    font-size: 42px;
    padding: 11px 55px 16px 30px;
  }
}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #00aeef;
  color: #fff;
  padding: 7px;
}
.ftr_copy a:hover{
  color: rgba(255, 255, 255, 0.6);
}
/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #00aeef;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #00aeef;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_box_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_img:before{
  padding-top: 650px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}
.ftr_contact_box1 .content_desc{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
  color: #fff;
}
.ftr_contact_box2_item_tt{
  position: relative;
  text-align: center;
}
.ftr_contact_box2_item_tt:after{

}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(/system_panel/uploads/images/tel.png);
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;
  background-image: url(/system_panel/uploads/images/mail.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_link{
  margin-top: 10px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box2_ite_tel1 a:hover{
  color: var(--main-color);
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 210px;
  background: #fec752;
  color: #181818;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 23.5px;
  border: 1px solid transparent;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1:hover{
  background: #fff;
  color: var(--main-color);
  border: 1px solid #8798d4;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  background: #fff;
  padding-top: 80px;
  padding-bottom: 77px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 31px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  letter-spacing: 0.05em;
  color: #181818;
}
.ftr_add_txt a:hover{
  color: var(--main-color);
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_left{
  position: relative;
  padding-right: 9px;
  margin-right: 8px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_links a:hover{
  color: var(--main-color);
}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }
  .ftr_add_item{
    width: 205px;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_box1 .tt2_en{
    font-size: 60px;
  }
  .ftr_contact_img:before{
    padding-top: 600px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 50px 0 71px;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

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

  .ftr_1{

  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 46.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 48%;
  }
  .ftr_1_box2 .ftr_links {
    display: flex;
    flex-wrap: wrap;
    gap:0!important;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_link {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 8px;
    color: #181818;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/rightt.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 140px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 360px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 36.23%;
    width: 38.23%;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 80px;
  }
  .ftr_contact_box1 .content_desc{

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

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

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

  }
  .link_1{

  }

  .ftr_link {
    width: 33.333%;
  }
  .ftr_1_box1{
    width: 33.23%;
  }
  .ftr_1_box2{
    width: 55.39%;
  }

  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1200px){
  .body_home .footer{
    margin-top: 140px;
  }
  .footer{
    margin-top: 200px;
  }
  .ftr_1_box2{
    width: 55.39%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    padding-inline: 30px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}
@media (min-width:1366px){
  .ftr_contact_box2_ite_tel1{
    font-size: 40px;
  }
  .link_1{
    display: block;
    width: 100%;
    max-width: 240px;
  }
}

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


/* テーブル用 */
.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 a:hover{
  color: var(--main-color);
}

.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{
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid transparent;
  background: var(--main-color);
  border-radius: 30px;
  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: "";
  position: absolute;
  width: 19px;
  aspect-ratio:19 / 18;
  background-image: url(/system_panel/uploads/images/arrow-right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  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: #181818;
  background: #f7d357;
}
.read_more a:hover:after{
  margin-right: -5px;
  background-image: url(/system_panel/uploads/images/arrow-right1.png);
}


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


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

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

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

}


@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: -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{
    max-width: 300px;
    font-size: 18px;
    padding: 19px 30px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 30px;
  }

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

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


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

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

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

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


}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
  position: relative;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 300px;
  ;
  aspect-ratio:1002 / 1185;
  background-image: url(/system_panel/uploads/images/bg_logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.pg_home .section.sec2{
  background: #00aeef;
}
.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: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec1:after{
    width:500px;
    top: 0;
    right: 0;
    transform: none;
  }
  .pg_home .section.sec2{
    padding: 83px 0 100px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 60px;
  }
  .pg_home .section.sec5{
    padding-top: 83px;
  }
  .pg_home .section.sec6{
    padding-top: 73px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1:after{
    width: 52.18%;
    top: 0;
    right: 0;
    transform: none;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 135px;
    padding-bottom: 134px;
  }
  .pg_home .section.sec1:after{
    width: 52.18%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .pg_home .section.sec2{

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

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/
/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.home_sec1_box1{
  order: 2;
  width: 100%;
  position: relative;
  margin-top: 50px;
  text-align: center;
}
.home_sec1_box1:before{
  content: "";
  display: block;
  width: 120px;
  aspect-ratio:382 / 350;
  background-image: url(/system_panel/uploads/images/il1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -2.1%;
  bottom: -10.22%;
  ;
  z-index: 2;
}
.home_sec1_box1_img:before{
  padding-top: 75%;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
  /*    margin-top: 30px;;*/
}
.en_sm{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #00aeef;
  margin-bottom: 20px;
}
.sub_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.25em;
  text-align: justify;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}

/*sec2*/
.home_sec2_wrap{
  position: relative;
}
.home_sec2_wrap:after{
  content: "";
  display: block;
  width: 45.26%;
  ;
  aspect-ratio:688 / 167;
  background-image: url(/system_panel/uploads/images/sec2_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}
.section_title{
  display: inline-block;
  ;
  justify-content: center;
  position: relative;
}
.section_title_en{
  font-size: clamp(3.75rem, 2.25rem + 7.5vw, 9.375rem);
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255,255,255,0.2);
}
.section_title_en.gr{
  color: #f2f2f2;
}
.section_title_en.wh{
  color: #fff;
}
.section_title_ja{
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.section_title_ja.wh{
  color: #fff;
}
.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  gap:40px 0;
  margin-top: 36px;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item_inner{
  color: #fff;
}
.home_sec2_item_img:before{
  padding-top: 68.08%;
}
.home_sec2_item_img img{
  border-radius: 5px;
}
.home_sec2_item_tt{
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  position: relative;
  margin-top: 20px;
}
.home_sec2_item_tt:after{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.home_sec2_item_h3{
  font-size: 18px;
  font-weight: 700;
  color: #FFF !important;
  transition: none !important;
}
.home_sec2_item a:hover .home_sec2_item_h3{
  color: #f7d357 !important;
}
.home_sec2_item .content_desc{
  margin-top: 20px;
  color: #FFF !important;
  transition: none !important;
}

/*sec3*/
.home_sec2_sub_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding: 40px 16px;
  margin-top: 40px;
  border-radius: 5px;
}
.home_sec2_sub_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_sec2_sub_box1_tt{
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.home_sec2_sub_box1_tt_ja{
  font-size: 22px;
  font-weight: 700;
  margin-right: 17px;
}
.home_sec2_sub_box1_tt .en_sm{
  margin-bottom: 0;
}
.home_sec2_sub_box1 .content_desc{
  margin-top: 20px;
}
.home_sec2_sub_box1 .read_more{

}
.home_sec2_sub_box1 .read_more a{

}
.home_sec2_sub_box2{
  width: 100%;
  order: 1;
}
.home_sec2_sub_box2_img:before{
  padding-top: 80%;
}

/*sec3*/
.home_sec3_wrap{

}
.section_title.center{
  display: flex;
  justify-content: center
}
.home_sec3_wrap .section_title{

}
.home_sec3_item_tt_sub{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #181818;
  background: #fec752;
  text-align: center;
  border-radius: 5px 0 5px 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
}
.home_sec3_item_tt_sub strong{
  font-size: 18px;
  font-weight: 500;
}
.home_sec3_item_tt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px;
  margin-top: 30px;
}
.home_sec3_item{
  width: 100%;
  background: #fff9ed;
  position: relative;
  border-radius: 5px;
  padding: 60px 16px 30px;
}
.home_sec3_item .content_desc{
  margin-top: 21px;
}

/*sec4*/
.home_sec4_wrap{
  position: relative;
  padding-bottom: 46px;
}
.home_sec4_wrap:before{
  content: "";
  display: block;
  width: 48.22%;
  aspect-ratio:733 / 164;
  background-image: url(/system_panel/uploads/images/p.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10%;
  right:0;
}
.works_slide{
  margin-top: 36px;
  overflow: visible;
  position: relative;
}
.works_slide .webgene-blog{

}
.works_slide .webgene-item{

}
.works_slide .swiper-slide{
  width: 250px;
}
.works_slide .webgene-item a{
  display: block;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.works_slide .webgene-item .box1{

}
.works_slide .webgene-item .img:before{
  padding-top: 70%;
}
.works_slide .webgene-item .box2{
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 16px;
}
.works_slide .webgene-item .box2 .category{
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #000000;
  padding: 2px 12px;
}
.works_slide .webgene-item .box2 .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 18px;
}

.slide-prev,
.slide-next{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 40px;
  aspect-ratio:1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.slide-prev:before,
.slide-next:before{

}
.slide-prev{
  left: calc(50% - 160px);
  background-image: url(/system_panel/uploads/images/arr-le.png);
}
.slide-next{
  right: calc(50% - 160px);
  background-image: url(/system_panel/uploads/images/ar-r.png);
}

/*sec5*/
.home_sec5_box{
  background: #f2f2f2;
  padding: 40px 16px;
  position: relative;
  border-radius: 5px;
}
.home_sec5_box:before{
  content: "";
  display: block;
  width: 52.96%;
  ;
  aspect-ratio:805 / 219;
  background-image: url(/system_panel/uploads/images/il55.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -2%;
  right: 4%;
}
.home_sec5_box .section_title{
  margin-bottom: 80px;
}
.topics_list{

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

}
.topics_list .webgene-item .img:before{
  padding-top: 75%;
}
.topics_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 17px;
}
.topics_list .webgene-item .box2{

}
.topics_list .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  margin-right: 20px;
  margin-bottom: 7px;
}
.topics_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #000000;
  padding: 2px 8px;
}
.topics_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-top: 5px;
}

/*sec6*/
.home_sec6_head{
  margin-bottom: 34px;
}
.news_tt{
  display: flex;
  align-items: baseline;
}
.news_tt .home_sec2_item_outer_en{
  line-height: 1;
  margin-right: 20px;
  color: #8798d4;
}
.t2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec6_head .read_more{

}
.news_list{

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

  position: relative;
}
.news_list .webgene-item a:hover{
  color: var(--main-color);
}

.news_list .webgene-item .box1{
  width: 100%;
}
.news_list .webgene-item .img{
  border-radius: 5px;
}
.news_list .webgene-item .img:before{
  padding-top: 66.666%;
}
.news_list .webgene-item .box2{
  width: 100%;
}
.news_list .webgene-item .meta{
  margin-top: 10px;
  ;
}
.news_list .webgene-item .date{
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  margin-right: 10px;
}
.news_list .webgene-item .category{
  text-align: center;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 14px;
  padding: 2px 19px;
  margin-top: 10px;
}
.news_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top:10px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*sec2*/
  .section_title_en.gr {
    font-size: 80px;
  }
  .home_sec2_item_tt:after{
    width: 28px;
    top: 39%;
  }

  .home_sec4_wrap:before{
    top: auto;
    bottom: 0;
  }

  .home_sec5_box:before{
    width: 47.96%;
    top: 13%;
  }

  .home_sec2_sub_box1_tt{
    flex-wrap: wrap;
  }
  .home_sec2_sub_box{
    margin-top: 30px;
  }

  .pg_home .news_list .webgene-item:nth-child(3),
  .pg_home .news_list .webgene-item:nth-child(4){
    display: none;
  }


}
@media (min-width:768px){
  /*main*/
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    margin-top: 40px;
  }
  .home_sec1_box1:before{
    content: "";
    display: block;
    width: 300px;
    ;
    left: -2.1%;
    bottom: -10.22%;
    ;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    /*  margin-top: 80px;;*/
  }
  .en_sm{
    font-size: 24px;
    margin-bottom: 46px;
  }
  .sub_tt{
    font-size: 28px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{
    margin-top: 41px;
  }
  .home_sec1_box2 .read_more{
    margin-top: 48px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .section_title{

  }
  .section_title_en{

  }
  .section_title_ja{
    font-size: 24px;
  }
  .home_sec2_items{
    gap:30px 55px;
  }
  .home_sec2_item{
    width: calc(50% - 36.666px);
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{
    margin-top: 24px;
    padding-bottom: 15px;
  }
  .home_sec2_item_h3{
    font-size: 24px;
  }
  .home_sec2_item .content_desc{
    margin-top: 27px;
  }

  /*sec3*/
  .home_sec2_sub_box{
    padding: 40px;
    margin-top: 82px;
  }
  .home_sec2_sub_box1{
    margin-top: 40px;
  }
  .home_sec2_sub_box1_tt{

  }
  .home_sec2_sub_box1_tt_ja{
    font-size: 30px;
  }
  .home_sec2_sub_box1_tt .en_sm{

  }
  .home_sec2_sub_box1 .content_desc{
    margin-top: 48px;
  }
  .home_sec2_sub_box1 .read_more{
    margin-top: 53px;
  }
  .home_sec2_sub_box1 .read_more a{
    margin: 5px 5px;
  }
  .home_sec2_sub_box2{

  }
  .home_sec2_sub_box2_img:before{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .section_title.center{

  }
  .home_sec3_wrap .section_title{

  }
  .home_sec3_item_tt_sub{
    font-size: 18px;
  }
  .home_sec3_item_tt_sub strong{
    font-size: 24px;
  }
  .home_sec3_item_tt{
    font-size: 24px;
  }
  .home_sec3_items{

  }
  .home_sec3_item{
    padding: 75px 20px 40px;
  }
  .home_sec3_item .content_desc{

  }
  .home_sec3_wrap .read_more{
    margin-top: 55px;
  }

  /*sec4*/
  .home_sec4_wrap{
    padding-bottom: 0;
  }
  .works_slide{

  }
  .works_slide .webgene-blog{

  }
  .works_slide .webgene-item{

  }
  .works_slide .swiper-slide{
    width: 350px;
  }
  .works_slide .webgene-item a{

  }
  .works_slide .webgene-item .box1{

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

  }
  .works_slide .webgene-item .box2{
    padding: 34px 31px 20px;
  }
  .works_slide .webgene-item .box2 .category{

  }
  .works_slide .webgene-item .box2 .title{
    font-size: 20px;
  }
  .pg_home .section.sec4 .read_more{
    margin-top: 57px;
  }

  .slide-prev,
  .slide-next{
    width: 50px;
  }
  .slide-prev{
    left: calc(50% - 43%);
    left: calc(50% - 170px - 25px);
  }
  .slide-next{
    right: calc(50% - 43%);
    right: calc(50% - 170px - 25px);
  }

  /*sec5*/
  .home_sec5_box{
    padding: 60px 20px;
  }
  .home_sec5_box:before{
    width: 52.96%;
    ;
    top: 5%;
    right: 4%;
  }
  .home_sec5_box .section_title{
    margin-bottom: 37px;
  }
  .topics_list{

  }
  .topics_list .webgene-blog{
    margin-inline:-20px;
  }
  .topics_list .webgene-item{
    width: 50%;
    padding-inline:20px;
  }
  .topics_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .topics_list .webgene-item a{

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

  }
  .topics_list .webgene-item .meta{

  }
  .topics_list .webgene-item .box2{

  }
  .topics_list .webgene-item .date{
    margin-bottom: 0;
  }
  .topics_list .webgene-item .category{

  }
  .topics_list .webgene-item .title{
    font-size: 18px;
  }
  .home_sec5_wrap .read_more{
    margin-top: 50px;
  }

  /*sec6*/
  .home_sec6_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news_tt{

  }
  .news_tt .home_sec2_item_outer_en{

  }
  .t2{
    font-size: 24px;
  }
  .home_sec6_head .read_more{
    margin-top: 0;
  }
  .home_sec6_head .read_more a{
    min-width: 300px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .box1{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .news_list .webgene-item .date{
    font-size: 15px;
  }
  .news_list .webgene-item .category{
    margin-top: 0;
  }
  .news_list .webgene-item .title{

    font-size: 17px;
    margin-top: 20px;
  }
}
@media (min-width:1024px){
  /*main*/
  /*sec1*/
  .home_sec1_box1:before{
    content: "";
    display: block;
    width: 300px;
    ;
    left: -2.1%;
    bottom: -5.22%;
    ;
  }
  /*sec4*/
  .slide-prev,
  .slide-next{
    width: 60px;
  }
  /*sec5*/
  .home_sec5_box:before{
    width: 52.96%;
    ;
    top: 2%;
    right: 4%;
  }

  /*sec6*/
  .home_sec6_head{
    align-items: flex-end;
  }
  .news_tt{

  }
  .news_tt .home_sec2_item_outer_en{

  }
  .t2{

  }
  .home_sec6_head .read_more{

  }
  .news_list{

  }
  .news_list .webgene-blog{
    display: block;
    margin-inline:0;
  }
  .news_list .webgene-item{
    width: 100%;
    padding-inline:0;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item a{
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #000000;
  }
  .news_list .webgene-item a:after {
    content: "";
    position: absolute;
    width: 19px;
    aspect-ratio: 19 / 18;
    background-image: url(/system_panel/uploads/images/rr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.2s all;
  }
  .pg_home .news_list .webgene-item:nth-child(4){
    border-top: 1px solid #000;
  }

  .pg_home .news_list .webgene-item:nth-child(4) .inner{
    display: none;
  }
  .news_list .webgene-item:last-child a{
    border-bottom: 1px solid #000000;
  }
  .news_list .webgene-item .box1{
    width: 11.84%;
  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{
    width: 84.53%;
    display: flex;
    align-items: center;
  }
  .news_list .webgene-item .meta{
    margin-top: 0;
  }
  .news_list .webgene-item .date{
    font-size: 20px;
    width: 170px;
    width: 140px;
  }
  .news_list .webgene-item .category{
    min-width: 100px;
    padding-inline:0;
  }
  .news_list .webgene-item .title{
    font-size: 20px;
    width: calc(100% - 170px - 100px);
    padding: 0 56px;
    margin-top: 0;
  }
}
@media (min-width:1200px){
  /*main*/
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 39.47%;
    order: 1;
    margin-top: 0;
  }
  .home_sec1_box1:before{
    content: "";
    display: block;
    width: 63.66%;
    left: -9.1%;
    bottom: -42.22%;
    ;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 55.26%;
    margin-top: 0;
    order: 2;
  }
  .en_sm{

  }
  .sub_tt{
    font-size: 40px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .section_title{

  }
  .section_title_en{

  }
  .section_title_ja{
    font-size: 40px;
  }
  .home_sec2_items{
    gap:0 55px;
  }
  .home_sec2_item{
    width: calc(33.333% - 36.666px);
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

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

  }

  /*sec3*/
  .home_sec2_sub_box{
    padding: 68px 80px 76px;
  }
  .home_sec2_sub_box1{
    width: 58.82%;
    order: 1;
    margin-top: 0;
  }
  .home_sec2_sub_box1_tt{

  }
  .home_sec2_sub_box1_tt_ja{
    font-size: 40px;
  }
  .home_sec2_sub_box1_tt .en_sm{
    font-size: 20px;
  }
  .home_sec2_sub_box1 .content_desc{

  }
  .home_sec2_sub_box1 .read_more{

  }
  .home_sec2_sub_box1 .read_more a{
    margin: 5px 12px;
  }
  .home_sec2_sub_box2{
    width: 36.76%;
    order: 2;
    padding-top: 14px;
  }
  .home_sec2_sub_box2_img:before{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .section_title.center{

  }
  .home_sec3_wrap .section_title{

  }
  .home_sec3_item_tt_sub{

  }
  .home_sec3_item_tt{
    font-size: 30px;
  }
  .home_sec3_items{

  }
  .home_sec3_item{
    width: calc(50% - 15px);
    padding: 75px 40px 40px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .works_slide{

  }
  .works_slide .webgene-blog{

  }
  .works_slide .webgene-item{

  }
  .works_slide .swiper-slide{
    width: 26.04%;
  }
  .works_slide .webgene-item a{

  }
  .works_slide .webgene-item .box1{

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

  }
  .works_slide .webgene-item .box2{

  }
  .works_slide .webgene-item .box2 .category{

  }
  .works_slide .webgene-item .box2 .title{

  }

  .slide-prev{
    left: calc(50% - 43%);
  }
  .slide-next{
    right: calc(50% - 43%);
  }

  /*sec5*/
  .home_sec5_box{
    padding: 60px 60px 70px;
  }
  .home_sec5_box:before{
    width: 52.96%;
    ;
    top: -2%;
    right: 4%;
  }
  .topics_list{

  }
  .topics_list .webgene-blog{

  }
  .topics_list .webgene-item{
    width: 25%;
  }
  .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .topics_list .webgene-item a{

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

  }
  .topics_list .webgene-item .meta{

  }
  .topics_list .webgene-item .box2{

  }
  .topics_list .webgene-item .date{

  }
  .topics_list .webgene-item .category{

  }
  .topics_list .webgene-item .title{

  }
}
@media (min-width:1470px){
  .slide-prev{
    left: calc(50% - 45%);
  }
  .slide-next{
    right: calc(50% - 43%);
  }

}
@media (min-width:1720px){
  .slide-prev{
    left: calc(50% - 43%);
  }
  .slide-next{
    right: calc(50% - 43%);
  }

}




/*******************************
*　about
********************************/

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

}
.pg_about .section.sec1{
  position: relative;
  padding-bottom: 0;
}

.pg_about .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 0;
  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }

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


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


}

/* メイン部分 */
/*共通見出し*/
.page_header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 60px;
}

.page_header.about:after{
  content: "";
  display: block;
  width: 44.73%;
  aspect-ratio:680 / 122;
  background-image: url(/system_panel/uploads/images/il77.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.page_header_box1{
  width: 100%;
}
.page_header_box1 .en_sm{
  letter-spacing:0;
}
.page_header_box1 .sec_tt{
  font-size: 20px;
  font-weight: 700;

}
.page_header_box1 .sec_tt p{
  letter-spacing: 0.05em;
}
.page_header_box1 .content_desc{
  margin-top: 20px;
}
.page_header_box2{
  width: 100%;
  margin-top: 30px;
}
.page_header_box2_img:before{
  padding-top: 78.46%;
}

/*sec2*/
.about_sec2_cover{
  position: relative;
  padding: 80px 0 40px;
}
.about_sec2_bg{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #00aeef;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
  padding: 11px 20px;
}
.about_sec2_bg:before{
  content: "";
  display: block;
  width: 850px;
  aspect-ratio: 850 / 1042;
  background-image: url(/system_panel/uploads/images/logo_lg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -110px;
  left: 570px;
  z-index: -1;
}
.daihyo_tt{
  position: relative;
}
.daihyo_tt:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 170px;
  transform: translateY(-50%);
}
.daihyo_tt_txt{
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #00aeef;
  position: relative;
  z-index: 1;
  color: #fff;
}
.about_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec2_box1{
  width: 47%;
  order: 2;
}
.about_sec2_box1_img:before{
  padding-top: 126.53%;
}
.about_sec2_box2{
  width: 100%;
  color: #fff;
  order: 1;
  margin-bottom: 40px;
}
.sec_tt{

}
.sec_tt.lg{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42em;
}
.sec_tt p{
  letter-spacing: 0.05em;
}
.about_sec2_box2 .content_desc{
  margin-top: 20px;
}
.about_sec2_box2 .content_desc .name{
  font-size: 18px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.about_sec2_box3{
  width: 47%;
  order: 3;
}
.about_sec2_box3_img:before{
  padding-top: 140%;
}

/*sec3*/
.about_sec3_wrap{

}
.content_desc.center{

}
.about_sec3_wrap .content_desc.center{
  font-size: 17px;
  margin-top: 7px;
}
.about_sec3_wrap .content_desc.center p{
  letter-spacing: 0;
}
.about_sec3_items{
  display: flex;
  flex-wrap: wrap;
  gap:40px 0;
  margin-top: 40px;
}
.about_sec3_item{
  display: flex;
  flex-wrap: wrap;
}
.about_sec3_item_left{
  position: relative;
  order: 2;
  margin-top: 20px;
  ;
}
.bg_en{
  font-size: clamp(3.75rem, 2.75rem + 5vw, 7.5rem);
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #fff9ed;
  position: absolute;
  top: 0;
  right: -0.5em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.about_sec3_item_img:before{
  padding-top: 61.68%;
}
.about_sec3_item_img img{
  border-radius: 5px;
}
.about_sec3_item .content_desc{
  line-height: 1.75em;
  margin-top: 23px;
  position: relative;
  z-index: 1;

}
.about_sec3_item .content_desc p{
  letter-spacing: 0.05em;
}
.about_sec3_item_right{
  order: 1;
}
.about_sec3_item_num{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #00aeef;
}
.about_sec3_item_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.46em;
  margin-top: 10px;
}
.about_sec3_item_tt p{
  letter-spacing: 0.075em;
}
@media (max-width:767px){
  .page_header.about:after{
    width: 70.73%;
  }

  .about_sec2_bg:before{
    width: 300px;
    left: 100px;
    top: 50px;
  }
  .daihyo_tt:before{
    top: 50%;
    left: 140px;
  }
}
@media (min-width:768px){
  /*共通見出し*/
  .page_header{
    padding-bottom: 100px;
  }
  .page_header_box1{

  }
  .page_header_box1 .en_sm{

  }
  .page_header_box1 .sec_tt{
    font-size: 28px;
  }
  .page_header_box1 .content_desc{
    margin-top: 40px;
  }
  .page_header_box2{
    margin-top: 40px;
  }
  .page_header_box2_img:before{

  }

  /*sec2*/
  .about_sec2_cover{
    padding: 130px 0 50px;
  }

  .daihyo_tt{

  }
  .daihyo_tt_txt{
    font-size: 22px;
  }
  .about_sec2_wrap{

  }
  .about_sec2_box1{

  }
  .about_sec2_box1_img:before{

  }
  .about_sec2_box2{

  }
  .sec_tt{

  }
  .sec_tt.lg{
    font-size: 28px;
  }
  .sec_tt p{

  }
  .about_sec2_box2 .content_desc{
    margin-top: 44px;
  }
  .about_sec2_box3{

  }
  .about_sec2_box3_img:before{

  }
  .about_sec2_box2 .content_desc .name{
    font-size: 20px;
    margin-top: 32px;

  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .content_desc.center{
    text-align: center;
  }
  .about_sec3_wrap .content_desc.center{
    font-size: 21px;
    line-height: 1.8em;
  }
  .about_sec3_items{
    gap: 55px 0;
    margin-top: 62px;
  }
  .about_sec3_item{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .about_sec3_item_left{
    width: 78.67%;
    order: 1;
    margin-top: 0;
  }
  .about_sec3_item_img:before{

  }
  .about_sec3_item .content_desc{

  }
  .about_sec3_item_right{
    width: 11.32%;
    order: 2;
  }
  .about_sec3_item_num{
    font-size: 50px;
  }
  .about_sec3_item_num:after{
    content: "";
    display: block;
    width: 54px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/slash.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .about_sec3_item_tt{
    font-size: 22px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-top: 0;
  }

}
@media (min-width:1024px){
  /*sec3*/
  .about_sec3_items{
    gap: 55px 100px;
    margin-top: 62px;
  }
  .about_sec3_item{
    display: flex;
    justify-content: space-between;
    width: calc(50% - 50px);
  }

}
@media (min-width:1200px){
  /*共通見出し*/
  .page_header{
    padding-bottom: 100px;
  }
  .page_header_box1{
    width: 49.01%;
  }
  .page_header_box1 .en_sm{

  }
  .page_header_box1 .sec_tt{
    font-size: 30px;
  }
  .page_header_box1 .content_desc{

  }
  .page_header_box2{
    width: 42.76%;
    margin-top: 0;
  }
  .page_header_box2_img:before{

  }

  /*sec2*/
  .about_sec2_cover{
    padding: 130px 0 0;
  }

  .about_sec2_bg{
    content: "";
    display: block;
    width: 100vw;
    height: 1200px;
    ;
    background: #00aeef;
    position: absolute;
    top: 0;
    left: 32.73%;
    z-index: -1;
  }
  .daihyo_tt{

  }
  .daihyo_tt_txt{
    font-size: 24px;
  }
  .about_sec2_wrap{

  }
  .about_sec2_box1{
    width: 32.23%;
    padding-top: 51px;
    order: 1;
  }
  .about_sec2_box1_img:before{

  }
  .about_sec2_box2{
    width: 35.52%;
    margin-left: 68px;
    padding-bottom: 260px;
    order: 2;
    margin-bottom: 0;
  }
  .sec_tt{

  }
  .sec_tt.lg{
    font-size: 32px;
  }
  .sec_tt p{

  }
  .about_sec2_box2 .content_desc{

  }
  .about_sec2_box3{
    width: 24.01%;
    align-content: flex-end;
    order: 3;
  }
  .about_sec2_box3_img:before{

  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .content_desc.center{

  }
  .about_sec3_wrap .content_desc.center{

  }
  .about_sec3_items{
    gap: 55px 160px;
  }
  .about_sec3_item{
    width: calc(50% - 80px);
  }
  .about_sec3_item_left{
    padding-top: 10px;

  }
  .about_sec3_item_img:before{

  }
  .about_sec3_item .content_desc{

  }
  .about_sec3_item_right{

  }
  .about_sec3_item_num{
    font-size: 76px;
  }
  .about_sec3_item_tt{
    font-size: 26px;
  }
}
@media (min-width:1470px){
  /*共通見出し*/
  .page_header{
    padding-bottom: 160px;
  }

  /*sec2*/
  .sec_tt.lg{
    font-size: 42px;
    margin-right: -100px;
  }
  .about_sec2_bg{
    width: 100vw;
    height: 1100px;
    ;
    left: 32.73%;
    z-index: -1;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .about_sec2_bg{
    width: 100vw;
    height: 980px;
    left: 32.73%;
    z-index: -1;
  }

  .page_header_box1 .sec_tt{
    font-size: 40px;
  }
}



/*******************************
*　仲介
********************************/

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

}
.pg_realEstate .section.sec1{
  padding-bottom: 0px;
}
.pg_realEstate .section.sec2{
  background: #00aeef;
}
.pg_realEstate .section.sec3{

}
.page_header.real .page_header_box1 .content_desc{
  line-height: 1.75;
}

@media (max-width:374px){

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

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

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

  }
  .pg_realEstate .section.sec1{

  }
  .pg_realEstate .section.sec2{
    padding-bottom: 60px;
  }
  .pg_realEstate .section.sec3{
    padding-top: 40px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_realEstate .section.sec1{
    padding-bottom: 50px;
  }
  .pg_realEstate .section.sec2{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.page_header.real{

}
.page_header.real{
  align-items: flex-start;
}
.page_header.real .page_header_box2{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page_header_box2_img img{
  border-radius: 5px;
}
.page_header.real .page_header_box2_img.img1{
  width: 52.3%;
  margin-top: 30px;
}
.page_header.real .page_header_box2_img.img1:before{
  padding-top: 170.58%;
}
.page_header.real .page_header_box2_img.img2{
  width: 46.15%;
}
.page_header.real .page_header_box2_img.img2:before{
  padding-top: 170.66%;
}

/*sec2*/
.realEstate_sec2_wrap .section_title_en{
  font-size: clamp(2.25rem, 0.85rem + 7vw, 7.5rem);
}
.realEstate_sec2_wrap .content_desc{
  margin-top: 16px;
  color: #fff;
}
.realEstate_sec2_wrap .content_desc.center p{
  letter-spacing: 0.05em;
}
.realEstate_sec2_box{
  background: #fff;
  padding: 30px 16px;
  margin-top: 28px;
  border-radius: 5px;
}
.realEstate_sec2_box .home_sec3_items{
  margin-top: 0;
}
.realEstate_sec2_box .home_sec3_item{
  padding: 0 16px;
  padding-top: 50px;
  padding-bottom: 10px;
}
.realEstate_sec2_tt{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 10px;
}
.realEstate_sec2_box .content_desc{
  color: #181818;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 10px;
  min-height: calc(1em * 1.8 * 2);
}

/*sec3*/
.home_sec2_sub_box.real{
  border: 10px solid #00aeef;
  border-radius: 5px;
}

/*sec4*/
.realEstate_sec4_wrap{
  position:relative;
}
.realEstate_sec4_wrap:before{
  content: "";
  display: block;
  width: 41.28%;
  ;
  aspect-ratio:354 / 191;
  background-image: url(/system_panel/uploads/images/left_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 8%;
}
.realEstate_sec4_wrap:after{
  content: "";
  display: block;
  width: 22.01%;
  ;
  aspect-ratio:137 / 186;
  background-image: url(/system_panel/uploads/images/right_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 7.5%;
  top: 8.5%;
}
.realEstate_sec4_items{
  margin-top: 120px;
}
.realEstate_sec4_item{
  display: flex;
  flex-wrap: wrap;
}
.realEstate_sec4_item:nth-child(n+2){
  margin-top: 40px;
}
.realEstate_sec4_box1{
  width: 100%;
}
.realEstate_sec4_box1_en{
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6.25rem);
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  text-shadow: 1px 1px 0.8px rgba(24, 24, 24, 0.3);
  letter-spacing: 0;
  color: #fff9ed;
}
.realEstate_sec4_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #00aeef;
  background: #f9f8f8;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline:16px;
}
.realEstate_sec4_box2_left{
  width: 100%;
}
.realEstate_sec4_box2_img:before{
  padding-top: 77.55%;
}
.realEstate_sec4_box2_right{
  width: 100%;
  margin-top: 30px;
}
.realEstate_sec4_box2_tt{
  background: #fff;
  padding: 8px;
  padding: 10px 8px 4px;
  position: relative
}
.realEstate_sec4_box2_tt:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: #fff100;
  z-index: 1;
}
.realEstate_sec4_box2_h3{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  /*  background: linear-gradient(transparent 70%, #fff100 70%);*/
}
.realEstate_sec4_box2 .content_desc{
  line-height: 1.875em;
  margin-top: 22px;
}
.realEstate_sec4_box2 .content_desc p{
  letter-spacing: 0.025em;
}
@media (max-width:767px){
  .realEstate_sec4_wrap .content_desc.center{
    margin-top: 30px;
  }

  .realEstate_sec4_box2_h3{
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
@media (min-width:768px){
  /*sec1*/
  .page_header.real{

  }
  .page_header.real{

  }
  .page_header.real{

  }
  .page_header.real .page_header_box2_img.img1{
    margin-top: 58px;
  }
  .page_header.real .page_header_box2_img.img1:before{

  }
  .page_header.real .page_header_box2_img.img2{

  }
  .page_header.real .page_header_box2_img.img2:before{

  }

  /*sec2*/
  .realEstate_sec2_wrap .content_desc.center{
    text-align: justify;
  }
  .realEstate_sec2_box{
    padding: 37px 32px;
  }
  .realEstate_sec2_box .home_sec3_items{

  }
  .realEstate_sec2_box .home_sec3_item{
    padding: 0 24px 10px 13px;
  }
  .realEstate_sec2_tt{
    font-size: 18px;
    width: 80.98%;
    margin-left: auto;
    padding-top: 5px;
    padding-left: 21px;
  }
  .realEstate_sec2_box .home_sec3_item_tt_sub{
    width: 19.71%;
    padding: 10px 0;
  }
  .realEstate_sec2_box .content_desc{

  }

  /*sec4*/
  .realEstate_sec4_wrap:before{
    width: 23.28%;
    ;
    left: 0;
    top: 7%;
  }
  .realEstate_sec4_wrap:after{
    width: 9.01%;
    ;

    right: 7.5%;
    top: 7.5%;
  }
  .realEstate_sec4_wrap .content_desc.center{
    font-size: 21px;
    line-height: 1.8em;
  }
  .realEstate_sec4_wrap .content_desc.center p{
    letter-spacing: 0;
  }
  .realEstate_sec4_items{
    margin-top:100px;
  }
  .realEstate_sec4_item{
    justify-content: space-between;
  }
  .realEstate_sec4_item:nth-child(n+2){
    margin-top: 36px;
  }
  .realEstate_sec4_box1{
    width: 7.07%;
  }
  .realEstate_sec4_box1_en{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .realEstate_sec4_box2{
    width: 90.77%;
    padding: 30px 22px 30px 34px;
  }
  .realEstate_sec4_box2_left{

  }
  .realEstate_sec4_box2_img:before{

  }
  .realEstate_sec4_box2_right{
    margin-top: 30px;
  }
  .realEstate_sec4_box2_tt{

  }
  .realEstate_sec4_box2_h3{
    font-size: 20px;
  }
  .realEstate_sec4_box2 .content_desc{

  }
}
@media (min-width:1024px){
  /*sec2*/
  .realEstate_sec2_wrap .content_desc.center{
    text-align: center;
  }
  /*sec4*/
  .realEstate_sec4_wrap:before{
    width: 16.28%;
    ;
    top: 12%;
  }
  .realEstate_sec4_wrap:after{
    content: "";
    display: block;
    width: 9.01%;
    ;
    right: 0;
    top: 9.5%;
  }

  .realEstate_sec4_items{
    margin-top: 97px;
  }
  .realEstate_sec4_item{
    justify-content: space-between;
  }
  .realEstate_sec4_box1{
    width: 7.07%;
  }
  .realEstate_sec4_box1_en{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .realEstate_sec4_box2{
    width: 92.77%;
    padding: 30px 22px 30px 34px;
  }
  .realEstate_sec4_box2_left{
    width: 41.2%;
    border-right: 1px solid #b3b3b3;
    padding-right: 40px;
  }
  .realEstate_sec4_box2_img:before{

  }
  .realEstate_sec4_box2_right{
    width: 53.86%;
    margin-top: 0;
  }
  .realEstate_sec4_box2_tt{

  }
  .realEstate_sec4_box2_h3{
    font-size: 18px;
  }
  .realEstate_sec4_box2 .content_desc{

  }

}
@media (min-width:1200px){
  /*sec1*/
  .page_header.real{

  }
  .page_header.real{

  }
  .page_header.real{

  }
  .page_header.real .page_header_box1 .sec_tt{
    line-height: 1.8em;
  }
  .page_header.real .page_header_box1 .sec_tt p{
    letter-spacing: 0.125em;
  }
  .page_header.real .page_header_box2_img.img1{

  }
  .page_header.real .page_header_box1 .content_desc{
    margin-top: 58px;
  }
  .page_header.real .page_header_box2_img.img1:before{

  }
  .page_header.real .page_header_box2_img.img2{

  }
  .page_header.real .page_header_box2_img.img2:before{

  }
  .page_header.real .page_header_box2{
    padding-top: 20px;
  }

  /*sec2*/
  .page_header.real{
    padding-bottom: 84px;
  }
  .realEstate_sec2_wrap .content_desc.center{
    font-size: 18px;
    line-height: 1.666em;
  }
  .realEstate_sec2_box{
    padding: 37px 32px;
    padding: 37px 34px;
  }
  .realEstate_sec2_box .home_sec3_items{
    gap: 22px 30px;
  }
  .realEstate_sec2_box .home_sec3_item{

  }
  .realEstate_sec2_tt{
    font-size: 16px;
    padding-left: 10px;
  }
  .realEstate_sec2_box .content_desc{

  }

  /*sec3*/
  .home_sec2_sub_box.real{
    padding: 59px 69px 71px 74px;
    padding: 57px 69px 66px 69px;
  }

  /*sec4*/
  .realEstate_sec4_wrap:before{
    width: 16.28%;
    ;
    top: 12%;
  }
  .realEstate_sec4_wrap:after{
    content: "";
    display: block;
    width: 9.01%;
    ;
    right: 7.5%;
    top: 7.5%;
  }
  .realEstate_sec4_items{

  }
  .realEstate_sec4_item{
    width: 86.51%;
  }
  .realEstate_sec4_item:nth-child(odd){
    margin-right: auto;
  }
  .realEstate_sec4_item:nth-child(even){
    margin-left: auto;
  }
  .realEstate_sec4_box1{

  }
  .realEstate_sec4_box1_en{

  }
  .realEstate_sec4_box2{

  }
  .realEstate_sec4_box2_left{
    padding-right: 62px;
  }
  .realEstate_sec4_box2_img:before{

  }
  .realEstate_sec4_box2_right{

  }
  .realEstate_sec4_box2_tt{

  }
  .realEstate_sec4_box2_h3{
    font-size: 19px;
  }
  .realEstate_sec4_box2 .content_desc{

  }
}
@media (min-width:1470px){
  /*sec2*/
  .realEstate_sec2_tt{
    font-size: 20px;
    padding-left: 21px;
  }

  /*sec4*/
  .realEstate_sec4_wrap:before{
    width: 16.28%;
    ;
    top: 7%;
  }
  .realEstate_sec4_box2_left{
    width: 47.2%;
  }
  .realEstate_sec4_box2_right{
    width: 46.86%;
  }

}
@media (min-width:1720px){
  /*sec4*/
  .realEstate_sec4_wrap:before{
    width: 23.28%;
    ;
    top: 7%;
  }
  .realEstate_sec4_box2_h3{
    font-size: 24px;
  }
}







/*******************************
*　買取
********************************/

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

}
.pg_purchase .section.sec1{
  padding-bottom: 0;
}
.pg_purchase .section.sec2{
  background: #00aeef;
}

.pg_purchase .section.sec7{
  background: #00aeef;
  position: relative;
}
.pg_purchase .section.sec8{

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

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

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

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

  }
  .pg_purchase .section.sec1{

  }
  .pg_purchase .section.sec2{

  }
  .pg_purchase .section.sec3{

  }
  .pg_purchase .section.sec4{

  }
  .pg_purchase .section.sec5{
    padding-top: 30px;
  }
  .pg_purchase .section.sec6{
    padding-top: 73px;
    padding-bottom: 95px;
  }
  .pg_purchase .section.sec8{
    padding-top: 80px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_purchase .section.sec1{

  }
  .pg_purchase .section.sec2{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.page_header.kaitori{

}
.page_header.kaitori .page_header_box1{

}
.page_header.kaitori .page_header_box2{

}
.page_header.kaitori .page_header_box2_img.img1{
  order: 2;
}
.page_header.kaitori .page_header_box2_img.img2{
  order: 1;
}

/*sec4*/
.realEstate_sec4_wrap.purchase:before{
  display: none;
}
.realEstate_sec4_wrap.purchase:after{
  display: none;
}
.realEstate_sec4_head{
  position: relative;
  padding-bottom: 40px;
}
.realEstate_sec4_head:after{
  content: "";
  display: block;
  width: 20.59%;
  aspect-ratio: 313 / 291;
  background-image: url(/system_panel/uploads/images/purchar-il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -1.5%;
}
.realEstate_sec4_wrap.mb_btm .realEstate_sec4_items{
  margin-top: 0;
}

/*sec5*/
.section_title_ja.multi{
  top: 74%;
}
.sub_hosok{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-top: 37px;
}
.sub_hosok p{
  display: inline-block;
  letter-spacing: 0.05em;
  background: #00aeef;
  color: #fff;
  padding: 5px 16px;
  position: relative;
}
.sub_hosok p:before{
  content: "―";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sub_hosok p:after{
  content: "―";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/*sec6*/
.pg_purchase .section.sec6 .realEstate_sec6_wrap{
  padding-bottom: 0;
}

/*sec7*/
.realEstate_sec7_wrap{
  position: relative;
}
.realEstate_sec7_wrap:before{
  content: "";
  display: block;
  width: 30.98%;
  ;
  aspect-ratio:471 / 230;
  ;
  background-image: url(/system_panel/uploads/images/sec7_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -3.5%;
  right: 0;
}
.realEstate_sec7_wrap .content_desc.center{
  color: #fff;
}
.realEstate_sec7_items{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:30px 0;
  margin-top: 40px;
}
.realEstate_sec7_item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
}
.realEstate_sec7_item_left{
  width: 100%;
}
.realEstate_sec7_item_img:before{
  padding-top: 80.45%;
}
.realEstate_sec7_item_right{
  width: 100%;
  margin-top: 20px;
}
.realEstate_sec7_item_tt{
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height:1.4em;
  padding: 5px 7px;
  min-height: calc(1em * 1.4 * 2);
}
.realEstate_sec7_item_tt p{
  letter-spacing: 0;
}
.realEstate_sec7_item_right .content_desc{
  color: #fff;
  font-weight: 500;
  line-height: 2.125em;
  margin-top: 19px;
}
.realEstate_sec7_item_right .content_desc p{
  letter-spacing: 0;
}

/*sec8*/
.realEstate_sec8_wrap.support .page_header{
  margin-top: 40px;
  padding-bottom: 0;
}
.realEstate_sec8_wrap.support .page_header_box1{
  order: 2;
  margin-top: 30px;
}
.realEstate_sec8_wrap.support .page_header_box2{
  order: 1;
  margin-top: 0;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*sec1*/
  .page_header.kaitori{

  }
  .page_header.kaitori .page_header_box1{

  }
  .page_header.kaitori .page_header_box2{

  }
  .page_header.kaitori{

  }

  /*sec4*/
  .realEstate_sec4_head:after{
    right: 0;
  }
  .realEstate_sec4_head{
    position: relative;
    padding-bottom: 130px;
  }

  /*sec5*/
  .section_title_ja.multi{
    top: 74%;
  }
  .sub_hosok{
    text-align: center;
    font-size: 20px;
  }
  .sub_hosok p{
    padding: 5px 23px;
  }
  .pg_purchase .section.sec5 .works_slide{
    margin-top: 60px;
  }
  .pg_purchase .section.sec5 .read_more{
    margin-top: 56px;
  }

  /*sec7*/
  /*sec7*/
  .realEstate_sec7_wrap:before{
    content: "";
    display: block;
    width: 30.98%;
    ;
    top: -9%;
  }
  .realEstate_sec7_wrap .content_desc.center{

  }
  .realEstate_sec7_items{
    gap:30px;
    margin-top: 50px;
  }
  .realEstate_sec7_item{
    width: calc(50% - 15px);

  }
  .realEstate_sec7_item_left{

  }
  .realEstate_sec7_item_img:before{

  }
  .realEstate_sec7_item_right{
    margin-top: 30px;
  }
  .realEstate_sec7_item_tt{

  }
  .realEstate_sec7_item_right .content_desc{

  }

  /*sec8*/

  .realEstate_sec8_wrap.support .page_header{
    padding-bottom: 0;
    margin-top: 50px;
  }
  .realEstate_sec8_wrap.support .page_header_box1{
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .realEstate_sec4_head{
    position: relative;
    padding-bottom: 100px;
  }

  /*sec7*/
  .realEstate_sec7_wrap:before{
    content: "";
    display: block;
    width: 30.98%;
    ;
    top: -9%;
  }

}
@media (min-width:1200px){
  /*sec1*/
  .page_header.kaitori{

  }
  .page_header.kaitori .page_header_box1{
    width: 50.98%;
    order: 2;
  }
  .page_header.kaitori .page_header_box2{
    order: 1;
  }
  .page_header.kaitori{

  }

  /*sec4*/
  .realEstate_sec4_head:after{
    right: 11px;
  }

  /*sec5*/
  .section_title_ja.multi{
    top: 74%;
  }
  .sub_hosok{
    text-align: center;
    font-size: 21px;
  }
  .sub_hosok p{

  }

  /*sec6*/
  .realEstate_sec6_wrap.page_header .sec_tt{
    line-height: 1.8em;
  }
  .realEstate_sec6_wrap.page_header .content_desc{
    margin-top: 33px;
  }
  .realEstate_sec6_wrap.page_header .page_header_box2{
    padding-top: 20px;
  }

  /*sec7*/
  .realEstate_sec7_wrap:before{
    content: "";
    display: block;
    width: 30.98%;
    ;
    top: -22%;
  }
  .realEstate_sec7_wrap .content_desc.center{
    font-size: 21px;
  }
  .realEstate_sec7_wrap .content_desc.center p{
    letter-spacing: 0;
  }
  .realEstate_sec7_items{
    gap:30px;
  }
  .realEstate_sec7_item{
    width: calc(50% - 15px);
  }
  .realEstate_sec7_item_left{
    width: 46.57%;
  }
  .realEstate_sec7_item_img:before{

  }
  .realEstate_sec7_item_right{
    width: 51.00%;
    margin-top: 0;
  }
  .realEstate_sec7_item_tt{
    font-size: 20px;
  }
  .realEstate_sec7_item_right .content_desc{

  }


  /*sec8*/
  .realEstate_sec8_wrap.support .page_header{
    margin-top: 73px;
  }
  .realEstate_sec8_wrap.support .page_header_box1{
    order: 2;
    margin-top: 0;
  }
  .realEstate_sec8_wrap.support .page_header_box2{
    order: 1;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　相続
********************************/

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

}
.pg_Inheritance .section.sec1{
  padding-bottom: 130px;
}
.pg_Inheritance .section.sec2{
  position: relative;
}
.pg_Inheritance .section.sec2:before{
  content: "";
  display: block;
  width: 30.41%;
  aspect-ratio: 296 / 294;
  background-image: url(/system_panel/uploads/images/il99.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.pg_Inheritance .section.sec3{

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

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

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

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

  }
  .pg_Inheritance .section.sec1{
    padding-bottom: 50px;
  }
  .pg_Inheritance .section.sec2{
    padding-bottom: 65px;
  }
  .pg_Inheritance .section.sec2:before{
    content: "";
    display: block;
    width: 15.41%;
    top: -7%;
  }
  .pg_Inheritance .section.sec3{
    padding-top: 39px;
  }
}
@media (min-width:1024px){
  .pg_Inheritance .section.sec2:before{
    content: "";
    display: block;
    width: 15.41%;
    top: -10%;
  }

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

  }
  .pg_Inheritance .section.sec1{

  }
  .pg_Inheritance .section.sec2{

  }
  .pg_Inheritance .section.sec2:before{
    content: "";
    display: block;
    width: 15.41%;
    top: -22%;
  }
}
@media (min-width:1470px){
  .pg_Inheritance .section.sec2:before{
    content: "";
    display: block;
    width: 15.41%;
    top: -24%;
  }

}
@media (min-width:1720px){
  .pg_Inheritance .section.sec2:before{
    content: "";
    display: block;
    width: 15.41%;
    top: -32%;
  }

}

/* メイン部分 */
/*sec1*/
.page_header.Inheritance{

}
.page_header.Inheritance .page_header_box1{

}
.page_header.Inheritance .page_header_box2{

}
.page_header.Inheritance .page_header_box2_img.img1{
  width: 73.07%;
  margin-top: -39px;
}
.page_header.Inheritance .page_header_box2_img.img1:before{
  padding-top: 80.84%;
}
.page_header.Inheritance .page_header_box2_img.img2{
  width: 56.46%;
  margin-left: auto;
  border-bottom: 10px solid #fff;
  border-left: 10px solid #fff;
  position: relative;
  z-index: 2;
  border-radius: 5px;
}
.page_header.Inheritance .page_header_box2_img.img2:before{
  padding-top: 74.46%;
}
.page_header.Inheritance .page_header_box1 .content_desc{
  line-height: 1.75;
}

/*sec2*/
.realEstate_sec2_wrap.Inheritance{
  position: relative;
}
.page_header.Inheritance{
  padding-bottom: 0;
}

/*sec3*/
.Inheritance_sec4_items{
  display: flex;
  flex-wrap: wrap;
  gap:40px 0;
  margin-top: 45px;
}
.Inheritance_sec4_item{
  width: 100%;
}
.Inheritance_sec4_item_top{

}
.Inheritance_sec4_item_top .realEstate_sec4_box1{

}
.Inheritance_sec4_item_top .realEstate_sec4_box1_en{
  font-size: clamp(3.75rem, 2.75rem + 5vw, 7.5rem);
}
.Inheritance_sec4_item_top_right{
  margin-top: 16px;
}
.Inheritance_sec4_item_top_right_tt{
  display: flex;
  align-items: center;
}
.Inheritance_sec4_item_top_right_tt_num{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #00aeef;
  margin-right: 20px;
}
.Inheritance_sec4_item_top_right_tt_h3{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.Inheritance_sec4_item_img{
  margin-top: 16px;
}
.Inheritance_sec4_item_img img{
  border-radius: 5px;
}
.Inheritance_sec4_item_img:before{
  padding-top: 61.68%;
}
.Inheritance_sec4_item .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8em;
  margin-top: 16px;
  padding: 0 5px;
}
.Inheritance_sec4_item .content_desc p{
  letter-spacing: 0.05em;
}

/*sec5*/
.pg_Inheritance .section.sec5 .realEstate_sec4_head:after{
  display: none;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*sec1*/
  .page_header.Inheritance{

  }
  .page_header.Inheritance .page_header_box1{

  }
  .page_header.Inheritance .page_header_box2{

  }
  .page_header.Inheritance .page_header_box2_img.img1{

  }
  .page_header.Inheritance .page_header_box2_img.img2{

  }

  /*sec2*/
  .realEstate_sec2_wrap.Inheritance:before{
    content: "";
    display: block;
    width: 19.47%;
    top: -5%;
  }
  .page_header.Inheritance{
    padding-bottom: 72px;
  }

  /*sec3*/
  .Inheritance_sec4_items{
    margin-top: 45px;
  }
  .Inheritance_sec4_item{

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

  }
  .Inheritance_sec4_item_top .realEstate_sec4_box1_en{
    letter-spacing: -0.035em;
  }
  .Inheritance_sec4_item_top_right{
    width: 82.3%;
    margin-top: 0;
  }
  .Inheritance_sec4_item_top_right_tt{

  }
  .Inheritance_sec4_item_top_right_tt_num{
    font-size: 60px;
    margin-right: 20px;
  }
  .Inheritance_sec4_item_top_right_tt_h3{
    font-size: 22px;
  }
  .Inheritance_sec4_item_img{
    margin-top: 5px;
  }

  .Inheritance_sec4_item_img:before{

  }
  .Inheritance_sec4_item .content_desc{

  }

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

  /*sec3*/
  .Inheritance_sec4_items{
    gap: 50px;
  }
  .Inheritance_sec4_item{
    width: calc(50% - 25px);
  }
  .Inheritance_sec4_item_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Inheritance_sec4_item_top .realEstate_sec4_box1{

  }
  Inheritance_sec4_item_top .realEstate_sec4_box1_en{

  }
  .Inheritance_sec4_item_top_right{
    width: 78.3%;
  }
  .Inheritance_sec4_item_top_right_tt{

  }
  .Inheritance_sec4_item_top_right_tt_num{
    font-size: 60px;
  }
  .Inheritance_sec4_item_top_right_tt_h3{
    font-size: 22px;
  }
  .Inheritance_sec4_item_img:before{

  }
  .Inheritance_sec4_item .content_desc{

  }
}
@media (min-width:1200px){
  /*sec1*/
  .page_header.Inheritance{

  }
  .page_header.Inheritance .page_header_box1{
    width: 50.99%;
  }
  .page_header.Inheritance .page_header_box2{
    width: 42.76%;
    padding-top: 19px;
  }
  .page_header.Inheritance .page_header_box2_img.img1{

  }
  .page_header.Inheritance .page_header_box2_img.img2{

  }
  .page_header.Inheritance .page_header_box1 .content_desc{
    margin-top: 57px;
  }

  /*sec2*/
  .realEstate_sec2_wrap.Inheritance:before{
    content: "";
    display: block;
    width: 19.47%;
    top: -46%;
  }

  /*sec3*/
  .Inheritance_sec4_items{

  }
  .Inheritance_sec4_item{

  }
  .Inheritance_sec4_item_top{

  }
  .Inheritance_sec4_item_top .realEstate_sec4_box1{

  }
  Inheritance_sec4_item_top .realEstate_sec4_box1_en{

  }
  .Inheritance_sec4_item_top_right{
    width: 82.3%;
  }
  .Inheritance_sec4_item_top_right_tt{

  }
  .Inheritance_sec4_item_top_right_tt_num{
    font-size: 76px;
  }
  .Inheritance_sec4_item_top_right_tt_h3{
    font-size: 26px;
  }
  .Inheritance_sec4_item_img:before{

  }
  .Inheritance_sec4_item .content_desc{

  }
}
@media (min-width:1470px){
  /*sec3*/
  .Inheritance_sec4_items{
    gap: 51px 220px;
  }
  .Inheritance_sec4_item{
    width: calc(50% - 110px);
  }

}
@media (min-width:1720px){
  .page_header_box1 .sec_tt.lg{
    font-size: 42px;
    line-height: 1.8em;
    margin-right: -45px;
  }
  .page_header_box1 .sec_tt.lg p{
    letter-spacing: 0.075em;
  }

}

/*******************************
*　不動産相談窓口
********************************/

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

}
.pg_consultation .section.sec1{
  padding-bottom: 50px;
}
.pg_consultation .section.sec2{

}
.pg_consultation .section.sec3{

}
.pg_consultation .section.sec4{

}
.pg_consultation .section.sec5{

}

@media (max-width:374px){

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

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

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

  .pg_consultation{

  }
  .pg_consultation .section.sec1{

  }
  .pg_consultation .section.sec2{
    padding-top: 45px;
    padding-bottom: 60px;
  }
  .pg_consultation .section.sec3{
    padding-top: 40px;
  }
  .pg_consultation .section.sec4{

  }
  .pg_consultation .section.sec5{
    padding-top: 50px;
  }

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


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


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


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


}

/* メイン部分 */
.Consultation .page_header_box1 .sec_tt{
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-bottom: 3px;
}

/* ご相談 */
.realEstate_sec4_head.puroblems:after {
  content: "";
  display: block;
  width: 30.82%;
  aspect-ratio: 347 / 177;
  background-image: url(/system_panel/uploads/images/problem-il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -3.5%;
}
.Consultation.realEstate_sec4_wrap .content_desc.center p{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
.consultation .home_sec2_sub_box1_tt_ja {
  letter-spacing: 0.05em;
}

.consultation_problem_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.consultation_problem_item{
  width: 100%;
  text-align: center;
  position: relative;
}
.consultation_problem_item:nth-child(n+2){
  margin-top: 50px;
}
.consultation_problem_item:nth-child(n+4){

}
.consultation_problem_item_inner{
  background: #fff9ed;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 50px 15px 30px;
}
.consultation_problem_item_num{
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--main-color);
  position: absolute;
  top: -40px;
  left: 50px;
}
.consultation_problem_item_num:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 79 / 4;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 70px;
  left: 0px;
  z-index: 1;
}
.consultation_problem_item_head{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  background: #FFF;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  padding: 0px 5px 2px;
  margin-bottom: 25px;
}
.consultation_problem_item_head1{
  letter-spacing: -0.05em;
}
.consultation_problem_item img{
  width: 50%;
}
.consultation_problem_item_tt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-top: 23px;
  margin-bottom: 18px;
}
.consultation_problem_item .content_desc{
  padding: 0 8px;
}

/*選ばれる理由*/
.realEstate_sec4_head.reason:after {
  content: "";
  display: block;
  width: 27.67%;
  aspect-ratio: 299 / 186;
  background-image: url(/system_panel/uploads/images/reason_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0%;
}


@media (max-width:767px){
/*選ばれる理由*/
.realEstate_sec4_head.reason:after {
  display: block;
  width: 27.67%;
  right: 0;
  bottom: -8%;
}
}
@media (min-width:768px){
  .Consultation.realEstate_sec4_wrap .content_desc.center p{
    font-size: 18px;
    margin-top: 3px;
  }

  /**/
  .consultation_problem_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
    margin-top: 20px;
  }
  .consultation_problem_item{
    width: 50%;
    padding-inline: 15px;
  }
  .consultation_problem_item:nth-child(n+2){
    margin-top: 0;
  }
  .consultation_problem_item:nth-child(n+3){
    margin-top: 50px;
  }
  .consultation_problem_item_num{
    left: 30px;
  }
  /*選ばれる理由*/
  .realEstate_sec4_head.reason:after {
    width: 17.67%;
    left: 6px;
    bottom: 0;
  }
}
@media (min-width:1024px){
  /**/
  .consultation_problem_item_num {
    font-size: 58px;
    top: -40px;
    left: 50px;
  }
  .consultation_problem_item_head{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .consultation_problem_item_tt{
    font-size: 20px;
  }
  .consultation_problem_item_num:after{
    top: 75px;
  }
  /*選ばれる理由*/
  .realEstate_sec4_head.reason:after {
    width: 19.67%;
    left: 6px;
    bottom: 3%;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .Consultation .page_header_box1{
    order: 2;
  }
  .Consultation .page_header_box2{
    order: 1;
  }
  .page_header.Consultation .page_header_box2_img.img1{
    margin-left: auto;
    margin-right: 0;
  }
  .page_header.Consultation .page_header_box2_img.img2{
    margin-left: 0;
    margin-right: auto;
  }
  .Consultation .page_header_box1 .sec_tt{
    font-size: 30px;
  }
  .Consultation .page_header_box1 .content_desc {
    margin-top: 60px;
    line-height: 1.75;
  }

  /* ご相談 */
  .realEstate_sec4_head.puroblems:after {
    width: 22.82%;
    right: 0;
    bottom: 11.5%;
  }
  .consultation_problem_items{
    margin-inline: -15px;
  }
  .consultation_problem_item{
    width: 33.333%;
    padding-inline: 15px;
  }
  .consultation_problem_item:nth-child(n+2){
    margin-top: 0;
  }
  .consultation_problem_item:nth-child(n+4){
    margin-top: 92px;
  }
  .consultation_problem_item_inner{
    padding: 60px 15px 50px;
  }
  .consultation_problem_item_num{
    font-size: 60px;
    top: -50px;
    left: 35px;
  }
  .consultation_problem_item_num:after{
    width: 79px;
    aspect-ratio: 79 / 4;
    top: 85px;
    left: -4px;
  }
  .consultation_problem_item_head{
    font-size: 24px;
    padding: 0px 5px 2px;
    margin-bottom: 25px;
  }
  .consultation_problem_item_head1{
    letter-spacing: -0.05em;
  }
  .consultation_problem_item img{
    width: auto;
  }
  .consultation_problem_item_tt{
    font-size: 20px;
    margin-top: 23px;
    margin-bottom: 18px;
  }
  .consultation_problem_item .content_desc{
    padding: 0 8px;
  }
}
@media (min-width:1470px){
  /* ご相談 */
  .realEstate_sec4_head.puroblems:after {
    width: 22.82%;
    right: 0;
    bottom: 11.5%;
  }
  .consultation_problem_items{
    margin-inline: -35px;
  }
  .consultation_problem_item{
    width: 33.333%;
    padding-inline: 35px;
  }
  .consultation_problem_item:nth-child(n+2){
    margin-top: 0;
  }
  .consultation_problem_item:nth-child(n+4){
    margin-top: 92px;
  }
  .consultation_problem_item_inner{
    padding: 80px 22px 50px;
  }
  .consultation_problem_item_num{
    font-size: 76px;
    top: -60px;
    left: 55px;
  }
  .consultation_problem_item_num:after{
    width: 79px;
    aspect-ratio: 79 / 4;
    top: 110px;
    left: -4px;
  }
  .consultation_problem_item_head{
    font-size: 26px;
    padding: 0px 5px 2px;
    margin-bottom: 25px;
  }
  .consultation_problem_item_head1{
    letter-spacing: -0.05em;
  }
  .consultation_problem_item img{
    width: auto;
  }
  .consultation_problem_item_tt{
    font-size: 24px;
    margin-top: 23px;
    margin-bottom: 18px;
  }
  .consultation_problem_item .content_desc{
    padding: 0 8px;
  }

}
@media (min-width:1720px){
  .Consultation .page_header_box1 .sec_tt.lg{
    font-size: 42px;
    line-height: 1.7em;
  }
  .consultation_problem_item_head{
    font-size: 32px;
    padding: 0px 5px 2px;
    margin-bottom: 25px;
  }
}

/*******************************
*　よくある質問
********************************/

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

}
.pg_qanda .section.sec1{

}
.pg_qanda .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_qanda{

  }
  .pg_qanda .section.sec1{

  }
  .pg_qanda .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */
.qanda_cate_links{
  display: flex;
  flex-wrap: wrap;
}
.qanda_cate_link{
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #FFF;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 15px 20px;
  position: relative;
  transition: 0.2s all;
}
.qanda_cate_link:hover{
  background: var(--main-color);
  color: #FFF;
}
.qanda_items{
  margin-top: 50px;
}
.qanda_item{

}
.qanda_item + .qanda_item{
  margin-top: 10px;
}
.qanda_item_cate{
  margin-bottom: 20px;
  position: relative;
}
.qanda_item_cate_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  color: #FFF;
  background: var(--main-color);
  padding: 15px 10px;
  border-radius: 5px;
  position: relative;
}
.qanda_item_cate_txt:hover{
  cursor: pointer;
  background: #00a3e0;
}
.qanda_item_cate:after {
  display: inline-block;
  content: "\f055";
  font-size: 24px;
  font-family: "fontAwesome";
  font-weight: bold;
  color: #FFF;
  position: absolute;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.qanda_item_cate.active:after {
  display: inline-block;
  content:"\f056";
  font-family: "fontAwesome";
}
.qanda_item_question_list{
  position: relative;
}
.qanda_item_question_list + .qanda_item_question_list{
  margin-top: 60px;
}
.qanda_item_question_list:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/line_bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -30px;
}
.qanda_item_question{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.qanda_item_question_lists
.qanda_item_question_list:last-child
.qanda_item_question:last-child{
  margin-bottom: 50px;
}
.qanda_item_question + .qanda_item_question{
  margin-top: 30px;
}
.qanda_item_question_img{
  padding-right: 150px;
  padding-bottom: 5px;
}
.qanda_item_question_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
}
.qanda_item_question_txt.anser{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.125;
  color: #787878;
  text-align: justify;
}

@media (max-width:767px){
  .qanda_cate_link:nth-child(n+2) {
    margin-top: 16px;
  }
}
@media (min-width:768px){
  .qanda_cate_links{
    gap: 15px;
  }
  .qanda_cate_link{
    width: 50%;
    width: calc(50% - 12.5px);
  }
  .qanda_cate_link:nth-child(n+3){
    margin-top: 10px;
  }
  .qanda_item_question_lists
  .qanda_item_question_list:last-child
  .qanda_item_question:last-child {
    margin-bottom: 100px;
  }
  .qanda_item_question_img {
    padding-right: 510px;
    padding-bottom: 0;
  }
  .qanda_item_question_txt{
    margin-top: 5px;
  }

}
@media (min-width:1024px){
  .qanda_cate_link{
    width: calc(33.333% - 12.5px);
  }
  .qanda_cate_link:nth-child(n+3){
    margin-top: 0;
  }
  .qanda_cate_link:nth-child(n+4){
    margin-top: 10px;
  }
  .qanda_item_question_img{
    padding-right: 20px;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .qanda_cate_links{
    gap: 11px;
  }
  .qanda_cate_link{
    padding: 21px 20px;
  }
  .qanda_cate_link:nth-child(n+4){
    margin-top: 0;
  }
  .qanda_items{
    margin-top: 150px;
  }
  .qanda_item{

  }
  .qanda_item + .qanda_item{
    margin-top: 10px;
  }
  .qanda_item_cate{
    margin-bottom: 34px;
  }
  .qanda_item_cate_txt{
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 1.875;
    color: #FFF;
    background: var(--main-color);
    padding: 18px 20px;
  }
  .qanda_item_question_lists
  .qanda_item_question_list:last-child
  .qanda_item_question:last-child{
    margin-bottom: 150px;
  }
  .qanda_item_question_list{
    position: relative;
  }
  .qanda_item_question_list + .qanda_item_question_list{
    margin-top: 94px;
  }
  .qanda_item_question_list:after{
    margin-bottom: -44px;
  }
  .qanda_item_question{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .qanda_item_question + .qanda_item_question{
    margin-top: 30px;
  }
  .qanda_item_question_img{
    padding-right: 22px;
  }
  .qanda_item_question_txt{
    font-size: 18px;
    line-height: 1.875;
    margin-top: 0;
  }
  .qanda_item_question_txt.anser{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 2.125;
    color: #787878;
  }

}
@media (min-width:1470px){
  /* メイン部分 */
  .qanda_cate_links{
    gap: 10px;
  }
  .qanda_cate_link{
    width: 19.4%;
  }

}
@media (min-width:1720px){
  /* メイン部分 */
  .qanda_cate_links{
    gap: 11px;
  }
  .qanda_cate_link{
    width: 19.4%;
  }
  .qanda_item_question_lists
  .qanda_item_question_list:last-child
  .qanda_item_question:last-child{
    margin-bottom: 195px;
  }
}


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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}

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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #a6a6a6;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #f3fbfe;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.company_tbl .table_rows_td{
  background: #FFF;
  font-weight: 500;
  letter-spacing: 0.075em;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td {
    display: block;
    width: 100%;
    border: 1px solid #a6a6a6;
    border-bottom: none;

    font-size: 15px;
  }

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

}
@media (min-width:1024px){
  .company_tbl .table_rows_th {
    width: 250px;
  }

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 22px 50px 24px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_th p{
    margin-right: -15px;
  }
  .company_tbl .table_rows_td{
    padding: 22px 55px 24px;
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}

/*******************************
*　works
********************************/
.pg_works{

}
.pg_works .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/*カテゴリ*/
.works_cate{

}
.works_cate .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.works_cate .webgene-item{
  width: 100%;
}
.works_cate .webgene-item:nth-child(n+2){
  margin-top: 10px;
}
.works_cate .webgene-item a{
  display: block;
  width: 100%;
  background: #FFF;
  border: 1px solid #bfbfbf;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: left;
  padding: 15px 15px 17px;
  position: relative;
}
.works_cate .webgene-item a:after{

}
.works_cate .webgene-item a.on{
  background: #3a3a3a;
  color: #fff;
}
.works_cate .webgene-item a.on:after {

}
.works_cate .webgene-item a:hover{
  background: #3a3a3a;
  color: #FFF;
}
.works_cate .webgene-item a:after:hover{

}

/*リスト*/
.works_list{
  margin-top: -45px;
}
.works_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  padding-inline:-5px;
}
.works_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.works_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.works_list .webgene-item a{
  display: block;
  position: relative;
  z-index: 1;
  background: #FFF;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.works_list .webgene-item a:hover{
  color: #8798d4;
}
.works_list .webgene-item .img:before{
  padding-top: 72.916%;
}
.works_list .webgene-item .box2{
  padding: 10px 20px;
}
.works_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
}
.works_list .webgene-item .date{
  font-size: 14px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  margin-right: 22px;
}
.works_list .webgene-item .category{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  display: inline-block;
  background: #FFF;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 1px 10px;
}
.works_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-top: 10px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .works_cate{
    display: none;
  }
  .works_list .webgene-item .category {
    font-size: 12px;
    padding: 3px 9px;
    margin-top: 5px;
  }
  .works_list .webgene-item .box2 {
    background: #FFF;
    padding: 10px 10px;
  }

  .works_list .webgene-item .meta{
    flex-wrap: wrap;
  }
  .works_list .webgene-item .date{
    width: 100%;
  }
}
@media (min-width:768px){
  .pg_works{

  }
  .pg_works .section.sec1{

  }


  /*カテゴリ*/
  .works_cate{
    margin-top: -30px;
  }
  .works_cate .webgene-blog{
    margin-inline: -8px;
  }
  .works_cate .webgene-item{
    width: 33.333%;
    padding-inline: 8px;
  }
  .works_cate .webgene-item a{

  }
  .works_cate .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_cate .webgene-item:nth-child(n+4){
    margin-top: 16px;
    ;
  }
  /*リスト*/
  .works_list{
    margin-top: -15px;
  }
  .works_list .webgene-blog{
    margin-inline: -20px;
  }
  .works_list .webgene-item{
    padding-inline: 20px;
  }
  .works_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .works_list .webgene-item a{

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

  }
  .works_list .webgene-item .box2{
    padding: 15px 20px 27px;
  }
  .works_list .webgene-item .date{
    font-size: 20px;
    margin-right: 22px;
  }
  .works_list .webgene-item .category{

  }
  .works_list .webgene-item .title{
    font-size: 18px;
    margin-top: 15px;
  }
}
@media (min-width:1024px){
  /*リスト*/
  .works_list{
    margin-top: -20px;
  }

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

  }
  .pg_works .section.sec1{

  }

  /*カテゴリ*/
  .works_cate{
    margin-top: 2px;
  }
  .works_cate .webgene-blog{
    margin-top: -60px;
  }

  .works_cate .webgene-item a{

  }

  /*リスト*/
  .works_list {
    margin-top: -20px;
  }
  .works_list .webgene-blog{

  }
  .works_list .webgene-item{
    width: 33.333%;
  }
  .works_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
  .works_list .webgene-item a{

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

  }
  .works_list .webgene-item .box2{

  }
  .works_list .webgene-item .date{
    font-size: 20px;
    margin-right: 100px;
  }
  .works_list .webgene-item .category{
    margin-top: 5px;
  }
  .works_list .webgene-item .title{

  }
}
@media (min-width:1470px) {
  /*リスト*/
  .works_list{
    margin-top: -32px;
  }
  .works_list .webgene-item .date {
    font-size: 20px;
    margin-right: 10px;
  }
  .works_list .webgene-item .category {
    margin-top: 0;
  }

  .works_cate .webgene-item{
    width: 16.666%;
  }
  .works_cate .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_cate .webgene-item:nth-child(n+7){
    margin-top: 20px;
  }
}
@media (min-width:1720px) {
  /*リスト*/
  .works_list{
    margin-top: -30px;
  }
  .works_list .webgene-item .date {
    font-size: 20px;
    margin-right: 22px;
  }
  .works_list .webgene-item .category{
    margin-top: 0;
  }
}

/*******************************
*　ギャラリー（サムネ横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;
  padding: 0 40px;
  margin-bottom: 30px;
}
.gallery_box1{
  width: 100%;
  position: relative
}

.gallery_slide_prev i{
  display: none;
}
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1 / 1;
  background: #00aeef;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
  cursor: pointer;
}
.gallery_slide_prev{

}
.gallery_slide_prev:before {
  content: "\f104";
  font-family: 'FontAwesome';
  font-weight: 900;
}
.gallery_slide_next:before {
  content: "\f105";
  font-family: 'FontAwesome';
  font-size: 16px;
  font-weight: 900;
}
.gallery_box1 .gallery_slide_prev{
  left: -40px;
  padding-right: 1px;
}
.gallery_box1 .gallery_slide_next{
  right: -40px;
  padding-left: 1px;
}
.gallery_slide_prev.swiper-button-lock,
.gallery_slide_next.swiper-button-lock{
  display: none;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

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

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img.img_fit img{
cursor:pointer!important;
}


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


.works_detail .post_content{
  border: 1px solid #a39c92;
  padding: 20px 16px;
  background: #FFF;
}
.works_detail .post_content .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 2px solid #0d0d0d;
  padding-bottom: 16px;
}
.works_detail .post_content .post_txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.875em;
  padding-top: 17px;
}
.works_detail .post_content{

}

.works_detail .read_more{

}
.works_detail .read_more a{
  font-size: 16px;
  font-weight: 700;
}
.works_detail .read_more a p {
  letter-spacing: 0.005em;
}
.works_detail .read_more{

}

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

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

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

}
@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{
    padding: 0 95px;
    margin-bottom: 60px;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 0;
    margin-top: 11px;

    position: relative;
    z-index: 1;
    top: auto;
    bottom: auto;
    right: auto;
    overflow: hidden;
  }

  .gallery_box1 .gallery_slide_prev{
    width: 30px;
    left: -60px;
  }
  .gallery_box1 .gallery_slide_next{
    width: 35px;
    right: -60px;
  }
  .gallery_slide_next:before{
    padding-left: 3px;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .swiper-slide,
  .gallery_thumb .img{
   cursor:pointer!important;
  }
  .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;
  }

  .works_detail{
    margin-top: -20px;
  }
  .works_detail .post_content{
    padding: 49px 60px 60px;

  }
  .works_detail .post_content .title{
    font-size: 30px;
    padding-bottom: 30px;
  }
  .works_detail .post_content .post_txt{
    padding-top: 20px;
    line-height: 2.25em;
  }
  .works_detail .post_content{

  }
  .works_detail .read_more{
    margin-top: 75px;
  }
  .works_detail .read_more a{
    padding: 19px 31px;
  }
}
@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: 54px;
  }

  .works_detail {
    margin-top: -25px;
  }
  .works_detail .post_content{
    margin-top: 60px;
    padding: 52px 60px 34px;
  }
  .works_detail .post_content .title{
    font-size: 21px;
    padding-bottom: 21px;
  }

  /*スライド*/
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 60px;
  }
  .gallery_slide_prev{

  }
  .gallery_slide_prev:before,
  .gallery_slide_next:before{
    font-size: 16px;
  }
  .gallery_box1 .gallery_slide_prev{
    width: 30px;
    left: -60px;
  }
  .gallery_box1 .gallery_slide_next{
    width: 30px;
    right: -60px;
  }
  .gallery_slide_next:before{
    padding-left: 0;
  }

  .works_detail .post_content .post_txt{
    padding-top: 41px;
  }
}
@media (min-width:1200px){
  .works_detail {
    margin-top: -25px;
  }
  /*スライド*/
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 60px;
  }
  .gallery_slide_prev{

  }
  .gallery_slide_prev:before {
    margin-right: 2px;
  }
  .gallery_slide_next:before {
    margin-left: 2px;
  }
  .gallery_box1 .gallery_slide_prev{
    width: 30px;
    left: -60px;
  }
  .gallery_box1 .gallery_slide_next{
    width: 30px;
    right: -60px;
  }
}
@media (min-width: 1470px) {
  .works_detail {
    margin-top: -32px;
  }
}
/*******************************
*　記事一覧
********************************/

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

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

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

}
.posts_list .webgene-item{

}
.posts_list .webgene-item + .webgene-item{

}
.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: #00aeef;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{

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

/* 詳細 */
.posts_detail{

}
.posts_detail .webgene-item{

}
.posts_detail {
  border-bottom: 1px solid #3b5b74;
  padding-bottom: 35px;
}
.pg_topics .posts_detail {
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 35px;
}
.posts_detail  .category{
  margin-bottom: 2px;
}
.posts_detail .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 .date{
  font-size: 17px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.875;
}
.posts_detail .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #3b5b74;
  margin-top: 20px;
  margin-top: 10px;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.posts_detail .post_content img{
  padding-bottom: 10px;
}
.posts_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
  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;
}
.posts_detail .thumb {
  width: 72.03%;
}

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

/* ボタン */
.pg_news .read_more a{
  font-size: 16px;
  font-weight: 700;
}
.pg_news .read_more p{
  letter-spacing: 0.005em;
}

/* コピー用 */
@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_layout{
    margin-top: 50px;
  }
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{

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

  }
  .posts_list .webgene-item .title a{

  }

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

  /* 詳細 */
  .posts_detail{
    padding-bottom: 40px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5px;
  }
  .posts_detail .category{
    width: 100%;
  }
  .posts_detail.category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail.date{
    width: 105px;
  }
  .posts_detail.title{
    font-size: 20px;
    margin-top: 22px;
  }
  .posts_detail .txt{
    padding-top: 20px;
  }
  .posts_detail .thumb {
    margin-bottom: 20px;
    width: 450px;
    width: 72.03%;
  }

  /* ボタン */
  .pg_news .read_more{
    margin-top: 75px;
  }
  .pg_news .read_more a{
    font-size: 16px;
    font-weight: 700;
    padding: 19px 32px;
  }
}
@media (min-width:1024px){
  .posts_layout{
    margin-top: 72px;
  }
  .posts_layout_box1.wide{
    width: 74.32%;
    width: 79.73%;
  }
  .posts_layout_box2.wide{
    width: 22.97%;
    width: 16.77%;
    margin-top: 0;
  }
  .posts_layout_box1{
    width: 74.14%;
  }
  .pg_topics .posts_layout_box1{
    width: 100%;
  }
  .posts_layout_box2{
    width: 16.77%;
    margin-top: 0;
  }

  /* リスト */
  .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{

  }
  .posts_list .webgene-item .title a{

  }

  .pg_news .news_list .webgene-item .box1{
    width: 14.85%;
  }
  .pg_news .news_list .webgene-item .date{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    width: 90px;
  }
  .pg_news .news_list .webgene-item .title{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0 30px;
  }
  .pg_news .news_list .webgene-item .box2 {
    width: 81.39%;
    display: flex;
    align-items: center;
  }
  .pg_news .news_list .webgene-item:nth-last-child(2) a {
    border-bottom: 1px solid #1c1c1c;
  }
  .pg_news .webgene-pagination {
    margin-top: 80px;
  }

  .posts_detail{
    padding-bottom: 43px;
  }
  .pg_news.read_more {
    margin-top: 75px;
  }

  .posts_detail .thumb{
    margin-bottom: 20px;
    width: 52.03%;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 0;
  }
  .posts_layout{
    margin-top: 72px;
    margin-top: 62px;
  }
  posts_layout1{
    margin-top: 53px;
  }
  .pg_news .news_list .webgene-item .box1{
    width: 14.85%;
  }
  .pg_news .news_list .webgene-item .date{
    width: 103px;
  }
  .pg_news .news_list .webgene-item .title{
    font-size: 18px;
    padding: 0 40px;
  }
  .pg_news .news_list .webgene-item .box2 {
    width: 81.39%;
  }
  .posts_side_wrap + .posts_side_wrap{
    margin-top: 155px;
  }

  .posts_detail .title{
    font-size: 20px;
    padding-bottom: 12px;
    margin-top: 11px;
    margin-bottom: 20px;
  }
  .posts_detail .post_content img{
    padding-bottom: 40px;
  }
}

/*******************************
*　トピックス
********************************/
.pg_topics{

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

}
.pg_topics .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-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -10px;
}
.posts_list .webgene-item{
  display: block;
  width: 50%;
  padding-inline: 10px;
}
.posts_list .webgene-item .img:before{
  padding-top: 75%;
}
.posts_list .webgene-item a{
  display: block;
  position: relative;
  z-index: 1;
  background: #f3fbfe;
  padding: 10px 8px;
  border-radius: 5px;
}
.posts_list .webgene-item a:hover{
  color: var(--main-color);
}
.posts_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.posts_list .webgene-item .box1{

}
.posts_list .webgene-item .img{
  border-radius: 5px;
}
.posts_list .webgene-item .box2{
  margin-top: 20px;
}
.posts_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.posts_list .webgene-item .date{
  width: 105px;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
}
.posts_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  display: inline-block;
  background: #FFF;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 1px 5px;
}
.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%;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
.posts_list .webgene-item .title a{

}
.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;
}

/*詳細*/

.pg_topics .posts_detail .date{
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.875;
}
.posts_detail .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #3b5b74;
  margin-top: 20px;
  margin-top: 10px;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.pg_topics .posts_detail .title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid #b9b9b9;
  margin-top: 20px;
  margin-top: 10px;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.posts_detail .post_content h3{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
  background: var(--main-color);
  padding: 8.5px 8px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.posts_detail .post_content h3 + .posts_detail .post_content h3{
  margin-top: 10px;
}

.post_txt h3:not(:first-of-type){
  margin-top: 20px;
}

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

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

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

  .pg_topics{

  }
  .topics .posts_layout_box1{

  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 10px;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-blog{
    margin-inline: -20px;
  }
  .posts_list .webgene-item{
    width: 50%;
    padding-inline: 20px;
  }
  .posts_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .posts_list .webgene-item a{
    padding: 15px 15px;
  }
  .posts_list .webgene-item .date{
    width: 87px;
  }
  .posts_list .webgene-item .category{
    width: 80px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{

  }
  .posts_list .webgene-item .title a{

  }

  .pg_topics .posts_detail .post_content{
    font-size: 18px;
  }
  .posts_detail .post_content h3{
    font-size: 18px;
    margin-bottom: 18px;
    margin-top: 50px;
  }

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

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-blog{
    margin-inline: -20px;
  }
  .posts_list .webgene-item{
    width: 25%;
    padding-inline: 20px;
  }
  .posts_list .webgene-item a{
    padding: 25px 16px;
  }
  .posts_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .posts_list .webgene-item:nth-child(n+5){
    margin-top: 30px;
  }
  .posts_list .webgene-item .date{
    width: 87px;
  }
  .posts_list .webgene-item .category{
    width: 80px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{

  }
  .posts_list .webgene-item .title a{

  }

  /* 詳細 */
  .pg_topics .posts_detail{
    padding-bottom: 74px;
  }
  .posts_detail .post_content h3{
    font-size: 18px;
    margin-bottom: 18px;
    margin-top: 20px;
  }
  .post_txt h3:not(:first-of-type){
    margin-top: 85px;
  }
  .pg_topics .read_more{
    margin-top: 75px;
  }
}
@media (min-width:1200px){


  .pg_topics .posts_detail .title {
    font-size: 20px;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}



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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 13px 20px;
  background: #f3fbfe;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.formWrap .formTd.calear .d-inline-block {
  margin-left: 28px;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
  ;
}
.formTd {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0 !important;
  padding: 11px 19px 10px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;

}
.formTd input[name="year"]{
  max-width: 70px;
  margin-right: 11px;
}
.formTd input[name="month"],
.formTd input[name="day"],
.formTd input[name="calear"]{
  max-width: 42px;
  margin-right: 11px;
}
.formWrap .formTd.calear .d-inline-block{
  margin-left: 28px;
}
.formWrap .formTd.calear input[type=checkbox],
.formWrap .formTd.sex input[type=radio]{
  margin-right: 5px;
}
.formWrap .formTd.sex{
  display: flex;
  align-items: center;
}
.formWrap .formTd.sex .d-inline{
  margin-right: 45px;
}
.pg_entry .formWrap .formTd.sex .d-inline{
  margin-right: 35px;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  font-weight: 500;
  letter-spacing: 0.016em;
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  display: flex;
  justify-content: center;
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #2e5fdc;
}
.formBtn.formSend {
  display: block;
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
  border: 1px solid currentColor;
  background: var(--main-color);
  border-radius: 30px;
  color: #FFF;
  padding: 19px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 19 / 18;
  background-image: url(/system_panel/uploads/images/arrow-right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  top: 50%;
  right: 28px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  border: 1px solid transparent;
  background: #f7d357;
  color: #181818;
}
.formBtn.formSend:hover:after{
  margin-right: -5px;
  background-image: url(/system_panel/uploads/images/arrow-right1.png);
}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 28px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
  .radioArea .d-inline-block{
    margin-right: 13px;
  }
  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 29px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.privacy_item a:hover{
  color: var(--main-color);
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #8798d4;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

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

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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .privacy_box{
    padding: 30px 10px;
  }
  .formTd.born .selectArea{
    display: flex;
    align-items: center;
  }
}

@media (min-width: 768px){
  .formBtn.formSend{
    font-size: 16px;
    padding: 20px 29px;
  }
}


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

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


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

  }
  .gallery_thumb .swiper-slide,
  .gallery_thumb .img,
  .gallery_thumb .swiper-wrapper{
   cursor:pointer!important;
  }
  .gallery_thumb .swiper-slide {
  cursor: pointer !important;
}

.gallery_thumb .swiper-slide .img,
.gallery_thumb .swiper-slide img {
  pointer-events: none;
}

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


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


}
