@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "Oswald", "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

  -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: none;
}

/* ロゴ */
.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{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: #0068b7;
  font-size: 20px;
  font-weight: 500;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  border-radius: 26px;
  width: 219px;
  height: 55px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a p{
  letter-spacing: 0;
}
.hdr_contact a.email p:before{
  content:"\f003";
  font-size: 19px;
  font-weight: 700;
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: #0068b7;
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

  .hdr1{
    padding: 20px 32px 20px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 170px;
  }

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

  }

}


/*******************************
*　メインビジュアル
********************************/

/* MV */
.mv{
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 80px;
  background: #f7f3ed;
  background-image: url('/system_panel/uploads/images/mv_bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 120px;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* MVキャッチコピー */
.mv_catch{
  text-align: center;
  margin-bottom: 30px;
}
.mv_catch_h1{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}
.mv_catch_h1 strong{
  font-size: 1.433em;
  font-weight: 900;
}
.mv_catch_txt{
  font-size: 17px;
  font-weight: 900;
}
.mv_catch_txt p{
  letter-spacing: 0;
}

/* MVイラスト */
.mv_illust{
  display: flex;
  justify-content: center;
}
.mv_illust_inner{
  position: relative;
  z-index: 1;
  -webkit-transform: translateX(-8.4%);
  transform: translateX(-8.4%);
}

/* MVピン */
.mv_illust_btn{
  position: absolute;
  z-index: 2;
  width: 50px;
  aspect-ratio: 1 / 1;
  --mv-width: 1268;
}
.gjs-dashed .mv_illust_btn{
  background: rgba(255,0,0,0.5);
}
.mv_illust_btn p{
  font-size: 0;
  font-weight: 700;
  /*filter: drop-shadow(0 0 3px #aaa);*/
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  color: #0684e4;
  color: #f41c0c;
  text-shadow    :
    3px  3px 1px #ffffff,
    -3px  3px 1px #ffffff,
    3px -3px 1px #ffffff,
    -3px -3px 1px #ffffff,
    3px  0px 1px #ffffff,
    0px  3px 1px #ffffff,
    -3px  0px 1px #ffffff,
    0px -3px 1px #ffffff;
}

.mv_illust_btn p:before{
  content: "\f041";
  font-size: 20px;
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
}
.mv_illust_btn p:after{
  content: "CLICK";
  font-size: 9px;
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #FFF;
}
.mv_illust_btn.pos1{
  top: 13%;
  left: 36.7%;
  width: calc(57 / var(--mv-width) * 100%);
  aspect-ratio: 57 / 240;
}
.mv_illust_btn.pos2{
  top: 11.5%;
  left: 52%;
  width: 78px;
  width: calc(78 / var(--mv-width) * 100%);
  aspect-ratio: 78 / 60;
}
.mv_illust_btn.pos3{
  top: 52.5%;
  left: 24.5%;
  width: calc(125 / var(--mv-width) * 100%);
  aspect-ratio: 125 / 94;
}
.mv_illust_btn.pos4{
  top: 42%;
  left: 58.5%;
  width: calc(75 / var(--mv-width) * 100%);
  aspect-ratio: 75 / 82;
}
.mv_illust_btn.pos5{
  top: 69%;
  left: 33.5%;
  width: calc(155 / var(--mv-width) * 100%);
  aspect-ratio: 157 / 128;
}
.mv_illust_btn.pos6{
  top: 23%;
  left: 83%;
  width: calc(200 / var(--mv-width) * 100%);
  aspect-ratio: 200 / 112;
}
.mv_illust_btn.pos7{
  top: 43%;
  left: 77%;
  width: calc(50 / var(--mv-width) * 100%);
  aspect-ratio: 50 / 40;
}
.mv_illust_btn.pos8{
  top: 44%;
  left: 85.7%;
  width: calc(50 / var(--mv-width) * 100%);
  aspect-ratio: 50 / 80;
}
.mv_illust_btn.pos9{
  top: 65%;
  left: 80%;
  width: calc(85 / var(--mv-width) * 100%);
  aspect-ratio: 85 / 95;
}
.mv_illust_btn.pos10{
  top: 81%;
  left: 55.6%;
  width: calc(70 / var(--mv-width) * 100%);
  aspect-ratio: 70 / 92;
}
.mv_illust_btn.pos11{
  top: 74%;
  left: 71%;
  width: calc(108 / var(--mv-width) * 100%);
  aspect-ratio: 108 / 65;
}
.mv_illust_btn.pos12{
  top: 64%;
  left: 95%;
  width: calc(45 / var(--mv-width) * 100%);
  aspect-ratio: 45 / 26;
}
.mv_illust_btn.pos13{
  top: 90%;
  left: 86.5%;
  width: calc(60 / var(--mv-width) * 100%);
  aspect-ratio: 60 / 38;
}




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

}
.mv_txt_p2{

}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
    padding-top: 100px;
    padding-bottom: 200px;
    background-size: auto 368px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }


  /* MVキャッチコピー */
  .mv_catch{
    margin-bottom: 15px;
  }
  .mv_catch_h1{
    font-size: 30px;
  }
  .mv_catch_h1 strong{
    font-size: 1.433em;
  }
  .mv_catch_txt{
    font-size: 26px;
  }

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

  }
  .mv_txt_p2{

  }


  /* MVイラスト */
  .mv_illust{
  }
  .mv_illust_inner{
    -webkit-transform: translateX(-3.4%);
    transform: translateX(-3.4%);
  }


  .mv_illust_btn p:before{
    font-size: 30px;
  }
  .mv_illust_btn p:after{
    font-size: 12px;
  }

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


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

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

  }
  .mv_txt_p2{

  }

  .mv_illust_btn p:before{
    font-size: 36px;
  }
  .mv_illust_btn p:after{
    font-size: 12px;
  }

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

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

  /* MVキャッチコピー */
  .mv_catch{
    margin-bottom: 15px;
  }
  .mv_catch_h1{
    font-size: 60px;
  }

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

  }
  .mv_txt_p2{

  }

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

  /* MV */
  .mv{
    padding-top: 50px;
  }

}
@media (min-width:1921px){
  .mv{
    background-size: auto 492px;
  }
}

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

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

}



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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  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;
}


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


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

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

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

}


