@charset "UTF-8";

:root {
  --main-color: #1eab34;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #545454;

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

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


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

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

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

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

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

/*ポップアップ*/
.modaal-container{
  position: relative;
}
.modaal-content-container{
  background: linear-gradient(0deg, rgba(187, 227, 246, 1) 0%, rgba(249, 240, 236, 1) 100%); 
}

.popup_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modaal-wrapper .modaal-close{
  position: absolute;
  top: 0;
  right: 0;
}
.contact_popup{
  display: none;
}
.gjs-dashed .contact_popup{
  display: block;
}
@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
    position: relative;
    z-index: 3;
  }
  .header_inner{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 9.7px 0.3px rgba(24, 24, 24, 0.1);
    padding: 10px;  
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_num{
    display: none;
  }

  /*ぽイップアップ*/
  .modaal-content-container{
    padding: 70px 30px 50px;
  }
  .ftr_contact_item + .ftr_contact_item{
    margin-top: 30px;
  }
  .ftr_contact_item_icon{
    width: 60px;
    top: -27px;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 131px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
  }
  .header_inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 9.7px 0.3px rgba(24, 24, 24, 0.1);
    padding: 6px 31px 6px 17px;
  }
  .hdr_outer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }


  .hdr1{
    padding: 0 15px 0;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_num{
    text-align: center;
  }
  .hdr_num1{
    font-size: 28px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .hdr_num1 a:hover{
    color: var(--main-color);
  }
  .hdr_num2{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 5px;
  }
  .hdr_contact{
    display: block;
    width: 180px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    border: 1px solid transparent;
    background: var(--main-color);
    color: #fff;
    border-radius: 22.5px;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    margin-left: 20px;
  }
  .hdr_contact:hover{
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
  }
  .hdr_contact p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.16em;
  }
  .hdr_contact p:before{
    content: "";
    display: block;
    width: 15px;
    height: 14px;
    background-image: url(/system_panel/uploads/images/wh.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-right: 5px;
  }
  .hdr_contact:hover p:before{
    background-image: url(/system_panel/uploads/images/gr.svg);
  }

  /*ポップアップ*/
  .modaal-content-container{
    padding: 100px 30px
  }
  .popup_box .ftr_contact_item{
    width: 50%;
  }
}
@media (min-width:1024px){
  .header{
    padding: 30px 40px 20px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_num{
    margin-left: 5px;
  }
  .hdr_num1{
    font-size: 30px;
  }
  .hdr_num2{

  }
  .hdr_contact{
    width: 225px;
  }
}
@media (min-width:1200px){
  .header{
    padding: 30px 30px 20px;
  }
  .header_inner{
    padding: 6px 10px 6px 10px;
  }
  .hdr_contact{
    display: block;
    width: 180px;
  }


  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 150px;
  }

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

  }

}
@media (min-width:1470px){
  .header{
    padding: 30px 60px 20px;
  }
  .header_inner{
    padding: 6px 31px 6px 17px;
  }
  .hdr_contact{
    display: block;
    width: 225px;
  }


}
@media (min-width:1536px){
  .header{
    padding: 30px 80px 20px;
  }
}

