@charset "UTF-8";

:root {
  --main-color: #ff8488;
  --sub-color: #ff8125;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

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



/* 管理画面の余白調整 */
.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;*/
  color: var(--sub-color);
}
img{
  max-width: 100%;
  width: auto;
}

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

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

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

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

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

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


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

/* 指定デバイスで改行を消す */
@media (min-width: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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.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{
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{

}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_top{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 74px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
    border-bottom: 1px solid #ccc;
  }
  .hdr_outer{
    padding-right: 10px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_top{
    display: flex;
    justify-content: flex-end;
  }
  .hdr_btn{
    width: 175px;
    border-radius: 0 0 10px 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 5px 5px 5px;
    margin: 0 8px;
    transition: all .2s;
  }
  .hdr_btn:hover{
    transform: scale(1.03);;
    padding: 0;
  }
  .hdr_btn_inner{
    border: 1px solid #fff;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    font-weight:500; 
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_btn_inner p{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
  }
  .hdr_btn_inner p:before{
    content: "";
    display: block;
    width: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
  }
  .hdr_btn.type1{

    background-image: url(/system_panel/uploads/images/20250527114845834533.png);
  }
  .hdr_btn.type1 p:before{
    height: 16px;
    background-image: url(/system_panel/uploads/images/user.svg);
  }
  .hdr_btn.type2{
    background-image: url(/system_panel/uploads/images/20250527114845118686.png);
  }
  .hdr_btn.type2 p:before{
    height: 16px;
    background-image: url(/system_panel/uploads/images/shake.svg);
  }

  .hdr_btn.type3{
    background-image: url(/system_panel/uploads/images/20250527114845517261.png);
  }
  .hdr_btn.type3 p:before{
    height: 16px;
    background-image: url(/system_panel/uploads/images/mail.svg);
  }

  .hdr_btm{
    margin-top: 11px;
  }


}
@media (min-width:1024px){
  .hdr_outer{
    padding-right: 28px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_top{

  }
  .hdr_btn{
    width: 200px;
  }
  .hdr_btn_inner{
    font-size: 15px;
  }
  .hdr_btn.type1{

  }
  .hdr_btn.type2{

  }
  .hdr_btn.type3{

  }
  .hdr_btm{

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

  body{
    padding-top: 124px;
  }
  .hdr_outer{
    padding-right: 75px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

  .hdr_top{

  }
  .hdr_btn{

  }
  .hdr_btn_inner{

  }
  .hdr_btn_inner p{
    padding: 8px;
  }

  .hdr_btn.type1{

  }
  .hdr_btn.type2{

  }
  .hdr_btn.type3{

  }
  .hdr_btm{

  }
}


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

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  right: 17%;
  bottom: -11.87%;
  /*  top: 50%;
    left: 19.82%;;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
}
.mv_txt_line{
  font-family: "Zen Maru Gothic", sans-serif;
  display: block;
  background: #fff;
  color: #181818;
  padding: 0 15px;
  border-radius: 10px;
}
.mv_outer{
  position: relative;
}
.mv_inner{
  width:100%;
  max-width: none;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url(/system_panel/uploads/images/mv_mask.png);
  aspect-ratio: 1701 / 802;
}
.mv_items{

}
.mv_item{

}
.mv_item_img:before{

}
.mv .swiper-pagination{
  position:relative;
  bottom: 0;
}


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

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

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


/*MV背景装飾*/
.mv_pos{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pos1{
  width: 24.11%;
  background-image: url(/system_panel/uploads/images/mv1.png);
  aspect-ratio:410 / 403;
  top: 0;
  left: -3.3%;
  z-index: -1;
}
.pos2{
  width: 17.52%;
  background-image: url(/system_panel/uploads/images/mv2.png);
  aspect-ratio:298 / 302;
  top: 68px;
  right: -3.3%;
  z-index: 0;
}
.pos3{
  width: 12.94%;
  background-image: url(/system_panel/uploads/images/mv5.png);
  aspect-ratio:220 / 226;
  right: -4.7%;
  top: 39%;
  z-index: -1;
}
.pos4{
  width: 25.76%;
  background-image: url(/system_panel/uploads/images/mv6.png);
  aspect-ratio:438 / 317;
  right: 1.6%;
  bottom: -7px;
  z-index: -1;
}
.pos5{
  width: 15.58%;
  background-image: url(/system_panel/uploads/images/mv4.png);
  aspect-ratio:265 / 257;
  bottom: -35px;
  left: 12.82%;
  z-index: -1;
}
.pos6{
  width: 19.64%;;
  background-image: url(/system_panel/uploads/images/mv3.png);
  aspect-ratio:334 / 253;
  left: -2.4%;
  bottom: 15px;
  z-index: 1;
}
@media (max-width:767px){
  /* MV */
  .mv_inner{
    -webkit-mask-image: url(/system_panel/uploads/images/sub_bg.png);
    aspect-ratio: 760 / 430;
  }

  /* MVテキスト */
  .mv_txt{
    /*    left: 30px;*/
    right: 1%;
  }
  .mv_txt_line{
    position: relative;
    margin-bottom:0;
  }
  .mv_txt_line:first-child{
    left: 0;
  }
  .mv_txt_line:last-child{
    left: 10px;
  }

  /*MV背景装飾*/
  .pos1{
    top: 12px;
    left: -3.3%;
    z-index: -1;
  }
  .pos2{
    top: 26px;
    right: -3.3%;
  }
  .pos3{
    right: -4.7%;
    top: 39%;
    z-index: -1;
  }
  .pos4{
    right: 1.6%;
    bottom: 10px;
    z-index: -1;
  }
  .pos5{
    bottom: 5px;
    left: 12.82%;
    z-index: -1;
  }
  .pos6{
    left: -2.4%;
    bottom: 15px;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
    padding: 0 5.8%;
  }
  .mv_img{
  }
  .mv_item_img.img_fit:before{
    padding-top: 340px;
  }

  /* MVテキスト */
  .mv_txt{
    /*    left: 19.82%;;*/
    font-size: 22px;
    /*    display: flex;
        flex-direction:row-reverse;*/
    display: block;
  }
  .mv_txt_line{
    /*    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;*/
    padding: 0 30px 0 16px;
    margin-right: 0px;
    position: relative;
  }
  .mv_txt_line:first-child{
    top: auto;
    left: 0;
  }
  .mv_txt_line:last-child{
    bottom: auto;
    left: 62px;
  }
  .mv_inner{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{

  }
  .mv .swiper-pagination{
    position:relative;
    bottom: -10px;
  }
  .mv .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    margin: 0 5px!important;
  }
  .mv .swiper-pagination-bullet-active{
    background: var(--main-color);
  }

  /*MV背景装飾*/
  .mv_pos{

  }

  .pos1{

  }
  .pos2{

  }
  .pos3{

  }
  .pos4{

  }
  .pos5{

  }
  .pos6{

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


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

  /* MVテキスト */
  .mv_txt{
    /*    left: 19.82%;;*/
    font-size: 26px;
  }
  .mv_txt_line:first-child{
    /*    top: -10px;*/
  }
  .mv_txt_line:last-child{
    /*    bottom: -10px;*/
  }

  .mv_inner{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{

  }
  .mv .swiper-pagination{
    position:relative;
    bottom: -16px;
  }
  .mv .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 8px!important;
  }

  /*MV背景装飾*/
  .mv_pos{

  }

  .pos1{

  }
  .pos2{

  }
  .pos3{

  }
  .pos4{

  }
  .pos5{

  }
  .pos6{

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

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

  /* MVテキスト */
  .mv_txt{
    /*    left: 19.8%;*/
    font-size: 30px;
  }
  .mv_txt_line:first-child{
    /*    top: -36px;*/
  }
  .mv_txt_line:last-child{
    /*    bottom: -43px;*/
  }

}
@media (min-width:1400px){
  /* MV */
  .mv_item_img.img_fit:before{
    padding-top: 804px;
  }
  /* MVテキスト */
  .mv_txt{
    font-size: 36px;
  }
}
@media (min-width:1700px){
  /* MVテキスト */
  .mv_txt{
    font-size: 50px;
  }
}
/*******************************
*　サイドバー
********************************/

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

}




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

.footer{
  background: #f8f2ec;
  margin-top: 0;
  padding-top: 80px;
}

.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;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  background:#f5bdbf;
  padding: 5px 0;
  margin-top: 39px;
}

/* 追尾スマホメニュー */
.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 #fff;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #f5bdbf;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  color: #fff;
  border-right: 1px solid #fff;
}
.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: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #ff9800;
}
.pagetop a i{
  font-size: 40px;
}

/*採用*/
.ftr_recruit_wrap{
  background: #fbf9f7;
  padding: 80px 0 100px;
  position: relative;
}
.ftr_recruit_wrap:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 100;
  background-image: url(/system_panel/uploads/images/dddd.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.ftr_recruit_box{
  position: relative;

}
.ftr_recruit_img{
  z-index: 0;
}
.ftr_recruit_img img{
  border-radius: 20px;
}
.ftr_recruit_img:before{
  padding-top: 500px;
}
.ftr_recruit_inner{
  width: 95%;
  background:rgba(255,255,255,0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 20px;
  z-index: 1;
  padding: 65px 16px 20px;
}
.ftr_recruit_inner .read_more{

}

/*装飾*/
.recruit_pos{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pos2_1{
  width: 21.08%;
  aspect-ratio:234 / 234;
  background-image: url(/system_panel/uploads/images/pos2_1.png);
  top: -40px;
  left: -9.7%;
}
.pos2_2{
  width: 49px;
  left: 0;
  bottom: -20px;
  z-index: 1;
}
.pos2_3{
  width: 14.77%;
  aspect-ratio:164 / 168;
  background-image: url(/system_panel/uploads/images/pos2_3.png);
  bottom: 15px;
  right: -4.9%;;
  z-index: 1;
}

/*お問い合わせ*/
.ftr_contact_wrap{
  background: #f8f2ec;
  padding-top: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--main-color);
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
}
.link_1{
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  border: 2px solid #f5bdbf;
  background: #fff;
  /* border-radius: 27px; */
  color: #3d3732;
  padding: 12px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border-radius: 38px;
}
.link_1 .person_l{
  width: 103px;
  position: absolute;
  bottom: 0;
  right: 5.1%;
  transition: all .2s;
}
.link_1 p{
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_1 p:before{
  content: "";
  display: block;
  width: 20px;
  height: 18px;
  background-image: url(/system_panel/uploads/images/mail.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.link_1:hover{
  background: var(--sub-color);
  color: #fff;
}
.link_1:hover .person_l{
  right: 3.1%;
}
.ftr_contact_tel{
  margin-top: 30px;
}
.ftr_contact_tel1{
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 12px;
}
.ftr_contact_tel2{
  font-size: 28px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-top: 12px;
}

.ftr_1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 15px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin-top: 24px;
}
.ftr_add_box{
  display: flex;
}
.ftr_add_1{
  min-width: 60px;
  position: relative;
}
.ftr_add_1:after{
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #181818;
  position: absolute;
  top: 8px;
  right: 0;
}
.ftr_add_2{
  padding-left: 14px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_1_box2_inner{
  border: 1px solid var(--main-color);
  position: relative;
  background: #fff;
  padding: 23px 16px;
}
.ftr_1_box2_tt{
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  width: 95.48%;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #f5bdbf;
  color: #fff;
  text-align: center;
  border-radius: 17.5px;
  padding: 5px;
}
.ftr_1_box2 .content_desc{

}
.ftr_1_box2 .read_more{

}
.ftr_1_box2 .content_desc .cautioin{
  color: #fb6c6c;
}

.ftr_2{
  background: #fff;
}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_contact_tel{
    text-align: center;
  }
  .link_1 .person_l{
    width: 70px;
    right: 2.5%;
  }

  .ftr_1_box1{
    text-align: center;
    order: 2;
    margin-top: 30px;
  }
  .ftr_1_box2{
    order: 1;
  }
  .ftr_add_2{
    text-align: left;
  }
  .ftr_2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 0;
    padding-top: 57px;
  }

  /*採用*/
  .ftr_recruit_wrap{
    padding: 100px 0;
  }
  .ftr_recruit_box{

  }
  .ftr_recruit_img{

  }
  .ftr_recruit_img img{

  }
  .ftr_recruit_img:before{
    padding-top: 500px;
  }
  .ftr_recruit_inner{
    width: 75%;
    padding: 60px 16px 20px;
  }
  .ftr_recruit_inner .read_more{
    margin-top: 20px;
  }

  /*装飾*/
  .pos2_1{
    width: 21.08%;
    top: -77px;
    left: -9.7%;
  }
  .pos2_2{
    width: 95px;
    left: 13.69%;
    bottom: -58px;
    z-index: 1;
  }
  .pos2_3{
    width: 14.77%;
    bottom: -48px;
    right: -4.9%;;
  }

  /*お問い合わせ*/
  .ftr_contact_wrap{
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 37.64%;
    padding-top: 45px;
  }
  .ftr_contact_box2{
    width: 61.64%;

  }
  .link_1{
    padding: 23px 0;
  }
  .ftr_contact_tel{
    margin-top: 50px;
  }
  .ftr_contact_tel1{

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

  .ftr_1{

  }
  .ftr_1_box1{
    width: 34.23%;
    width: 48%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_box{

  }
  .ftr_add_1{

  }
  .ftr_add_2{

  }
  .ftr_1_box2{
    width: 59.90%;
    width: 50%;
    padding-top: 22px;
  }
  .ftr_1_box2_inner{
    padding: 23px 16px;
  }
  .ftr_1_box2_tt{
    font-size: 18px;
  }
  .ftr_1_box2 .content_desc{
    margin-top: 0;
  }
  .ftr_1_box2 .read_more{

  }
  .ftr_1_box2 .content_desc .caution{

  }

  .ftr_2{
    padding: 10px 0;
    margin-top: 50px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .ftr_link{
    width: 25%;
    text-align: center;
    font-size: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1;
    border-right: 1px solid;
    padding: 0 10px;
  }
  .ftr_link:last-child{
    border-right:0;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 16px;;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
    padding-top: 57px;
  }

  /*採用*/
  .ftr_recruit_wrap{
    padding: 154px 0 138px;
  }
  .ftr_recruit_box{

  }
  .ftr_recruit_img{

  }
  .ftr_recruit_img img{

  }
  .ftr_recruit_img:before{
    padding-top: 430px;
  }
  .ftr_recruit_inner{
    width: 65.76%;
  }
  .ftr_recruit_inner .read_more{

  }

  /*装飾*/
  .recruit_pos{

  }
  .pos2_1{

  }
  .pos2_2{

  }
  .pos2_3{

  }

  /*お問い合わせ*/
  .ftr_contact_wrap{
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 48.64%;
  }
  .ftr_contact_box2{
    width: 48.64%;
  }
  .link_1{
    font-size: 18px;
  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel1{

  }
  .ftr_contact_tel2{
    font-size: 34px;
  }

  .ftr_1{

  }
  .ftr_1_box1{

  }
  .ftr_1_box1{
    width: 34.23%;
  }
  .ftr_1_box2{
    width: 59.90%;
    padding-top: 22px;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_box{

  }
  .ftr_add_1{

  }
  .ftr_add_2{

  }
  .ftr_1_box2{

  }
  .ftr_1_box2_inner{
    padding: 23px 30px 23px 29px;
  }
  .ftr_1_box2_tt{

  }
  .ftr_1_box2 .content_desc{

  }
  .ftr_1_box2 .content_desc .caution{

  }

  .ftr_2{
    margin-top: 75px;
  }
  .ftr_link{
    width: auto;
    text-align: left;
    font-size: 15px;
    padding: 0 10px;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .ftr_link{
    font-size: 15px;
    padding: 0 24px;
  }
}


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


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

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;  
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: var(--main-color);
  color: #fff;
}  
.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;
}




/* 見出し */
.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: -180px;
  }

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



  /* 見出し */
  /*  .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: 75px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

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

  .anchor{
    top: -200px;
  }
}
@media (min-width:1200px){

  .section:last-child{
    padding-bottom: 205px;
  }

}



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

}
.pg_home .section.sec1{
  padding-top: 80px;;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  padding-top: 100px;;
  padding-bottom:90px;
  position: relative;
}
.pg_home .section.sec2:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 170;
  background-image: url(/system_panel/uploads/images/sec2_after.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec3{
  padding-top: 70px;
  padding-bottom: 80px;
  background: #fbf9f7;
  position: relative;
}
.pg_home .section.sec3:before{

}
.pg_home .section.sec3:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 170;
  background-image: url(/system_panel/uploads/images/bbb.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec4{
  background: #f8f2ec;
  position: relative;
  padding-top: 70px;
  padding-bottom:70px;
}
.pg_home .section.sec4:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 170;
  background-image: url(/system_panel/uploads/images/lll.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec5{
  padding-top:70px;
}


/*news*/
.home_news_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.body_news .home_news_wrap{
  display: contents;
}
.home_news_box1{
  width: 100%;
}
.home_news_box1 .tt2{

}
.home_news_box2{

}
.home_news_wrap .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.home_news_wrap .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.home_news_wrap .webgene-item:nth-child(n+3){
  display: none;
}
.home_news_wrap .webgene-item .inner{
}
.home_news_wrap .webgene-item .img:before{
  padding-top: 82.35%;
}
.home_news_wrap .webgene-item .img{
  overflow: hidden;
  border-radius: 10px;
}
.home_news_wrap .webgene-item .img img{
  border-radius: 10px;
}
.home_news_wrap .webgene-item .box2{
  width: 100%;
  margin-top: 2px;
}
.home_news_wrap .webgene-item .read_more{

}
.home_news_wrap .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.home_news_wrap .webgene-item .meta .date{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.home_news_wrap .webgene-item .meta .category{
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  border-radius: 12.5px;
  background: var(--main-color);
  color: #fff;
  padding: 2px 18px;
  margin-top: 5px;;
}
.home_news_wrap .webgene-item .title{
  font-size: 15px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1.86em;
  margin-top: 8px;
}


/*思い*/
.home_concept_wrap{
  position: relative;
  z-index: 1;
}
.home_concept_wrap .cmn_about{
  margin-top: 40px;
}
.btn_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn_items .read_more{
  width: 100%;
}
/*お知らせ*/
/* コピー用 */
@media (max-width:374px){

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

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

  /*news*/
  .home_news_wrap .read_more{
    width: 100%;
  }

  .home_area_box{
    flex-wrap: wrap;
    padding: 30px 16px 70px;
  }
  .home_area_box2{
    position: relative;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 100px;;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 100px;;
    padding-bottom: 180px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 105px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec5{
    padding-top: 110px;
  }

  /*news*/
  .home_news_wrap{

  }
  .home_news_box1{
    width: 23.18%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 45px;
  }
  .home_news_box1 .tt2{

  }
  .home_news_box2{
    width: 75%;
  }
  .home_news_wrap .webgene-blog{
    margin-inline:-15px;
  }
  .home_news_wrap .webgene-item{
    width: 50%;
    padding: 0 15px;
  }

  .home_news_wrap .webgene-item .inner{

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

  }
  .home_news_wrap .webgene-item .box2{

  }
  .home_news_wrap .webgene-item .read_more{

  }
  .home_news_wrap .webgene-item .meta{

  }
  .home_news_wrap .webgene-item .meta .date{
    width: auto;
  }
  .home_news_wrap .webgene-item .meta .category{
    margin-top: 10px;
  }
  .home_news_wrap .webgene-item .title{

  }

  /*思い*/
  .home_concept_wrap .cmn_about{
    margin-top: 60px;
  }
  .home_concept_wrap .cmn_about_box1{
    order: 2;
  }
  .home_concept_wrap .cmn_about_box2{
    order: 1;
  }
  .btn_items .read_more{
    width: auto;
    margin-top: 22px;
  }
  .btn_items .read_more a{
    width: 200px;
  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 190px;;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 150px;;
    padding-bottom: 250px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 105px;
  }
  .pg_home .section.sec4{
    padding-top: 124px;
    padding-bottom: 208px;
  }
  .pg_home .section.sec5{
    padding-top: 158px;
  }

  /*news*/
  .home_news_wrap{

  }
  .home_news_box1{

  }
  .home_news_box1 .tt2{

  }
  .home_news_box2{

  }
  .home_news_wrap .webgene-blog{

  }
  .home_news_wrap .webgene-item{
    width: 33.33%;
  }
  .home_news_wrap .webgene-item:nth-child(n+3){
    display:block;
  }
  .home_news_wrap .webgene-item .inner{

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

  }
  .home_news_wrap .webgene-item .box2{

  }
  .home_news_wrap .webgene-item .read_more{

  }
  .home_news_wrap .webgene-item .meta{

  }
  .home_news_wrap .webgene-item .meta .date{

  }
  .home_news_wrap .webgene-item .meta .category{

  }
  .home_news_wrap .webgene-item .title{

  }

  /*思い*/
  .home_concept_wrap .cmn_about{
    margin-top: 80px;
  }
  .btn_items{
    padding-right: 30px;
  }
  .btn_items .read_more a{
    width: 254px;
  }
}
@media (min-width:1200px){
  .pg_home .section.sec2{
    padding-top: 150px;;
    padding-bottom: 340px;
  }

}





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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

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


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}
.news_list .webgene-item:nth-child(n+3){
  display: block;
  margin-top: 20px;
}



/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background:var(--main-color);
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 11px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  font-weight: 500;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #3d3732;
  padding: 0;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{

  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.posts_detail .meta .category{
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  border-radius: 12.5px;
  background: var(--main-color);
  color: #fff;
  padding: 2px 18px;
  margin-top: 5px;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-left: 14px;
}
.posts_detail .title{
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.065em;
  border-bottom: 1px solid #3d3732;
  padding-bottom: 10px;

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

  .news_list .webgene-item:nth-child(n+3){
    display: block;
    margin-top: 50px; 
  }

  /* 詳細 */
  .posts_detail{
    padding: 0 0 74px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5px;
    margin-bottom: 10px;
  }
  .posts_detail .meta .category{
    width: auto;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    font-size: 18px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  .posts_layout_box1 .read_more{
    margin-top: 75px;
  }

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

  /* リスト */
  .posts_list{

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

  }

  .news_list .webgene-item:nth-child(n+3){
    display: block;
    margin-top: 0; 
  }
  .news_list .webgene-item:nth-child(n+4){
    display: block;
    margin-top: 44px;
  }

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}

/*******************************
*　会社概要
********************************/
.pg_company{

}
.pg_company .section.sec1{
  padding-top: 0;
  padding-bottom: 80px;
}
.pg_company .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_company .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}

.pg_contact .section.sec2{
  padding-bottom: 80px;
}

/*テーブル*/
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  border: 1px solid #3d3732;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 15px;
}
.company_tbl .table_rows_th{
  background: #f8f2ec;
}
.company_tbl .table_rows_td{
  background: #fff;
}

/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: 0;
  height: 250px;
}

/*ギャラリー*/
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 40px;
}
.company_gallery_item{
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img:before{
  padding-top: 71.42%;
}
.company_gallery_item_img img{
  border-radius: 10px;
}


.privacy_item_box {
  padding: 30px 64px 30px 29px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #f5f1eb;
  margin-top: 0;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #3d3732;
  }
  .company_tbl .table_rows_td{

  }

  .privacy_item_box{
    padding: 30px 10px;
  }
}
@media (min-width:768px){
  .pg_company{

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 100px;
  }
  .pg_company .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_company .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

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

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
    padding: 19px 15px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .company_tbl .table_rows_td{
    border-left: 0;
    padding-left: 19px;
  }

  /*地図*/
  .gmap{
    margin-top: 50px;
  }
  .access_map iframe{
    height: 400px; 
  }

  /*ギャラリー*/
  .company_gallery_items{
    margin-inline:-10px;
    margin-top: 44px;
  }
  .company_gallery_item{
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }
  .company_gallery_item_img:before{

  }
  .company_gallery_item_img img{

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

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 200px;
  }
  .pg_company .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_company .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  .pg_contact .section.sec2{
    padding-bottom: 200px;
    padding-top: 80px;
  }

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{

  }

  /*ギャラリー*/
  .company_gallery_items{
    margin-inline:-15px;
  }
  .company_gallery_item{
    padding: 0 15px;
  }
  .company_gallery_item_img:before{

  }
  .company_gallery_item_img img{

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


}



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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{  
  border: 1px solid #f5f1eb;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #e0dcd7;
}
.pg_contact .formTh {
  font-weight: 400;
  padding: 16px 15px 14px 20px;
  background: #f8f2ec;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #f5f1eb;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #f5f1eb;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #f5f1eb;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #f29c9f;
  font-weight: 500;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 255px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  border: 2px solid var(--main-color);
  background: #fff;
  /* border-radius: 27px; */
  color: #3d3732;
  padding: 9px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border-radius: 22.5px;
  cursor: pointer;
  margin-top: 46px;
}
.pg_contact .formBtn.formSend:hover{
  background: var(--sub-color);
  color: #fff;

}
.pg_contact .formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 3px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 32px;
}
.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;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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


/* プライバシー */

.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 47px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #f29c9f;
}
.privacy_txt{
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

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


@media only screen and (max-width: 1023px){ 
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

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

  .privacyformError{
    margin-top:-40px !important;
  }

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

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


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

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

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

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

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


/*******************************
*　家族援用
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  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;
}

.news_list.family .webgene-blog{
  margin-inline:0;
}
.news_list.family .webgene-item{
  width: 100%;
  border-bottom: 1px solid #3d3732;
  padding: 0 0 40px;
}
.news_list.family .webgene-item:nth-child(n+2){
  padding-top: 50px;
}
.news_list.family .webgene-item .meta{
  justify-content: flex-start;
}
.news_list.family .webgene-item .date{
  width: auto;
  margin-left: 15px;
}
.news_list.family .webgene-item .title{
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 9px;
  border-bottom: 1px solid #3d3732;
}
.news_list.family .webgene-item .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  padding-top: 20px;
}

/*pg_header装飾*/
.pg_header{

}
.pg_header_bg1{
  width: 13.9%;;
  aspect-ratio:267 / 211;
  background-image: url(/system_panel/uploads/images/hdr_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: 3.4%;
  z-index: 0;
}
.pg_header_bg2{
  width:17.39% ;
  aspect-ratio:334 / 253;
  background-image: url(/system_panel/uploads/images/hdr_right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -24px;
  right: 2.3%;
}

.body_thanks .pg_contact .section.sec1{
  padding-bottom: 80px;
}

.important_btn_block{

}
.important_btn_block:nth-child(n+2){
  margin-top: 50px;
}
.important_btn_block .important_btn_items{
  margin-top: 12px;
}
.important_btn_block .tt2_ja{
  font-family: "Zen Maru Gothic", sans-serif;
}



.msg5_outer{
  position: relative;
}
.msg5_outer .swiper-button-next,
.msg5_outer .swiper-rtl .swiper-button-prev{
  right: -10px;
  color: var(--sub-color);
}
.msg5_outer .swiper-button-prev,
.msg5_outer .swiper-rtl .swiper-button-next{
  left: -10px;
  color: var(--sub-color);
}
/* コピー用 */
@media (max-width:374px){

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

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

  .msg5_outer{
    padding: 0 28px;
  }
}
@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;
  }

  .news_list.family .webgene-item{
    width: 100%;
    padding-bottom: 50px;
  }
  .news_list.family .webgene-item:nth-child(n+2){
    padding-top: 70px;
  }
  .news_list.family .webgene-item .category{
    margin-top: 0;
  }
  .news_list.family .webgene-item .title{
    font-size: 18px;
  }
  .news_list.family .webgene-item .post_content{
    padding-top: 40px;
  }

  /*pg_header装飾*/
  .pg_header{

  }
  .pg_header_bg1{
    width: 13.9%;;
    top: -26px;
    left: 3.4%;
    z-index: 0;
  }
  .pg_header_bg2{
    width:17.39% ;
    bottom: -55px;
    right: 2.3%;
  }

  .body_thanks .pg_contact .section.sec1{
    padding-bottom: 100px;
  }
  .important_btn_block .important_btn_items{
    margin-top: 40px;
  }
  .important_btn_block:nth-child(n+2){
    margin-top: 60px;
  }
  .important_btn_block .tt2_ja{
    font-size: 28px;
  }

  .msg5_outer .swiper-button-next,
  .msg5_outer .swiper-rtl .swiper-button-prev{
    right: -40px;
  }
  .msg5_outer .swiper-button-prev,
  .msg5_outer .swiper-rtl .swiper-button-next{
    left: -40px;
  }

  .body_news .pg_header_bg2,
  .body_newsDetail .pg_header_bg2{
    bottom: -40px;
  }
}
@media (min-width:1024px){
  .news_list.family .webgene-item{
    width: 100%;
    padding-bottom: 70px;
  }
  .news_list.family .webgene-item:nth-child(n+2){
    padding-top: 100px;
  }

  .news_list.family .webgene-pagination{
    margin-top: 128px;
  }

  /*pg_header装飾*/
  .pg_header{

  }
  .pg_header_bg1{
    width: 13.9%;;
    top: -50px;
    left: 3.4%;
    z-index: 0;
  }
  .pg_header_bg2{
    width:17.39% ;
    bottom: -125px;
    right: 2.3%;
  }

  /*同行援護*/
  .sec_feature_main .contents_item_tt{
    font-size: 25px;
  }

  .thanks_text{
    text-align: center;
  }
  .body_thanks .pg_contact .section.sec1{
    padding-bottom: 200px;
  }

  .body_news .pg_header_bg2,
  .body_newsDetail .pg_header_bg2{
    bottom: -80px;
  }
}
@media (min-width:1200px){


}