@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

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

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

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


}



/*******************************
*　HOME
********************************/
.pg_home{
  overflow: hidden;
}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{
  padding-top: 30px;
  padding-bottom: 20px;
}
.pg_home .section.sec3{
  padding-top: 160px;
  padding-bottom: 80px;
  background: #f7f3ed;
  background-image:
    url('/system_panel/uploads/images/home_sec_bg1b.png'),
    url('/system_panel/uploads/images/home_sec_bg2.png')
    ;
  background-repeat: no-repeat;
  background-position: center top, center bottom;
  background-size: auto 180px, auto 60px;
}
.pg_home .section.sec4{
  padding-bottom: 0;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{
  padding-top: 50px;
  padding-bottom: 75px;
}


@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec2{
    padding-top: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 260px;
    padding-bottom: 100px;
    background-size: auto 280px, auto 100px;
  }
  .pg_home .section.sec4{
    padding-bottom: 60px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .pg_home .section.sec3{
    background-size: auto 310px, auto 100px;
  }

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

  .pg_home{
    margin-top: -105px;
  }
  .pg_home .section.sec1{
    padding-top: 195px;
  }
  .pg_home .section.sec2{
    padding-top: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 605px;
    padding-bottom: 180px;
    background-size: auto 584px, auto 180px;
  }
  .pg_home .section.sec4{
    padding-bottom: 60px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 200px;
    padding-bottom: 150px;
  }

}

@media (min-width:1921px){
  
  .pg_home .section.sec3{
    background-size: auto 780px, auto 240px;
  }
}


/* メイン部分 */

/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 235px;
  width: 45%;
  margin-left: auto;
  margin-right: 20px;
  /*margin-left: -55px;*/
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.home_about_box2{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_about_head{
  display: flex;
  flex-direction: column;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 1;
  font-size: 24px;
  margin-left: auto;
}
.home_about_head_en{
  /*font-size: 160px;*/
  font-size: 3.47em;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #faf9e1;
  position: relative;
  z-index: 1;
  right: -50px;
}
.home_about_head_ja{
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.home_about_head_ja strong{
  font-size: 1em;
  font-weight: 900;
  color: #0068b7;
}

.home_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.888;
  text-align: justify;
}

.home_about_illust1,
.home_about_illust2{
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.home_about_illust1{
  aspect-ratio: 359 / 603;
  background-image: url(/system_panel/uploads/images/about_illust1.png);
  top: -30px;
  left: -150px;
  width: 110%;
}
.home_about_illust2{
  aspect-ratio: 515 / 430;
  background-image: url(/system_panel/uploads/images/about_illust2.png);
  width: 515px;
  width: 200px;
  right: -50px;
  bottom: -75px;
}

/* 看板 */
.home_signboard{
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 80px;
}
.pg_home .section.sec4 .home_signboard{
  padding-bottom: 0;
}
.home_signboard_title_ja{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}
.home_signboard_title_ja strong{
  font-size: 1em;
  font-weight: 900;
  color: #0068b7;
}
.home_signboard_title_ja_sub{
  font-size: 20px;
  font-weight: 900;
  margin-top: 3px;
}
.home_signboard_title_en{
  font-size: 60px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #faf9e1;
  position: relative;
  z-index: -1;
  margin-top: -0.55em;
}
.home_signboard_txt{
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
  margin-top: 20px;
}


/* 看板リスト */
.home_signboard_wrap{
  position: relative;
  z-index: 1;
}
.home_signboard_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
.home_signboard_list_item{
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  z-index: 1;
}
.home_signboard_list_item:nth-child(n+2){
  margin-top: 30px;
}
.home_signboard_list_item:after{
  content: "";
  display: block;
  background: #7ecef4;
  border-radius: 20px;
  border: 1px solid #c9c9c9;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: -5px;
  left: 5px;
  right: 5px;
}
.home_signboard_list_item.color1:after{
  background: #7ecef4;
}
.home_signboard_list_item.color2:after{
  background: #acd598;
}
.home_signboard_list_item.color3:after{
  background: #8c97cb;
}
.home_signboard_list_item.color4:after{
  background: #facd89;
}
.home_signboard_list_item.color5:after{
  background: #f29c9f;
}
.home_signboard_list_item.color6:after{
  background: #88abda;
}

.home_signboard_list_item_inner{
  height: 100%;
  background: #f7f3ed;
  border-radius: 20px;
  border: 1px solid #c9c9c9;
  padding: 10px 10px 20px;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}
.home_signboard_list_item_img{
  border-radius: 20px;
  overflow: hidden;
}
.home_signboard_list_item_img.img_fit:before{
  padding-top: 76.92%;
}
.home_signboard_list_item_title{
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #c9c9c9;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 15px;
  margin-bottom: 8px;
}
.home_signboard_list_item_txt{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-align: justify;
  padding: 0 5px;
}
.home_signboard_list_item_txt strong{
  font-size: 17px;
  font-weight: 900;
}

.home_signboard_list:before{
  content: "";
  width: 72px;
  aspect-ratio: 72 / 100;
  background-size: contain;
  background-image: url('/system_panel/uploads/images/signboard_illust2.png');
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: -50px;
  left: 15px;
}

.home_signboard_bg{
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
.home_signboard_bg.pos1{
  width: calc(419px * 0.5);
  aspect-ratio: 419 / 396;
  background-image: url('/system_panel/uploads/images/signboard_illust3.png');
  top: 50%;
  left: 0;
  -webkit-transform: translate(-48%, -46%);
  transform: translate(-48%, -46%);
}
.home_signboard_bg.pos2{
  width: calc(306px * 0.5);
  aspect-ratio: 306 / 202;
  background-image: url('/system_panel/uploads/images/signboard_illust4.png');
  right: 0;
  bottom: 0;
  -webkit-transform: translate(42%, 38%);
  transform: translate(42%, 38%);
}
.home_signboard_bg.pos3{
  width: calc(276px * 0.3);
  aspect-ratio: 276 / 278;
  background-image: url('/system_panel/uploads/images/signboard_illust1.png');
  right: 50px;
  bottom: 0;
  -webkit-transform: translate(72%, 27%);
  transform: translate(72%, 27%);
}



/* SERVICE */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.home_service_box1{
  width: 50%;
  display: flex;
  flex-direction: row-reverse;
}
.home_service_box2{
  width: 100%;
}
.home_service_head{
  display: flex;
  flex-direction: column;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 1;

}
.home_service_head_ja{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-right: -35px;
  margin-left: 20px;
}
.home_service_head_ja strong{
  font-size: 1em;
  font-weight: 900;
  color: #0068b7;
}
.home_service_head_en{
  font-size: 60px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #FFF;
  position: relative;
  z-index: -1;
}
.home_service_txt{
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_service_img{
  -webkit-mask-image: url(/system_panel/uploads/images/home_service_img_fr.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.home_service_img.img_fit:before{
  padding-top: 138.86%;
}

/* NEWS */
.home_news{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*flex-direction: row-reverse;*/
}
.home_news_box1{
  width: 50%;
  display: flex;
  flex-direction: row-reverse;
}
.home_news_box2{
  width: 100%;
}
.home_news_head{
  display: flex;
  flex-direction: column;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 1;

}
.home_news_head_ja{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-right: -35px;
}
.home_news_head_ja strong{
  font-size: 1em;
  font-weight: 900;
  color: #0068b7;
}
.home_news_head_en{
  font-size: 60px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #faf9e1;
  position: relative;
  z-index: -1;
  margin-right: -20px;
}


/* RECRUIT */
.home_recruit{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_recruit_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_recruit_box1_inner{
  background: #0068b7;
  color: #FFF;
  padding: 25px 15px 30px;
  border-radius: 30px 0 30px 0;
}
.home_recruit_box2{
  width: 100%;
}
.home_recruit_title{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.578;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.home_recruit_title:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #FFF;
  margin-top: 15px;
}
.home_recruit_title_en{
  font-size: 74px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #faf9e1;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 100%;
  margin-right: -0.125em;
  margin-bottom: -0.15625em;
}
.home_recruit_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.666;
  text-align: justify;
}
.home_recruit_img{
  overflow: hidden;
  border-radius: 0 0 30px 0;
}
.home_recruit_img.img_fit:before{
  padding-top: 66.666%;
}

.home_recruit_box1 .read_more{
  margin-top: 17px;
  margin-left: 3.5%;
}

.home_recruit_illust1,
.home_recruit_illust2{
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.home_recruit_illust1{
  width: 329px;
  aspect-ratio: 329 / 286;
  background-image: url(/system_panel/uploads/images/recruit_illust1.png);
  top: 0;
  left: 0;
  -webkit-transform: translate(-53.08%, -42.18%);
  transform: translate(-53.08%, -42.18%);
}
.home_recruit_illust2{
  width: 498px;
  aspect-ratio: 498 / 413;
  background-image: url(/system_panel/uploads/images/recruit_illust2.png);
  bottom: 0;
  right: 0;
  -webkit-transform: translate(24%, 33%);
  transform: translate(24%, 33%);
}
.home_recruit_illust1{
  width: calc(329px * 0.4);
}
.home_recruit_illust2{
  width: calc(498px * 0.4);
}


@media (max-width:374px){

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

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

  .home_service{
    justify-content: flex-start;
  }
  .home_service_box1{
    min-height: 620px;
  }
  .home_service_head_ja{
    margin-left: 10px;
  }

  .home_recruit_img{
    margin-bottom: 20px;
    border-radius: 0 30px 0 30px;
    border-radius: 30px 0 0;
  }

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

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 260px;
    margin-left: -55px;
    margin-right: 0;
    margin-bottom: 0;

  }
  .home_about_box2{
    width: calc(100% - 260px);
  }
  .home_about_head{
    font-size: 32px;
  }
  .home_about_head_en{
    right: -50px;
  }
  .home_about_head_ja{
  }

  .home_about_txt{
    font-size: 18px;
    line-height: 1.888;
  }
  .home_about_illust1{
    top: -55px;
    left: -80px;
    width: 152.76%;
  }
  .home_about_illust2{
    width: 300px;
    right: -60px;
    bottom: -100px;
  }


  /* 看板 */
  .home_signboard{
    text-align: center;
    padding-bottom: 80px;
  }
  .home_signboard_title_ja{
    font-size: 36px;
  }
  .home_signboard_title_ja_sub{
    font-size: 22px;
    margin-top: 3px;
  }
  .home_signboard_title_en{
    font-size: 115px;
    margin-top: -0.55em;
  }
  .home_signboard_txt{
    font-size: 18px;
    line-height: 1.888;
    text-align: center;
    margin-top: 20px;
  }


  /* 看板リスト */
  .home_signboard_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_signboard_list_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home_signboard_list_item:after{
    left: 10px;
    right: 10px;
  }
  .home_signboard_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_signboard_list_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_signboard_list_item_inner{
    padding: 10px 10px 20px;
  }
  .home_signboard_list_item_title{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  .home_signboard_list_item_txt{
    font-size: 16px;
    text-align: justify;
    padding: 0 5px;
  }
  .home_signboard_list_item_txt strong{
    letter-spacing: 0;
  }

  .home_signboard_bg.pos1{
    width: calc(419px * 0.6);
  }
  .home_signboard_bg.pos2{
    width: calc(306px * 0.6);
  }
  .home_signboard_bg.pos3{
    width: calc(276px * 0.8);
    bottom: 10px;
  }
  
  .home_signboard_list:before{
    width: 57px;
    top: -30px;
  }


  /* SERVICE */
  .home_service{
    flex-direction: row-reverse;
  }
  .home_service_box1{
    width: 54.05%;
  }
  .home_service_box2{
    width: 42.79%;
    width: 40%;
  }
  .home_service_head{
    margin-right: -20px;
    margin-left: 20px;
  }
  .home_service_head_ja{
    font-size: 36px;
    margin-right: -50px;
    margin-left: 0;
  }
  .home_service_head_en{
    font-size: 130px;
  }
  .home_service_txt{
    font-size: 16px;
    /*line-height: 1.888;*/
    padding-top: 3px;
  }

  .home_service_head,
  .home_service_txt{
    min-height: 625px;
  }

  /* NEWS */
  .home_news{
  }
  .home_news_box1{
    width: 160px;
    margin-left: 0;
  }
  .home_news_box2{
    width: calc(100% - 190px);
  }

  .home_news_head{
    margin-left: 20px;
  }
  .home_news_head_ja{
    font-size: 36px;
    margin-left: 0;
    margin-right: 0;

  }
  .home_news_head_en{
    font-size: 130px;
    margin-right: -35px;
  }

  /* RECRUIT */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 77.02%;
  }
  .home_recruit_box1_inner{
    padding: 25px 175px 30px 30px;
    border-radius: 50px 0 0 0;
  }
  .home_recruit_box2{
    width: 51.35%;
    width: 45.35%;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
  }
  .home_recruit_title{
    font-size: 28px;
    margin-right: -50px;
    margin-bottom: 30px;
  }
  .home_recruit_title:after{
    width: 150px;
    margin-top: 25px;
  }
  .home_recruit_title_en{
    font-size: 110px;
    right: 0;
    bottom: 100%;
    margin-right: -0.125em;
    margin-bottom: -0.15625em;
  }
  .home_recruit_txt{
    font-size: 18px;
  }
  .home_recruit_img{
    border-radius: 0 0 50px 0;
  }

  .home_recruit_box1 .read_more{
    margin-top: 17px;
  }

  .home_recruit_illust1{
    width: calc(329px * 0.5);
  }
  .home_recruit_illust2{
    width: calc(498px * 0.5);
  }


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

  /* ABOUT */
  .home_about_head{
    font-size: 36px;
  }

  .home_signboard{
    padding-bottom: 0;
  }

  /* 看板リスト */
  .home_signboard_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_signboard_list_item{
    width: 33.333%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .home_signboard_list_item:after{
    left: 15px;
    right: 15px;
  }
  .home_signboard_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_signboard_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_signboard_list_item_inner{
    padding: 10px 10px 20px;
  }
  .home_signboard_list_item_title{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  .home_signboard_list_item_txt{
    font-size: 16px;
    text-align: justify;
    padding: 0 5px;
  }
  .home_signboard_list_item_txt strong{
    letter-spacing: 0.075em;
  }
  .home_signboard_wrap  + .read_more{
    margin-top: 50px;
  }
  
  .home_signboard_list:before{
    width: 72px;
    top: -50px;
  }
  
  /* SERVICE */
  .home_service_head{
    margin-right: -20px;
    margin-left: 20px;
  }
  .home_service_head_ja{
    margin-right: -50px;
    margin-left: 0;
  }
  .home_service_head_en{
  }
  .home_service_txt{
    font-size: 18px;
    line-height: 1.888;
  }

  /* NEWS */
  .home_news_head{
  }
  .home_news_head_ja{
  }
  .home_news_head_en{
  }

  /* RECRUIT */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 77.02%;
  }
  .home_recruit_box1_inner{
    padding: 25px 30px 30px 30px;
  }
  .home_recruit_box2{
    width: 51.35%;
    width: 40%;
  }
  .home_recruit_title{
    font-size: 30px;
    margin-bottom: 30px;
  }
  .home_recruit_title:after{
    width: 250px;
    margin-top: 25px;
  }
  .home_recruit_title_en{
    font-size: 120px;
  }
  .home_recruit_txt{
    font-size: 18px;
  }
}
@media (min-width:1200px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    width: 235px;
    margin-left: -55px;
  }
  .home_about_box2{
    width: calc(100% - 235px - 50px);
  }
  .home_about_head{
    font-size: 46px;
  }
  .home_about_head_en{
    right: -50px;
  }
  .home_about_head_ja{
  }

  .home_about_txt{
    font-size: 18px;
    line-height: 1.888;
  }
  .home_about_illust1{
    top: -186px;
    left: -190px;
    width: 152.76%;
  }
  .home_about_illust2{
    width: 515px;
    right: -260px;
    bottom: -142px;
  }

  /* 看板 */
  .home_signboard{
    text-align: center;
  }
  .home_signboard_title_ja{
    font-size: 58px;
  }
  .home_signboard_title_ja_sub{
    font-size: 24px;
    margin-top: 3px;
  }
  .home_signboard_title_en{
    font-size: 160px;
    margin-top: -0.55em;
  }
  .home_signboard_txt{
    font-size: 18px;
    line-height: 1.888;
    margin-top: 20px;
  }

  /* SERVICE */
  .home_service{
  }
  .home_service_box1{
    width: 54.05%;
  }
  .home_service_box2{
    width: 42.79%;
  }
  .home_service_head{
    margin-right: -20px;
    margin-left: 40px;
  }
  .home_service_head_ja{
    font-size: 46px;
    margin-right: -35px;
  }
  .home_service_head_en{
    font-size: 160px;
  }
  .home_service_txt{
    font-size: 18px;
    line-height: 1.888;
    padding-top: 3px;
  }

  .home_signboard_bg.pos1{
    width: calc(419px * 1);
  }
  .home_signboard_bg.pos2{
    width: calc(306px * 1);
  }
  .home_signboard_bg.pos3{
    width: calc(276px * 1);
    right: 0;
    bottom: 0;
  }

  .home_service_head,
  .home_service_txt{
    min-height: 700px;
  }

  /* NEWS */
  .home_news{
  }
  .home_news_box1{
    width: 235px;
    margin-left: -55px;
  }
  .home_news_box2{
    width: calc(100% - 235px - 50px);
  }
  .home_news_head{
    margin-left: 40px;
  }
  .home_news_head_ja{
    font-size: 46px;
    margin-right: -35px;
  }
  .home_news_head_en{
    font-size: 160px;
    margin-right: -50px;
  }
  .home_news_txt{
    font-size: 18px;
    line-height: 1.888;
    padding-top: 3px;
  }

  /* RECRUIT */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 77.02%;
  }
  .home_recruit_box1_inner{
    padding: 25px 30px 30px 30px;
  }
  .home_recruit_box2{
    width: 51.35%;
  }
  .home_recruit_title{
    font-size: 38px;
    margin-bottom: 30px;
  }
  .home_recruit_title:after{
    width: 250px;
    margin-top: 25px;
  }
  .home_recruit_title_en{
    font-size: 160px;
  }
  .home_recruit_txt{
    font-size: 18px;
  }

  .home_recruit_illust1{
    width: calc(329px * 1);
  }
  .home_recruit_illust2{
    width: calc(498px * 1);
  }
}





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

.works_list.slider .webgene-blog{
  flex-wrap: nowrap;
}
.works_list.slider .webgene-item{
  width: 200px;
  padding: 0;
  margin: 0 5px;
}
.works_list.slider .webgene-item:nth-child(n+2){
  margin-top: 0;
}
.works_list.slider + .read_more{
  margin-top: 65px;
}

@media (max-width:374px){

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

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

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

  .works_list.slider .webgene-item{
    width: 250px;
    margin: 0 10px;
  }

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


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

  .works_list.slider .webgene-item{
    width: 350px;
    margin: 0 15px;
  }

}


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


}


.mv_illust_btn p{
  transition: 0.2s all;
  animation: bouncePin 1.5s ease-in-out infinite;
}
.mv_illust_btn:hover p{
  scale: 1.4;
  filter: brightness(1.4);
}

@keyframes bouncePin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}