@media (min-width:1600px){
  .hdr_logo img{
    width: auto;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  height: calc(100vh - 86px - 54px);
  position: relative;
  z-index: 1;
}
.mv_top{
  position: relative;
  height: 50%;
}
.mv_btm{
  position: relative;
  height: 50%;
}

.mv_item{
  position: absolute;
  z-index: 1;
  border-radius: 40px;

}
.mv_item_img{
  filter: blur(10px);
  animation-delay:3.5s;
  transition: all .2s;
}
.mv_item_img img{
  border-radius: 16px;
}
.mv_item.item1{
  width: 21.23%;
  left: 1.4%;
  bottom: auto;
  top: 120px;
  z-index: 1;
}
.mv_item.item1 .mv_item_img{
  aspect-ratio:293 / 235;
}
.mv_item.item2{
  width: 18.32%;
  left: 16.25%;
  bottom: auto;

}
.mv_item.item2 .mv_item_img{
  aspect-ratio:339 / 275;
}
.mv_item.item3{
  width: 35.3%;
  left: 52.5%;
  transform:translateX(-50%);
  top: 20px;
}
.mv_item.item3 .mv_item_img{
  aspect-ratio:505 / 400;
}
.mv_item.item4{
  width: 22.7%;
  right: 5.66%;
  bottom: auto;
  top: 40px;
}
.mv_item.item4 .mv_item_img{
  aspect-ratio:339 / 436;
}
.mv_item.item5{
  width: 28.96%;
  left: 3.12%;
  top: 4%;
}
.mv_item.item5 .mv_item_img{
  aspect-ratio:339 / 441;
}
.mv_item.item6{
  width: 14.84%;
  left: 30.98%;
  bottom:auto;
  top: 34%;

}
.mv_item.item6 .mv_item_img{
  aspect-ratio:310 / 285;
}
.mv_item.item7{
  width: 35.35%;
  right:21.09%;
  bottom: auto;
  top: 12.7%;
}
.mv_item.item7 .mv_item_img{
  aspect-ratio:506 / 339;
}
.mv_item.item8{
  width: 22.55%;
  right: 1.04%;
  bottom: auto;
  top: -14%;
}
.mv_item.item8 .mv_item_img{
  aspect-ratio:413 / 337;
}


.mv_item.blurOff .mv_item_img{
  filter: blur(0);
  transform: translateY(0) !important;
  transition: 3s all;
}


.mv_item.item1 .mv_item_img,
.mv_item.item3 .mv_item_img,
.mv_item.item5 .mv_item_img,
.mv_item.item7 .mv_item_img{
  transform: translateY(200px);
}
.mv_item.item2 .mv_item_img,
.mv_item.item4 .mv_item_img,
.mv_item.item6 .mv_item_img,
.mv_item.item8 .mv_item_img{
  transform: translateY(50px);
}


/*玉*/
.pos{
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  aspect-ratio:1 / 1;
}
.mv_item.item1 .pos{
  width: 34.04%;
  background-image: url(/system_panel/uploads/images/item1.png);
  right: -17.02%;
  bottom: 18.77%;
  z-index: -1;
}
.mv_item.item2 .pos{
  width: 15.27%;
  background-image: url(/system_panel/uploads/images/item2.png);
  right: -16.36%;
  bottom: 8.8%;
}
.mv_item.item3 .pos{
  width: 6.7%;
  background-image: url(/system_panel/uploads/images/item3.png);
  right: -9.1%;
  top: 32%;
  transform: translateY(-50%);
}
.mv_item.item4 .pos{
  width: 7.1%;
  background-image: url(/system_panel/uploads/images/item4.png);
  bottom: 37.1%;
  right: 6.6%;
}
.mv_main_txt .pos{
  width: 33px;
  background-image: url(/system_panel/uploads/images/item5.png);
  bottom: -15px;
  left: -24px;
}
.mv_item.item6 .pos{
  width: 18.59%;
  background-image: url(/system_panel/uploads/images/item6.png);
  top: -5.4%;
  right: -7.7%;
}
.mv_item.item7 .pos{
  width: 12.45%;
  background-image: url(/system_panel/uploads/images/item7.png);
  top: -4.5%;
  right: 5.9%;
}


/*背景*/
.mv_pos{
  position: absolute;
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mv_pos.left{
  width: 33.54%;
  aspect-ratio:644 / 559;
  background-image: url(/system_panel/uploads/images/mv_left.png);
  bottom: -13%;
  left: 0;
  z-index: 0;
}
.mv_pos.right{
  width: 24.16%;
  aspect-ratio:464 / 564;
  background-image: url(/system_panel/uploads/images/mv_right.png);
  right: 0;
  top: -130px;
}

/* MVテキスト */
.mv_main_txt{
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.28em;
  color: var(--main-color);
  text-shadow    : 
    2px  2px 0px #ffffff,
    -2px  2px 0px #ffffff,
    2px -2px 0px #ffffff,
    -2px -2px 0px #ffffff,
    2px  0px 0px #ffffff,
    0px  2px 0px #ffffff,
    -2px  0px 0px #ffffff,
    0px -2px 0px #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
  padding-left: 20px;
}
.mv_main_txt p{
  letter-spacing: 0.12em;
}
.mv_txt_inner{
  display: inline-block;
  position: relative;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
.gjs-dashed .mv_item .mv_item_img{
  filter: none;
}
@media (max-width:767px){
  .mv_pos.right{
    top: -60px;
  }
  .mv_pos.left{
    bottom: 0;
  }

  .mv_main_txt{
    top: 50%;
    /*    font-size: 38px;*/
    font-size: clamp(2.375rem, 0.054rem + 9.61vw, 5.625rem);
  }

  .mv_main_txt .pos{
    width: 16px;
    bottom: -1px;
    left: -19px;
  }

  .mv_item.item1 {
    width: 21.23%;
    left: 1.4%;
    bottom: auto;
    top: 170px;
    z-index: 1;
  }
  .mv_item.item2{
    width: 18.32%;
    left: 16.25%;
    bottom: auto;
    top: 20px;
  }
  .mv_item.item3{
    width: 35.3%;
    left: 52.5%;
    transform: translateX(-50%);
    top: 150px;
  }
  .mv_item.item4{
    width: 26.7%;
    right: 5px;
    bottom: auto;
    top: 85px;
  }
  .mv_item.item5{
    width: 28.96%;
    left: 3.12%;
    top: 20px;
  }
  .mv_item.item6{
    width: 21.84%;
    left: 30.98%;
    bottom: auto;
    top: 200px;
  }
  .mv_item.item7{
    width: 35.35%;
    right: 21.09%;
    bottom: auto;
    top: 75px; 
  }
  .mv_item.item8{
    width: 22.55%;
    right: 1.04%;
    bottom: auto;
    top: -14%;
  }


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

  /* MV */
  .mv{
    height: 100vh
  }
  .mv_top{
    height: 50%;
  }
  .mv_btm{
    height: 50%;
  }

  .mv_item_img img{
    border-radius: 40px;
  }

  .mv_item{

  }
  .mv_item.item1{
    width: 12.23%;
    left: 1.4%;
    bottom: auto;
    top: 160px;
  }
  .mv_item.item1:before{

  }
  .mv_item.item2{
    width: 14.32%;
    left: 16.25%;
    bottom: auto;
  }
  .mv_item.item2:before{

  }
  .mv_item.item3{
    width: 36.3%;
    left: 50%;
  }
  .mv_item.item3:before{

  }
  .mv_item.item4{
    right: 5.66%;
    bottom: auto;
    top: 40px;
  }
  .mv_item.item4:before{

  }
  .mv_item.item5{
    width: 26.96%;
    left: 3.12%;
  }
  .mv_item.item5:before{

  }
  .mv_item.item6{
    width: 14.84%;
    left: 30.98%;
    bottom:auto;
    top: 34%;
  }
  .mv_item.item6:before{

  }
  .mv_item.item7{
    width: 31.35%;
    right:21.09%;
    bottom: auto;
    top: 12.7%;
  }
  .mv_item.item7:before{

  }
  .mv_item.item8{
    width: 18.55%;
  }
  .mv_item.item8:before{

  }

  /* MVテキスト */
  .mv_main_txt{
    font-size: 60px;
    top:38%;
    padding-left: 20px;
  }

  /*背景*/
  .mv_pos.left{
    bottom: 0;
  }


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


  /* MV */
  .mv{
  }
  .mv_top{
    height: 50%;
  }
  .mv_btm{
    height: 50%;
  }

  .mv_item{

  }
  .mv_item.item1{
    width: 12.23%;
  }
  .mv_item.item1:before{

  }
  .mv_item.item2{
    width: 14.32%;
    left: 16.25%;
    bottom: auto;
  }
  .mv_item.item2:before{

  }
  .mv_item.item3{
    width: 26.3%;
    left: 47.5%;
  }
  .mv_item.item3:before{

  }
  .mv_item.item4{
    width: 22.7%;
    right: 11.66%;
  }
  .mv_item.item4:before{

  }
  .mv_item.item5{
    width: 22.96%;
    left: 3.12%;
  }
  .mv_item.item5:before{

  }
  .mv_item.item6{
    width: 14.84%;
    left: 30.98%;
    bottom:auto;
    top: 34%;
  }
  .mv_item.item6:before{

  }
  .mv_item.item7{
    width: 26.35%;
    right:21.09%;
    bottom: auto;
    top: 12.7%;
  }
  .mv_item.item7:before{

  }
  .mv_item.item8{
    width: 17.55%;
    right: 1.04%;
    bottom: auto;
    top: -14%;
  }
  .mv_item.item8:before{

  }

  /* MVテキスト */

  .mv_main_txt{
    font-size: 62px;
    padding-left: 50px;
    top:47%;
  }

  /*背景*/
  .mv_pos.left{
    bottom: 0;
  }

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

  /* MV */
  .mv{
    height: calc(100vh - 131px);
  }
  .mv_top{

  }
  .mv_btm{

  }

  .mv_item{

  }
  .mv_item.item1{

  }
  .mv_item.item1:before{

  }
  .mv_item.item2{

  }
  .mv_item.item2:before{

  }
  .mv_item.item3{

  }
  .mv_item.item3:before{

  }
  .mv_item.item4{

  }
  .mv_item.item4:before{

  }
  .mv_item.item5{

  }
  .mv_item.item5:before{

  }
  .mv_item.item6{

  }
  .mv_item.item6:before{

  }
  .mv_item.item7{

  }
  .mv_item.item7:before{

  }
  .mv_item.item8{

  }
  .mv_item.item8:before{

  }
  /* MVテキスト */
  .mv_main_txt{
    font-size: 65px;
    top:50%;
  }

  /*背景*/
  .mv_pos.left{
    bottom: -5%;
  }


}
@media (min-width:1470px){
  /* MVテキスト */
  .mv_main_txt{
    font-size: 70px;

  }

  /*背景*/
  .mv_pos.left{
    bottom: -13%;
  }
}
@media (min-width:1536px){
  /* MVテキスト */
  .mv_main_txt{
    font-size: 90px;

  }
}

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

/* サイドバー */
.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: 80px;
  position: relative;
  padding-inline:20px;
}
.pg_header:after{
  content: "";
  display: block;
  width: 38.59%;;
  aspect-ratio:741 / 559;
  background-image: url(/system_panel/uploads/images/left_kasou.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -11.45%;
  bottom: -46.72%;
}
.pg_header_img{

}
.pg_header_img img{
  border-radius: 40px;
}
.pg_header_img:before{
  padding-top: 180px;
}

.pg_header_ttx{
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--main-color);
  text-shadow    : 
    2px  2px 0px #ffffff,
    -2px  2px 0px #ffffff,
    2px -2px 0px #ffffff,
    -2px -2px 0px #ffffff,
    2px  0px 0px #ffffff,
    0px  2px 0px #ffffff,
    -2px  0px 0px #ffffff,
    0px -2px 0px #ffffff;  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom:100px;
    padding-inline:4.1%;
    padding-top: 10px;
  }
  .pg_header_img:before{
    padding-top: 350px;
  }

  .pg_header_ttx{
    font-size: 50px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 200px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header_ttx{
    font-size: 70px;
  }
}
@media (min-width:1200px){
  .pg_header_img:before{
    padding-top: 550px;
  }
  .pg_header_ttx{
    font-size: 80px;
  }

}



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

.footer{
  -webkit-mask-image: url(/system_panel/uploads/images/ftr_bg.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  margin-top: -50px;
  padding-top: 120px;
}
.footer:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(74deg,rgba(108, 189, 201, 1) 0%, rgba(140, 214, 208, 1) 100%);
  z-index: -1;
}

.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;
  color: #fff;
  text-align: center;
  padding: 24px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.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 var(--main-color);
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}
.ftr_contact_wrap .sec_title{
  color: #fff; 
}
.ftr_contact_items{
  display: flex;
  flex-wrap:wrap;
  margin-top: 60px;
}
.ftr_contact_item{
  width: 100%;
}
.ftr_contact_item:nth-child(n+2){
  margin-top: 40px;;
}
.ftr_contact_item_inner{
  background: #fff;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 30px 23px;
  transition: all .2s;
}
.ftr_contact_item_inner:hover{
  color: var(--main-color);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.ftr_contact_item_inner:hover .ftr_contact_item_icon{
  top: -50px;
}
.ftr_contact_item_icon{
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 73px;
  aspect-ratio:1 / 1;
  transition: all .2s;
}
.ftr_contact_item_txt{
  text-align: center;
}
.ftr_contact_item_txt1{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.ftr_contact_item_txt2{
  font-size: 20px;
  font-weight: 500;
}
.ftr_contact_item_num{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
}
.ftr_contact_item_txt3{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 11px;
  position: relative;
}
.ftr_contact_item_txt3.arr:before{
  content: "";
  display: block;
  width: 65px;
  aspect-ratio:65 / 5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.ftr_contact_item_txt3.br:before{
  background-image: url(/system_panel/uploads/images/arr_br.png);
}
.ftr_contact_item_txt3.or:before{
  background-image: url(/system_panel/uploads/images/arr_or.png);
}

.ftr_1{
  text-align: center;
  color: #fff;
  padding-top: 40px;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  margin-top: 20px;
}
.ftr_sns{
  margin-top: 35px;
}


@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_contact_item_inner{
    padding: 46px 19px 16px;
  }

  .ftr_2{
    display: none;
  }

}
@media (min-width:768px){
  .footer{
    -webkit-mask-size: cover;
    margin-top: -50px;
    padding-top: 138px;
  }

  .ftr_contact_wrap{
    padding-bottom: 80px;
  }
  .ftr_contact_items{
    margin-inline:-15px;
    margin-top: 60px;
  }
  .ftr_contact_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .ftr_contact_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_contact_item_inner{
    padding: 58px 16px 23px;
  }
  .ftr_contact_item_icon{

  }
  .ftr_contact_item_txt{

  }
  .ftr_contact_item_txt1{

  }
  .ftr_contact_item_txt2{
    font-size: 18px;
  }
  .ftr_contact_item_num{
    font-size: 26px;
  }
  .ftr_contact_item_txt3{

  }

  .ftr_1{
    padding-top: 65px;
  }

  .ftr_2{
    background: #fff;
    padding: 10px 0;
    margin-top: 50px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-right: 1px solid #b6b6b6;
    padding: 0 16px;
  }
  .ftr_link:hover{
    color: var(--main-color); 
  }

  .ftr_copy{
    padding: 30px 0;
  }
}
@media (min-width:1024px){
  .footer{
    padding-top: 176px;
    -webkit-mask-size: 100% 100%;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_items{

  }
  .ftr_contact_item{

  }
  .ftr_contact_item_inner{
    padding: 58px 30px 23px;
  }
  .ftr_contact_item_icon{

  }
  .ftr_contact_item_txt{

  }
  .ftr_contact_item_txt1{

  }
  .ftr_contact_item_txt2{
    font-size: 22px;
  }
  .ftr_contact_item_num{
    font-size: 30px;
  }
  .ftr_contact_item_txt3{

  }

  .ftr_link{
    padding: 0 25.5px; 
  }
}
@media (min-width:1200px){

  .ftr_contact_item_txt2{
    font-size: 25px;
  }
  .ftr_contact_item_num{
    font-size: 38px;
  }
}


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


/* テーブル用 */
.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 #f29c9f;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #f29c9f;
  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: -70px;
}
#company_contact{
  top: -50px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  border-radius: 22.5px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0.16em;
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.sec_title{
  text-align: center;
  position: relative;
  z-index: 1;
}
.sec_title_en:before{
  content: "";
  display: block;
  width: 33px;
  aspect-ratio:33 / 36;
  background-image: url(/system_panel/uploads/images/ba.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -52px;
  left: 50%;
  transform:translateX(-50%);
}
.sec_title_en.t_gr{
  color: #0abab5;
}
.sec_title_en span{
  letter-spacing:0.06em;

}
.sec_title strong{
  color: #ff86bf;
}
.sec_title_en.gr:before{
  background-image: url(/system_panel/uploads/images/ba_gr.png);
}
.sec_title_en{
  position: relative;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.sec_title_ja{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  margin-top: 10px;
}
.sec_title_ja em{
  font-style: normal;
  color: #096bff;
}


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

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

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

}

/*文章*/
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}

@media (max-width:374px){

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

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


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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

  .sec_title_ja{
    letter-spacing: 0;
  }

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

  .anchor{
    top: -160px;
  }

  .section:last-of-type {
    padding-bottom: 200px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 48px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 285px;
    font-size: 15px;
    padding: 13px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "→";
    top: 50%;
    right: 8px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }


  /* 見出し */
  .sec_title{

  }
  .sec_title_en:before{

  }
  .sec_title_en{
    position: relative;
    font-size: 18px;
  }
  .sec_title_ja{
    font-size: 28px;
  }

  /*文章*/
  .content_desc{

  }
}
@media (min-width:1024px){
  .section:last-of-type {
    padding-bottom: 225px;
  }


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

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

  /* 見出し */
  .sec_title{

  }
  .sec_title_en:before{

  }
  .sec_title_en{
    position: relative;
  }
  .sec_title_ja{
    font-size: 40px;
  }
  .sec_title_ja em{
    font-size: 45px;
  }

  /*文章*/
  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1200px){


}



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

}
.pg_home .section.sec1{
  margin-top: 90px;
}
.pg_home .section.sec2{
  -webkit-mask-image:url(/system_panel/uploads/images/bg1.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  padding-top: 140px;
  padding-bottom: 230px;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(55deg,rgba(252, 240, 235, 1) 0%, rgba(176, 225, 248, 1) 100%);

}
.pg_home .section.sec3{
  position: relative;
  margin-top: -195px;
  padding-top: 110px;
  padding-bottom: 200px;
}
.pg_home .section.sec3:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(55deg,rgba(181, 234, 233, 1) 0%, rgba(245, 217, 228, 1) 100%);
  z-index: -1;
}
.pg_home .section.sec4{
  -webkit-mask-image:url(/system_panel/uploads/images/bg4.png);
  -webkit-mask-size: cover;;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  margin-top: -53px;
  padding-top: 200px;
  padding-bottom: 100px;
}
.pg_home .section.sec4:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(55deg,rgba(242, 231, 234, 1) 0%, rgba(229, 237, 252, 1) 100%);
  z-index: -1;
}
.pg_home .section.sec5{
  -webkit-mask-image:url(/system_panel/uploads/images/bg5.png);
  -webkit-mask-size: cover;;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  margin-top: -53px;
  padding-top:130px;
}
.pg_home .section.sec5:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(186deg,rgba(249, 239, 235, 1) 0%, rgba(197, 229, 245, 1) 100%);
  z-index: -1;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

/*news*/
.home_news_outer{
  margin-top: 30px;
  position: relative;
}
.home_news_box{

}
.home_news_box .webgene-blog{
  display: flex;
  flex-wrap: nowrap;
}
.home_news_box .webgene-item{

}
.home_news_box .webgene-item a{

}
.home_news_box .webgene-item .box1{
  position: relative;
}
.home_news_box .webgene-item .img{
  overflow: hidden;
  border-radius: 10px;
}
.home_news_box .webgene-item .img:before{
  padding-top: 71.42%;
}
.home_news_box .webgene-item .img img{
  border-radius: 10px;
}
.home_news_box .webgene-item .box2{

}
.home_news_box .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  margin-top: 14px;
}
.home_news_box .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #0abab5;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2px 18px;
  border-radius: 0 0 0 10px;
}
.swiper-button-next:after{
  display: none;
}
.swiper-button-prev:after{
  display: none;
}

.swiper-button-next,
.swiper-button-prev{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  aspect-ratio:1 / 1;
  top: 39%;
}
.home_news_outer .swiper-button-next{
  right: -65px;
  background-image: url(/system_panel/uploads/images/right.png);
}
.companies_achiev_sub_items .swiper-button-next{
  top: 50%;
  background-image: url(/system_panel/uploads/images/right.png);
}
.companies_achiev_sub_items .swiper-button-prev{
  top: 50%;
  background-image: url(/system_panel/uploads/images/left.png);
}
.home_news_outer .swiper-button-prev{
  left: -65px;
  background-image: url(/system_panel/uploads/images/left.png);

}

/*concept*/
.home_concept_wrap{
  position: relative;
  z-index: 1;
}
.home_concept_wrap .content_desc{

}
.home_concept_img{
  margin-top: 40px;
} 
.home_concept_img:before{
  padding-top: 180px;
}
.home_concept_img img{
  border-radius: 30px;
}

/*companys*/
.home_companys_wrap{

}
.home_companys_tt{
  text-align: center;
  margin-top: 30px;
}
.home_companys_text{
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #fd9807;
  color: #fff;
  border-radius: 25px;
  padding: 6px 12px;
}
.home_companys_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.home_companys_item{
  width: 100%;
}
.home_companys_item:nth-child(n+2){
  margin-top: 20px;
}
.home_companys_item_inner{
  position: relative;
  background: #fff;
  padding: 18px 18px 20px;
}
.home_companys_item_inner:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #20bbb7;
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: -1;
}
.home_companys_item_tt{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
}
.home_companys_item_tt:after{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #e5e5e5;
  margin-top: 16px;
  margin-inline:auto;
}
.home_companys_item .content_desc{
  margin-top: 8px;
}
.home_companys_wrap .content_desc.btm{
  margin-top: 30px;
}

/*choise*/
.home_choise_wrap{
  border-radius: 20px;
  background: linear-gradient(160deg,rgba(11, 203, 251, 1) 0%, rgba(14, 198, 222, 1) 28%, rgba(30, 171, 52, 1) 100%);
  margin-top: 40px;
}
.home_choise_box{
  color: #fff;
  padding: 27px 15px 32px;
}
.home_choise_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.home_choise_tt:after{
  content: "";
  display: block;
  width: 54.05%;
  height: 5px;
  background: #fdd809;
  margin: 2px auto 0;
}
.home_choise_wrap .content_desc{

}
.home_choise_items{
  background: #fff;
  border-radius: 20px;
  padding: 21px 16px;
  margin-top: 22px;
}
.home_choise_items_inner{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-6px;
}
.home_choise_item{
  width: 50%;
  padding-inline:6px;
}
.home_choise_item_inner{
  position: relative;
}
.home_choise_item_img{

}
.home_choise_item_img:before{
  padding-top: 119.14%;
}
.home_choise_item_img img{
  border-radius: 10px;
}
.home_choise_item_tt{
  text-align: center;
  width: 89.36%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: 5.7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 2px;
}
.home_choise_item_tt.br{
  background: #88abda;
}
.home_choise_item_tt.or{
  background: #facd89;
}
.home_choise_item_tt.gr{
  background: #acd598;
}
.home_choise_item_tt.pr{
  background: #f29c9f;
}
.home_choise_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.home_choise_btns .read_more{

}

/*APPLICANT*/
.home_app_wrap{

}
.home_app_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}
.home_app_tt p{
  display: inline-block;
  background: #fff;
  padding: 2px 32px;
}
.home_app_imgs{
  position: relative;
  margin-top:40px;
}
.home_app_img{
  width: 51.35%;
}
.home_app_img.left{
  width: 51.35%;
  position: absolute;
  left: 0;
  top: 0;
}
.home_app_img.right{
  padding-top: 50px;
  margin-left: auto;
}
.home_app_img .img_fit:before{
  padding-top: 43.85%;
}
.home_app_img .img_fit img{
  border-radius: 20px;
}
.home_app_wrap .content_desc{

}
.content_desc_en{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  border-top: 1px dashed #b7b7b7;
  padding-top: 29px;
  margin-top: 25px;
}
.content_desc_en p{
  letter-spacing: 0.075em;
}

/*会社概要*/
.home_company_tbl {
  margin-top: 30px;
}
.home_company_tbl .table_rows_th,
.home_company_tbl .table_rows_td{
  border: 1px solid #eeeeee;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 15px;
}
.home_company_tbl .table_rows_th{
  background: #0abab5;
  color: #fff;
}
.home_company_tbl .table_rows_td{
  background: #fff;
}
/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_home .section.sec1{
    padding-bottom: 20px;
  }
  .pg_home .section.sec2{
    padding-bottom: 260px;
  }
  .pg_home .section.sec3{
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 126px;
  }

  .home_news_box{
    width: 85%; 
    margin: 0 auto;
  }
  .home_news_outer .swiper-button-next{
    right: -14px;
  }
  .home_news_outer .swiper-button-prev{
    left: -14px;
  }

  .home_choise_btns .read_more:first-child{
    margin-top: 0;
  }
  .home_choise_btns .read_more + .read_more{
    margin-top: 16px;
  }

  /*APPLICANT*/
  .home_app_img.left,
  .home_app_img.right{
    width: 80.35%;
  }
  .home_app_img.right{
    padding-top: 110px;
  }

  /*会社概要*/
  .home_company_tbl {

  }
  .home_company_tbl .table_rows_th,
  .home_company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .home_company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #eeeeee;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    margin-top: 100px;
  }
  .pg_home .section.sec2{
    -webkit-mask-size: cover;
    padding-top: 150px;
    padding-bottom: 250px;
  }
  .pg_home .section.sec3{
    margin-top: -195px;
    padding-top: 130px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec4{
    -webkit-mask-size: cover;
    margin-top: -53px;
    padding-top: 160px;
    padding-bottom:130px;
  }
  .pg_home .section.sec5{
    -webkit-mask-size: cover;;
    padding-top: 160px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*news*/
  .home_news_outer{
    margin-top: 40px;
  }
  .home_news_box{

  }
  .home_news_box .webgene-blog{

  }
  .home_news_box .webgene-item{

  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .box1{

  }
  .home_news_box .webgene-item .img{

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

  }
  .home_news_box .webgene-item .box2{

  }
  .home_news_box .webgene-item .title{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_outer .swiper-button-next{
    right: -38px;
  }
  .home_news_outer .swiper-button-prev{
    left: -38px;
  }

  /*concept*/
  .home_concept_wrap{

  }
  .home_concept_wrap .content_desc{
    margin-top: 28px;
  }
  .home_concept_img{
    margin-top:50px;
  } 
  .home_concept_img:before{
    padding-top: 400px;
  }
  .home_concept_img img{

  }

  /*companys*/
  .home_companys_wrap{

  }
  .home_companys_tt{
    margin-top: 53px;
  }
  .home_companys_text{
    font-size: 22px;
    padding: 6px 125px;
  }
  .home_companys_items{
    margin-inline:-15px;
    margin-top: 58px;
  }
  .home_companys_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_companys_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_companys_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .home_companys_item_inner{

  }
  .home_companys_item_tt{
    font-size: 19px;
  }
  .home_companys_item .content_desc{

  }
  .home_companys_wrap .content_desc.btm{
    margin-top: 46px;
  }

  /*choise*/
  .home_choise_wrap{
    margin-top: 50px;
  }
  .home_choise_box{

  }
  .home_choise_tt{
    font-size: 30px;
  }
  .home_choise_wrap .content_desc{
    margin-top: 26px;
  }
  .home_choise_items{
    padding: 21px 50px 16px;
  }
  .home_choise_items_inner{

  }
  .home_choise_item{

  }
  .home_choise_item:nth-child(n+3){
    margin-top: 12px;
  }
  .home_choise_item_inner{

  }
  .home_choise_item_img{

  }
  .home_choise_item_img:before{

  }
  .home_choise_item_img img{

  }
  .home_choise_item_tt{
    font-size: 20px;
  }

  .home_choise_btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }
  .home_choise_btns .read_more{

  }

  /*APPLICANT*/
  .home_app_wrap{

  }
  .home_app_tt{
    font-size: 20px;
  }
  .home_app_imgs{
    margin-top: 61px;
  }
  .home_app_img{

  }
  .home_app_img .img_fit:before{

  }
  .home_app_img .img_fit img{

  }
  .home_app_wrap .content_desc{
    margin-top: 41px;
  }
  .content_desc_en{

  }
  .home_app_wrap .read_more{
    margin-top: 27px;
  }

  /*会社概要*/
  .home_company_tbl {
    margin-top: 50px;
  }
  .home_company_tbl .table_rows_th,
  .home_company_tbl .table_rows_td{
    padding: 19.5px 15px;
  }
  .home_company_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .home_company_tbl .table_rows_td{
    border-left: 0;
    padding-left: 19px;
  }
  /*地図*/
  .gmap{
    margin-top: 70px;
  }
  .access_map iframe{
    height: 350px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    margin-top: 130px;
    padding-bottom: 60px;
  }
  .pg_home .section.sec2{
    -webkit-mask-size: 100% 100%;
    padding-top: 190px;
    padding-bottom: 358px;
  }
  .pg_home .section.sec3{
    margin-top: -210px;
    padding-top: 195px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec4{
    -webkit-mask-size: 100% 100%;
    margin-top: -53px;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .pg_home .section.sec5{
    -webkit-mask-size: 100% 100%;;
    padding-top: 200px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  /*news*/
  .home_news_outer{

  }
  .home_news_box{

  }
  .home_news_box .webgene-blog{

  }
  .home_news_box .webgene-item{

  }
  .home_news_box .webgene-item a{

  }
  .home_news_box .webgene-item .box1{

  }
  .home_news_box .webgene-item .img{

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

  }
  .home_news_box .webgene-item .box2{

  }
  .home_news_box .webgene-item .title{

  }
  .home_news_box .webgene-item .category{

  }
  .home_news_outer .swiper-button-next{
    right: -40px;
  }
  .home_news_outer .swiper-button-prev{
    left: -40px;
  }

  /*concept*/
  .home_concept_wrap{

  }
  .home_concept_wrap .content_desc{

  }
  .home_concept_img{
    margin-top: 70px;
  } 
  .home_concept_img:before{

  }
  .home_concept_img img{

  }

  /*companys*/
  .home_companys_wrap{

  }
  .home_companys_tt{

  }
  .home_companys_text{
    font-size: 25px;
    padding: 6px 125px;
  }
  .home_companys_items{

  }
  .home_companys_item{
    width: 33.333%;
  }
  .home_companys_item:nth-child(n+3){
    margin-top: 0;;
  }
  .home_companys_item:nth-child(n+4){
    margin-top: 45px;;
  }
  .home_companys_item_inner{

  }
  .home_companys_item_tt{
    font-size: 19px;
  }
  .home_companys_item .content_desc{

  }

  /*choise*/
  .home_choise_wrap{

  }
  .home_choise_box{

  }
  .home_choise_tt{
    font-size: 40px;
  }
  .home_choise_wrap .content_desc{

  }
  .home_choise_items{

  }
  .home_choise_items_inner{

  }
  .home_choise_item{
    width: 25%;
  }
  .home_choise_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_choise_item_inner{

  }
  .home_choise_item_img{

  }
  .home_choise_item_img:before{

  }
  .home_choise_item_img img{

  }
  .home_choise_item_tt{

  }
  .home_choise_btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 54px;
  }
  .home_choise_btns .read_more{
    margin: 0 10px;  
  }

  /*APPLICANT*/
  .home_app_wrap{

  }
  .home_app_tt{

  }
  .home_app_imgs{

  }
  .home_app_img{

  }
  .home_app_img .img_fit:before{

  }
  .home_app_img .img_fit img{

  }
  .home_app_wrap .content_desc{

  }
  .content_desc_en{

  }

  /*会社概要*/
  .home_company_tbl {

  }
  .home_company_tbl .table_rows_th,
  .home_company_tbl .table_rows_td{

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

  }
  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 400px;
  }
}
@media (min-width:1200px){
  /*news*/
  .home_news_outer .swiper-button-next{
    right: -42px;
  }
  .home_news_outer .swiper-button-prev{
    left: -42px;
  }

  /*companys*/
  .home_companys_item_tt{
    font-size: 20px;
  }
}
@media (min-width:1470px){
  /*news*/
  .home_news_outer .swiper-button-next{
    right: -65px;
  }
  .home_news_outer .swiper-button-prev{
    left: -65px;
  }
}
@media (min-width:1536px){

}

/*******************************
*　求職者の皆様へ
********************************/
.pg_forCompanies{

}
.pg_forCompanies .section.sec1{
  position: relative;
  padding-bottom: 20px;
}
.pg_forCompanies .section.sec1:after{
  content: "";
  display: block;
  width: 37.55%;
  aspect-ratio:721 / 613;;
  background-image: url(/system_panel/uploads/images/right_kasou.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -70px;
  right: 0;
  pointer-events: none;
}
.pg_forCompanies .section.sec2{
  -webkit-mask-image: url(/system_panel/uploads/images/bg_01.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  padding-top: 140px;
  padding-bottom: 130px;
}
.pg_forCompanies .section.sec2:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(16deg,rgba(246, 239, 237, 1) 0%, rgba(180, 226, 247, 1) 100%);
}
.pg_forCompanies .section.sec3{
  position: relative;
  margin-top: -50px;
  padding-top: 200px;
  padding-bottom: 200px;
}
.pg_forCompanies .section.sec3:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg,rgba(200, 228, 231, 1) 0%, rgba(247, 216, 228, 1) 100%);
  z-index: -1;
}
.pg_forCompanies .section.sec4{
  -webkit-mask-image: url(/system_panel/uploads/images/bg7.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  padding-top: 140px;
  margin-top: -50px;
}
.pg_forCompanies .section.sec4:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(0deg,rgba(187, 227, 246, 1) 0%, rgba(249, 240, 236, 1) 100%);
}
.pg_forCompanies .section.sec5{

}

/*見出し*/
.page_hdr_wrap{

}
.page_hdr_wrap .content_desc{
  margin-top: 30px;
}
.page_hdr_wrap .home_app_img.right{
  width: 52.25%;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.home_app_img_inner{
  padding: 10px 0 0 10px;
  position: relative;
}
.home_app_img_inner:before{
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background: #fff;
  border-radius: 20px 0 0 20px;
  position: absolute;
  top: 0;
  left: 0;
}

/*繰り返し*/
.companies_feature_wrap{
  position: relative;
  z-index: 2;
}
.companies_feature_items{
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.companies_feature_item{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.companies_feature_item:nth-child(n+2){
  margin-top: 50px;
}
.companies_feature_box1{
  width: 100%;
  order: 1;
}
.companies_feature_box1_img img{
  border-radius: 30px;
}
.companies_feature_box1_img:before{
  padding-top: 81.39%;
}
.companies_feature_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.companies_feature_box2_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.companies_feature_box2_num{
  font-size: 40px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}
.companies_feature_box2_num:after{
  content: "";
  display: block;
  width:20px;
  aspect-ratio:36 / 60;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
}
.companies_feature_item.gr .companies_feature_box2_num{
  color: #0abab5;
}
.companies_feature_item.gr .companies_feature_box2_num:after{
  background-image: url(/system_panel/uploads/images/gr_sl.png);
}
.companies_feature_item.pr .companies_feature_box2_num{
  color: #f89dca;
}
.companies_feature_item.pr .companies_feature_box2_num:after{
  background-image: url(/system_panel/uploads/images/pr_sl.png);
}
.companies_feature_item.or .companies_feature_box2_num{
  color: #feaf53;
}
.companies_feature_item.or .companies_feature_box2_num:after{
  background-image: url(/system_panel/uploads/images/or_sl.png);
}
.companies_feature_item.br .companies_feature_box2_num{
  color: #84b7fd;
}
.companies_feature_item.br .companies_feature_box2_num:after{
  background-image: url( /system_panel/uploads/images/br_sl.png);
}
.companies_feature_item.dg .companies_feature_box2_num{
  color: #5cb16c;
}
.companies_feature_item.dg .companies_feature_box2_num:after{
  background-image: url(/system_panel/uploads/images/de_sl.png);
}
.companies_feature_item.pu .companies_feature_box2_num{
  color: #dfa1f6;
}
.companies_feature_item.pu .companies_feature_box2_num:after{
  background-image: url(/system_panel/uploads/images/pu_sl.png);
}

.companies_feature_box2_text{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.42em;
  width: 100%;
  margin-top: 16px;
}
.companies_feature_box2 .content_desc{

}


/*achivement*/
.companies_achiev_wrap{
  position: relative;
  z-index: 2;
}
.companies_achiev_cate{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.companies_achiev_cate_item{
  width: 100%;
}
.companies_achiev_cate_item:nth-child(n+2){
  margin-top: 16px;;
}
.companies_achiev_cate_item_inner{
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  border-radius: 22.5px;
  color: #FFF;
  padding: 11px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.companies_achiev_cate_item_inner:hover{
  background: var(--sub-color);
  color: #fff;
}
.companies_achiev_cate_item_inner:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.companies_achiev_cate_item_inner p{
  letter-spacing: 0.16em;
}

.companies_achiev_items{
  margin-top: 40px;
}
.companies_achiev_item{


}
.companies_achiev_item:nth-child(n+2){
  margin-top: 50px;
}
.companies_achiev_item_outer{
  width: 98.01%;
  background: #fff;
  border-radius: 20px;
  position: relative;
  margin-inline:auto;
  padding: 30px 16px;
}
.companies_achiev_item_outer:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #20bbb7;
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: -1;
}
.companies_achiev_item_tt{
  font-size: 18px;
  font-weight: 600;
  background: #ffda59;
  padding: 4px 28px;
  display: flex;
  align-items: center;
}
.companies_achiev_item_tt .jpn:after{
  content: "／";
  margin: 0 6px;
}
.companies_achiev_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}
.companies_achiev_box1{
  width: 100%;
}
.companies_achiev_box1_img img{
  border-radius: 30px;
}
.companies_achiev_box1_img:before{
  padding-top: 86.58%;
}
.companies_achiev_box2{
  width: 100%;
  margin-top: 20px;
}
.companies_achiev_box2 .companies_feature_box2_text{
  padding-left: 0;
}
.companies_achiev_box2 .content_desc{

}

.companies_achiev_msg{
  text-align: center;
  line-height: 1.78em;
  margin-top: 40px;
}
.companies_achiev_sub_items{
  margin-top: 30px;
}
.companies_achiev_sub_items .home_choise_item_img:before{
  padding-top: 94.85%;
}
.companies_achiev_sub_items .home_choise_item_img img{
  border-radius: 30px;
}

.companies_contact_wrap{
  position: relative;
  z-index: 2;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_forCompanies .section.sec3{
    margin-top: -54px;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .page_hdr_wrap .home_app_img.right{
    width: 80.25%;
  }
  .page_hdr_wrap .home_app_img.right{
    padding-top: 100px;
  }
  .home_app_img_inner:before{
    width: 100%;
  }

  .companies_achiev_item_tt{
    font-size: 17px;
    flex-wrap: wrap;
    padding: 4px 10px;
  }
  .companies_achiev_box2 .companies_feature_box2_text{
    font-size: 18px;
  }
  .companies_achiev_msg{
    font-size: 17px; 
  }

  .companies_achiev_sub_items .home_choise_items_inner{
    display: flex;
    flex-wrap: nowrap;
  }
  .companies_achiev_sub_items .home_choise_item{
    width: 100%; 
  }


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

  }
  .pg_forCompanies .section.sec1{
    padding-bottom: 70px;
  }
  .pg_forCompanies .section.sec1:after{
    top: -134px;
    right: 0;
  }
  .pg_forCompanies .section.sec2{
    -webkit-mask-size: cover;
    padding-top: 200px;
    padding-bottom: 140px;
  }
  .pg_forCompanies .section.sec3{
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .pg_forCompanies .section.sec4{
    padding-top: 196px;
  }
  .pg_forCompanies .section.sec5{

  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_wrap .content_desc{
    margin-top: 50px;
  }

  /*繰り返し*/
  .companies_feature_wrap{

  }
  .companies_feature_items{
    margin-top: 60px;
  }
  .companies_feature_item{

  }
  .companies_feature_item:nth-child(n+2){
    margin-top: 80px;
  }
  .companies_feature_box1{

  }
  .companies_feature_box1_img img{

  }
  .companies_feature_box1_img:before{
    padding-top: 380px;
  }
  .companies_feature_box2{

  }
  .companies_feature_box2_tt{

  }
  .companies_feature_box2_num{
    font-size: 60px;
  }
  .companies_feature_box2_num:after{
    content: "";
    display: block;
    width:36px;
  }
  .companies_feature_box2_text{
    width: auto;
    font-size: 24px;
    padding-left: 52px;
    margin-top: 0;
  }
  .companies_feature_box2 .content_desc{
    margin-top: 30px;
  }

  /*achivement*/
  .companies_achiev_cate{
    margin-inline:-10px;
    margin-top: 50px;
  }
  .companies_achiev_cate_item{
    width: 50%;
    padding-inline:10px;
  }
  .companies_achiev_cate_item:nth-child(n+2){
    margin-top: 0;;
  }
  .companies_achiev_cate_item:nth-child(n+3){
    margin-top: 16px;;
  }
  .companies_achiev_cate_item_inner{

  }

  .companies_achiev_items{
    margin-top: 60px;
  }
  .companies_achiev_item{

  }
  .companies_achiev_item:nth-child(n+2){
    margin-top: 80px;
  }
  .companies_achiev_item_outer{
    padding: 55px 16px;
  }
  .companies_achiev_item_tt{
    font-size: 20px;
  }
  .companies_achiev_item_tt .jpn:after{
    content: "／";
    margin: 0 6px;
  }
  .companies_achiev_item_inner{

  }
  .companies_achiev_box1{

  }
  .companies_achiev_box1_img img{

  }
  .companies_achiev_box1_img:before{

  }
  .companies_achiev_box2{
    margin-top: 30px;
  }
  .companies_achiev_box2 .companies_feature_box2_text{

  }
  .companies_achiev_box2 .content_desc{
    margin-top: 14px;
  }

  .companies_achiev_sub_items{
    margin-top: 40px;
  }
  .companies_achiev_sub_items .home_choise_items_inner{
    margin-inline:-15px;
  }
  .companies_achiev_sub_items .home_choise_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .companies_achiev_sub_items .home_choise_item:nth-child(n+3){
    margin-top: 0;
  }
  .companies_achiev_msg.companies_feature_box2_text{
    padding-left: 0;
    margin-top: 60px;
  }
  .content_desc.after{
    margin-top: 59px;
  }
  .companies_achiev_sub_items .home_choise_item_tt{
    font-size: 17px;
  }
}
@media (min-width:1024px){
  .pg_forCompanies{

  }
  .pg_forCompanies .section.sec1{
    padding-bottom: 140px;
  }
  .pg_forCompanies .section.sec1:after{
    top: -134px;
    right: 0;
  }
  .pg_forCompanies .section.sec2{
    -webkit-mask-size: 100% 100%;
    padding-top: 200px;
    padding-bottom: 188px;
  }
  .pg_forCompanies .section.sec3{
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .pg_forCompanies .section.sec4{
    padding-top: 196px;
    -webkit-mask-size: 100% 100%;
  }
  .pg_forCompanies .section.sec5{

  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_wrap .content_desc{
    margin-inline:-10px;
    margin-top: 70px;
  }

  /*繰り返し*/
  .companies_feature_wrap{

  }
  .companies_feature_items{
    margin-top: 80px;
  }
  .companies_feature_item{

  }
  .companies_feature_item:nth-child(n+2){
    margin-top: 86px;
  }
  .companies_feature_item:nth-child(odd) .companies_feature_box1{
    order: 1;
  }
  .companies_feature_item:nth-child(odd) .companies_feature_box2{
    order: 2;
  }
  .companies_feature_item:nth-child(even) .companies_feature_box1{
    order: 2;
  }
  .companies_feature_item:nth-child(even) .companies_feature_box2{
    order: 1;
  }
  .companies_feature_box1{
    width: 42.79%;
    padding-top: 12px;
  }
  .companies_feature_box1_img img{

  }
  .companies_feature_box1_img:before{
    padding-top: 81.39%;
  }
  .companies_feature_box2{
    width: 51.35%;
    margin-top: 0;
  }
  .companies_feature_box2_tt{

  }
  .companies_feature_box2_num{
    font-size: 70px;
  }
  .companies_feature_box2_text{
    font-size: 22px;
  }
  .companies_feature_box2 .content_desc{
    margin-top: 43px;
  }

  /*achivement*/
  .companies_achiev_cate{
    margin-top: 68px;
  }
  .companies_achiev_cate_item{
    width: 25%;
  }
  .companies_achiev_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .companies_achiev_cate_item:nth-child(n+5){
    margin-top:30px;
  }
  .companies_achiev_cate_item_inner{

  }

  .companies_achiev_items{
    margin-top: 77px;
  }
  .companies_achiev_item{

  }
  .companies_achiev_item_outer{
    padding: 47px 55px;
  }
  .companies_achiev_item_tt{
    font-size: 25px;
  }
  .companies_achiev_item_inner{

  }
  .companies_achiev_box1{
    width: 41.83%;
    padding-top: 6px;
  }
  .companies_achiev_box1_img img{

  }
  .companies_achiev_box1_img:before{

  }
  .companies_achiev_box2{
    width: 51.53%;
    margin-top: 0;
  }
  .companies_achiev_box2 .companies_feature_box2_text{

  }
  .companies_achiev_box2 .content_desc{

  }
  .companies_achiev_sub_items .home_choise_item_tt{
    font-size: 20px;
  }
}
@media (min-width:1200px){
  .companies_feature_box2_num{
    font-size: 85px;
  }
  .companies_feature_box2_text{
    font-size: 28px;
    margin-right: -16px;
  }

}

/*******************************
*　企業の方へ
********************************/
.pg_forCompanies.compa{

}
.pg_forCompanies.compa .section.sec1{

}
.pg_forCompanies.compa .section.sec2{
  -webkit-mask-image: url(/system_panel/uploads/images/bg_001.png);
}
.pg_forCompanies.compa .section.sec2:after{
  background: linear-gradient(90deg,rgba(234, 236, 238, 1) 0%, rgba(184, 227, 247, 1) 100%);
}
.pg_forCompanies.compa .section.sec3{

}
.pg_forCompanies.compa .section.sec4{

}
.pg_forCompanies.compa .section.sec5{

}

/*見出し*/
.page_hdr_wrap.companys .home_app_img{
  width: 100%;
}
.page_hdr_wrap.companys .home_app_img .img_fit:before{
  padding-top: 333px;
}

/*お悩み*/
.company_problem_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.company_problem_item{
  width: 100%;
}
.company_problem_item:nth-child(n+2){
  margin-top: 40px;
}
.company_problem_item_inner{
  border-radius: 30px;
}
.company_problem_item_tt{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #fd9807;
  border-radius: 30px 30px 0 0;
  padding: 16px 0;
}
.company_problem_item_content{
  background: #fff;
  border-radius: 0 0 30px 30px;
  padding: 25px 16px;
}
.company_problem_item_content_list{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 21px;
}
.company_problem_item_content_list:nth-child(n+2){
  margin-top: 12px;
}
.company_problem_item_content_list strong{
  font-weight: 600;
  color: #ff0000;
}
.company_problem_item_content_list:before{
  content: "";
  display: block;
  width: 16px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/gr_check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 5px;
}
.companies_feature_wrap.problem .content_desc{

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

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

}
@media (max-width:767px){
  .pg_forCompanies.compa .section.sec2{
    padding-bottom: 100px;
  }
}
@media (min-width:768px){
  .pg_forCompanies.compa{

  }
  .pg_forCompanies.compa .section.sec1{

  }
  .pg_forCompanies.compa .section.sec2{
    padding-bottom: 80px;
  }
  .pg_forCompanies.compa .section.sec3{
    padding-bottom: 100px;
  }
  .pg_forCompanies.compa .section.sec4{
    padding-top: 140px;
  }
  .pg_forCompanies.compa .section.sec5{

  }

  /*見出し*/
  .page_hdr_wrap.companys .content_desc{
    margin-top: 30px;
  }
  .page_hdr_wrap.companys .home_app_imgs{
    margin-top: 40px;
  }

  /*お悩み*/
  .company_problem_items{
    margin-inline:-15px; 
    margin-top: 60px;
  }
  .company_problem_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .company_problem_item:nth-child(n+2){
    margin-top: 0;
  }
  .company_problem_item_inner{

  }
  .company_problem_item_tt{
    font-size: 20px;
    padding: 21px 0;
  }
  .company_problem_item_content{
    padding: 25px 12px 25px 12px;
  }
  .company_problem_item_content_list{

  }
  .companies_feature_wrap.problem .content_desc{
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  .pg_forCompanies.compa{

  }
  .pg_forCompanies.compa .section.sec1{
    padding-bottom: 100px;
  }
  .pg_forCompanies.compa .section.sec2{
    padding-bottom: 100px;
  }
  .pg_forCompanies.compa .section.sec3{
    padding-top: 160px;
    padding-bottom: 200px;
  }
  .pg_forCompanies.compa .section.sec4{
    padding-top: 196px;
  }
  .pg_forCompanies.compa .section.sec5{

  }

  /*見出し*/
  .page_hdr_wrap.companys .content_desc{
    margin-top: 41px;
  }

  /*お悩み*/
  .company_problem_items{
    margin-top: 73px;
  }
  .company_problem_item{

  }
  .company_problem_item_inner{

  }
  .company_problem_item_tt{
    font-size: 25px;
  }
  .company_problem_item_content{
    padding: 25px 12px 25px 12px;
  }
  .company_problem_item_content_list{

  }
  .companies_feature_wrap.problem .content_desc{

  }
}
@media (min-width:1200px){
  .pg_forCompanies.compa .section.sec1{
    padding-bottom: 140px;
  }
  .pg_forCompanies.compa .section.sec2{
    padding-bottom: 140px;
  }
  .pg_forCompanies.compa .section.sec3{
    padding-top: 250px;
    padding-bottom: 200px;
  }

  /*お悩み*/
  .company_problem_item_content{
    padding: 25px 12px 25px 36px;
  }

}

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


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

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

}

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


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #1eab34;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

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

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

}
.posts_detail .meta{
  border-bottom: none;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.075em;
  background: #0abab5;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 4px 0;
  margin-left: 20px;
  border-radius: 5px;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.075em;
}
.posts_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #545454;
  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){
  .body_newsDetail .section.sec1{
    padding-bottom: 100px;
  }
  .body_news .home_news_box{
    width: 100%;
  }

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

  .posts_detail .meta{
    display: flex;
    align-items: center;
  }
  .posts_detail .meta .category{
    padding: 2px 20px;
    margin-left: 20px;
  }
}
@media (min-width:768px){

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

  .body_news .home_news_box .webgene-blog{
    flex-wrap: wrap;
    margin-inline:-10px;
  }
  .body_news .home_news_box .webgene-item{
    width: 50%;
    padding-inline:10px;
  }
  .body_news .home_news_box .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }

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

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5px;
    margin-bottom: 8px;
  }
  .posts_detail .meta .category{
    width: 155px;
    padding: 2px 0;
    margin-left: 0;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .body_newsDetail .read_more{
    margin-top: 55px;
  }
}
@media (min-width:1024px){
  .body_news .pg_forCompanies .section.sec1:after,
  .body_newsDetail .pg_forCompanies .section.sec1:after{
    top: 39px;
    right: -150px;
  }

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

  }

  .body_news .home_news_box .webgene-blog{
    flex-wrap: wrap;
    margin-inline:-15px;
  }
  .body_news .home_news_box .webgene-item{
    width: 33.33%;
    padding-inline:15px;
  }
  .body_news .home_news_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .body_news .home_news_box .webgene-item:nth-child(n+4){
    margin-top: 50px;;
  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

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

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{  
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 15px 19px 21px 17px;
  background: #d6eceb;
  letter-spacing: 0.08em;
  line-height: 1.8125em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
  line-height: 1.9em;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid  #b80000;
  color:  #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 #d6d8d8;
  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 #d6d8d8;
}
.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 #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 76px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 285px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  border-radius: 22.5px;
  color: #FFF;
  padding: 12px 20px;
  margin: 52px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.pg_contact .formBtn.formSend:hover{
  background: var(--sub-color);
}
.pg_contact .formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover:after{
  right: 10px;;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 3px;
  letter-spacing: 0.08em;;
  font-size: 16px;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 33px;
}
.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.84em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}
.pg_contact .formTd.phone .d-inline-block{
  margin-left: 28px;
}
.contact_form{
  margin-top: 40px;
}

.privacy_item_box{
  padding: 30px 53px 30px 23px;
  height: 397px;
  overflow: auto;
  background: #fff;
  margin-top: 65px;
}

.contact_tt.thanks{
  margin-top: 30px;
}
@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%;
  }

  .contact_form{
    margin-top: 70px;
  }
  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 26px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #0abab5;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 48px;
}
.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 {
    font-size: 19px;
    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;
  }

  .privacy_item_box{
    padding: 30px 10px;
  }

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


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

  .radioArea .d-inline-block .label{
    font-size: 14px;
    letter-spacing: 0;
  }
  .formError{
   margin-top:-40px!important;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.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_contact .formTd.phone .d-inline-block{
    margin-left: 0;
    margin-top: 16px;
  }
}


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

  }

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


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


}

