@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #004382;
  --sub-color: #FFF;
  --txt-color: #181818;
  --txt-gradation: linear-gradient(90deg, #36b7f3 0%, #004382 100%);

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


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #181818;
  /*background-image: url();*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  /*  --logo-height: 30px;*/
}
.hdr1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #000;
  width: 160px;
  padding: 5px 5px;
  border-radius: 18px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .header{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
  }
  .hdr1 {
    padding: 10px;
    justify-content: flex-start;
  }

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

  .hdr_contact_btn{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    transition: 0.2s all;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    /*background: #000;*/
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    display: block;
    border-radius: 24px;
    width: 228px;
    background: #fff;
    text-align: center;
    color: #004382;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    font-weight: 400;
    padding: 14px;
    border: 1px solid #004382;
  }
  .hdr_contact_btn:hover{
    background: #ddd;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 20px;
  }
}
@media (min-width:1024px){

  .header{
    /*    --logo-height: 46px;*/
    padding: 20px 35px 15px 32px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    /*    --logo-height: 46px;*/
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

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

}
@media (min-width:1720px){
  .header{
    padding: 21px 35px 15px 35px;
  }
  /* ヘッダースリム */
  .header.slim{
    padding-top: 15px;
  }

}


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

/* サブ */
.mv_sub{
  width: 150px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 80px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_sub_img{

}
.mv_sub_img.img_fit:before{
  padding-top: 110%;
}

/* キャッチ */
.mv_catch{
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 80px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_catch_img{

}
.mv_catch_txt{
  display: flex;
  justify-content: center;
  margin-top: 30px;

}
.mv_catch_txt_inner{
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-mincho);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_catch_txt p{
  letter-spacing: 0.025em;
  line-height: 2.25;
}

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

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

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

.mv_inner{

}
.mv_img{

}
.mv_tt_box{
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}
.mv_tt1{
  font-size: 36px;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0.025em;
  line-height: 1;
  text-shadow: 1.231px 1.576px 6px rgba(161, 161, 161, 1);
}
.mv_tt1:first-child{
  margin-right: -37px;
}
.mv_tt2{
  font-size: 15px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  text-shadow: 1.231px 1.576px 6px rgba(161, 161, 161, 1);
  /*    border-top: 1px solid #fff;
      border-bottom: 1px solid #fff;*/
  margin: 29px 0 8px;
  position: relative;
  padding: 5px;
}
.mv_tt2:before{
  content: "";
  display: block;
  width: 100%;
  max-width: 790px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.mv_tt2:after{
  content: "";
  display: block;
  width: 100%;
  max-width: 790px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.mv_slide_box{
  /*padding-inline:1.3%;*/
  padding-inline:0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /*transform:translateX(-50%);*/
  z-index: 2;
}
.mv_slide_box .swiper{
  padding-inline:1.3%;
}
.mv_slide_items{
  display: flex;
  flex-wrap: nowrap;
  
  /*position: absolute;
  bottom: 0;
  left: 0;
  right: 0;*/
}
.infiniteslide_wrap {
  display: flex;
}
.infiniteslide_wrap .mv_slide_items {
  flex-shrink: 0;
}

.mv_slide_items{
  width: 300vw;
}
.infiniteslide_wrap .mv_slide_items{
  width: auto;
}
.mv_slide_item{
  width: 180px;
  margin-right: 20px;
}
.mv_slide_item_img:before{
  padding-top: 125%;
}
.mv_slide_item:nth-child(odd){
  /*padding-top: 50px;*/
}
.mv_slide_item img{
  border-radius: 10px;
}

.gjs-dashed .mv_slide_box{
  position: inherit;
}
.gjs-dashed .mv_slide_items{
  display: flex;
  flex-wrap: wrap;
  width: auto;
}
.gjs-dashed .mv_slide_item{
  width: 20%;
}
@media (min-width:768px){
  .mv_inner{

  }
  .mv_img{

  }
  .mv_tt_box{

  }
  .mv_tt1{
    font-size: 50px;
  }
  .mv_tt2{
    font-size: 18px;
  }
  .mv_slide_box{

  }
  .mv_slide_items{

  }
  .mv_slide_item{
    width: 250px;
    margin-right: 30px;
  }
  .mv_slide_item_img:before{
    padding-top: 125.71%;
    ;
  }
}
@media (min-width:1024px){


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

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

  }
  .mv_txt_p2{

  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
    padding-top: 800px;
  }
  .mv_img.img_fit img{
    object-position: left center;
  }

  /* サブ */
  .mv_sub{
    width: 280px;
    top: 55%;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_sub_img{

  }
  .mv_sub_img.img_fit:before{
    padding-top: 110%;
  }

  /* キャッチ */
  .mv_catch{
    width: 240px;
    top: 50%;
    right: 135px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .mv_inner{

  }
  .mv_img{

  }
  .mv_tt_box{

  }
  .mv_tt1{
    font-size: 60px;
  }
  .mv_tt2{
    font-size: 21px;
  }
  .mv_slide_box{

  }
  .mv_slide_items{

  }
  .mv_slide_item{
    width: 250px;
    margin-right: 30px;
  }
  .mv_slide_item_img:before{
    padding-top: 125.71%;
    ;
  }
}
@media (min-width:1200px){
  .mv_inner{

  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
    padding-top: 900px;
  }
  .mv_tt_box{

  }
  .mv_tt1{
    font-size: 95px;
  }
  .mv_tt2{

  }
  .mv_slide_box{

  }
  .mv_slide_items{

  }
  .mv_slide_item{
    width: 300px;
    margin-right: 30px;
  }
  .mv_slide_item_img:before{
    padding-top: 125.71%;
    ;
  }
}
@media (min-width:1470px){

  .mv_img.img_fit:before{
    padding-top: 100vh;
    padding-top: 1115px;
  }
  .mv_slide_item_img:before{
    padding-top: 125.71%;
    ;
  }

  .mv_slide_item{
    width: 350px;
    margin-right: 30px;
  }
}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}






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

.footer{
  margin-top: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 20px;
}
.footer:before{

  /*content: "";
  background: rgba(0,0,0,0.75);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;*/
}
.footer .container{
  position: relative;
  z-index: 2;
}

.ftr1{
  border-top: none;
  border-bottom: none;
  padding: 35px 0 10px;
  position: relative;
  z-index: 1;
}
.ftr1:before{
  content: "";
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.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: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_box1{

}
.ftr_contact_box2{

}

.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_items_item{

}

.ftr_contact_tt_en{
  font-size: 100px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;

}
.ftr_contact_tel{

}
.ftr_contact_tel_txt1{

}
.ftr_contact_tel_txt2{

}

.ftr_contact_email{

}
.ftr_contact_email a{

}
.ftr_contact_email a{

}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  width: 100%;
  font-size: 14px;
  text-align: center;
  background: #004382;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 8px 0;
}

/* バナー */
.ftr_banners{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.ftr_banners_item{
  width: 50%;
  padding: 0 5px;
}
.ftr_banners_item:nth-child(n+3){
  margin-top: 10px;
}
.ftr_banners_item_img{
  display: block;
  transition: 0.2s all;
}
.ftr_banners_item_img:hover{
  transform: scale(1.02);
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #000;
}
.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 > a:hover{
  color: #000000;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #000;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #000;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #e5e5e5;
}
.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: #696969;
}
.pagetop a i{
  font-size: 40px;
}



.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 480px;
}
.ftr_contact_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_inner{

}
.ftr_contact_box .tt2_en{
  text-shadow: 1.231px 1.576px 6px rgba(161, 161, 161, 1);
}
.ftr_contact_box .read_more{

}
.ftr_contact_box .read_more a{
  max-width: 100%;
  width: 100%;
}
.read_more a p.sub{
  font-size: 12px;
  font-weight: 700;
}

.ftr_1{
  padding: 50px 0;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_add{
  margin-top: 30px;
}
.ftr_add .name{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  ;
  margin-top: 18px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link:before{

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

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

  body{
    padding-bottom: 56px;
  }

  .mv_tt_box{
    top: 35%;
  }
  .mv_img.img_fit:before{
    padding-top: 85svh;
  }

  .ftr_logo img{
    display: block;
    width: 160px;
    margin-inline:auto;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_contact_img:before{
    padding-top: 250px;
    padding-top: 320px;
  }
  .ftr_contact_box{
    position: inherit;
    position: absolute;
    inset:0;
    transform: none;
    padding: 30px 0;
    bottom: 0;
    top: auto;
  }
  .ftr_contact_box .read_more a{
    padding: 14px 50px 14px 25px!important;
    ;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_txt{
    line-height: 2;
  }
}
@media (min-width:768px){
  .footer{
    padding-bottom: 30px;
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img{

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

  }
  .ftr_contact_inner{
    width: 60.23%;
  }
  .ftr_contact_box .tt2_en{

  }
  .ftr_contact_box .read_more{

  }
  .ftr_contact_box .read_more a{
    padding: 10px 69px 10px 25px !important;
  }

  .ftr_1{
    padding: 80px 0;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 46.98%;
    padding-top: 20px;
  }
  .ftr_add{
    margin-top: 55px;
  }
  .ftr_add .name{

  }
  .ftr_add_txt{

  }
  .ftr_1_box2{
    width: 42.76%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr_link{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
    color: #004382;
  }
  .ftr_link:hover{
    color:#c5c5c5;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 20px;
  }
  .ftr_link:before{
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 1;
    background: #004382;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    ;
    left: 0;
  }
  .ftr_link:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #004382;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .ftr_link p{
    letter-spacing: 0.05em;
  }
  .ftr_link:before{

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

  .ftr_contact_inner{
    width: 50.23%;
  }
  .ftr_contact_box .read_more a{
    padding: 10px 69px 10px 25px !important;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{

  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{
    padding-top: 480px;
  }
  .ftr_contact_box{
    top: 49%;
  }
  .ftr_contact_inner{
    width: 32.23%;
  }
  .ftr_contact_box .tt2_en{

  }
  .ftr_contact_box .read_more{
    margin-top: 60px;
  }
  .ftr_contact_box .read_more a{
    padding: 10px 69px 10px 25px !important;
  }

  .ftr_1{
    padding: 104px 0 107px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 32.98%;
  }
  .ftr_add{

  }
  .ftr_add .name{

  }
  .ftr_add_txt{

  }
  .ftr_1_box2{

  }
  .ftr_links{

  }
  .ftr_link{

  }
  .ftr_link:before{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_add{

  }
  .ftr_add .name{

  }
  .ftr_add_txt{

  }
  .ftr_1_box2{

  }
  .ftr_links{

  }
  .ftr_link{
    width: 46.15%;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 26px;
  }
  .ftr_link:before{

  }
}
@media (min-width:1360px){
  .ftr_contact_box .read_more a{
    padding: 18px 69px 18px 25px !important;
  }
}
@media (min-width:1470px){


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

}



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


/* テーブル用 */
.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 #181818;
  background: #ffffff;
  font-weight: 500;
  color: #000;
}
.webgene-pagination li.selected{
  border: 0;
  background: #181818;
  color: #fff;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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



/* 見出し */
.tt2{

  margin-bottom: 0px;
}
.tt2_outer{
  position: relative;
}
.tt2_outer.fff{
  color: #fff;
}
.tt2_outer.center{
  text-align: center;
}
.tt2_en{
  font-size: clamp(2.5rem, 1.5rem + 5vw, 7.5rem);
  font-weight: 600;
  letter-spacing: 0;
  font-family: var(--font-en);
  background: var(--txt-gradation);
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  display: inline-block;
}
.tt2_en.nogld{
  background:none;
  ;
  color:  #fff;
  ;
  -webkit-background-clip: none;
  -webkit-text-fill-color: inherit;
}
.tt2_en p{
  letter-spacing: 0;
  white-space: nowrap;
}
.tt2_border{
  position: relative;
  margin-top: 38px;
}
.tt2_border:before{
  content: "";
  display: block;
  width: 12px;
  aspect-ratio:1;
  background: #004382;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.tt2_border:after{
  content: "";
  display: block;
  width: 100%;
  ;
  height: 1px;
  background: #004382;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.tt2_border.fff:before{
  background: #fff;
}
.tt2_border.fff:after{
  background: #fff;
}
.tt2_en.center{
  text-align: center;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: -1.6em;
}


/* 文章 */
.cmn_txt{
  font-size: 16px;
  letter-spacing: 0em;
  font-weight: 400 !important;
  line-height: 1.875;
  text-align: justify;

}

/* セクション */
.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{

}

.sec_sub_tt{
  margin-top: 36px;
}
.sec_sub_tt.center{
  text-align: center;
}
.sec_sub_tt.fff{
  color: #fff;
}
.sec_tt_text{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0;

}
.sec_tt_text_1{
  font-weight: 700;
}
.content_desc{
  font-size:16px;
  font-weight: 400;
  line-height:2.125em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc p{
  letter-spacing: 0;
}


.read_more.bg_gr a{
  background: #e5e5e5;
}
.read_more a{
  display: block;

  height: auto!important;
}
.home_sec6_box2 .read_more a p:nth-child(n+2){
  font-size: 12px;
  letter-spacing: 0;
}
.read_more a{
  padding: 14px 20px 14px 25px !important;
}
.read_more a:after{
  height: 100%!important;
}
.read_more.lg a:after{
  width: 46px;
}
.read_more.lg a{
  padding: 20px 73px 20px 25px !important;
}
.read_more.lg a p:nth-child(n+2){
  padding: 0 50px 0 0;
}
.read_more.lg a:nth-child(n+2){
  margin-top: 13px;
}
@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;
  }

  .tt2_border{
    margin-top: 20px;
  }

  .read_more a p{
    padding: 0!important;
  }

}
@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{
    min-width: 300px;
    font-size: 16px;
    padding: 20px 20px;
    margin: 5px 5px;
  }

  .read_more a:after{
    right: 20px;
    width: 50px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 40px;
  }
  .tt2_en{

  }
  .tt2_ja{
    font-size: 28px;
    margin-top: -1.6em;
  }


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.12;
  }


  .sec_tt_text{
    font-size: 24px;
  }
  .content_desc{

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

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

  /* ボタン */
  .read_more a{
    min-width: 250px;
    font-size: 18px;
    padding: 0px 20px 20px 0;
    margin: 5px 5px 5px 0;
  }

  /* 見出し */
  .tt2_en{

  }
  /*.tt2{
    margin-bottom: 50px;
  }

  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

  .read_more.lg a{
    padding: 10px 73px 10px 25px !important;
  }
}
@media (min-width:1200px){
  /* 見出し */

  .tt2_en{

  }

  .sec_tt_text{
    font-size: 32px;
  }
  .sec_tt_text_1{
    font-size: 20px;
  }
  .content_desc.center{
    text-align: center;
  }

  .read_more.lg a{
    padding: 10px 73px 10px 25px !important;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 40px;
  }
  .tt2_en{

  }
  .tt2_en.mid{
    font-size: 220px;
  }
  .tt2_ja{
    font-size: 34px;
    margin-top: -1.8em;
  }

  .read_more.lg a{
    padding: 20px 73px 20px 25px !important;
  }
}

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

.read_more.lg a p:first-child{
  padding-left: 34px;
}

/*******************************
*　HOME
*******************************/

.pg_home{

}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  background: linear-gradient(159deg,rgba(54, 183, 243, 1) 0%, rgba(0, 67, 130, 1) 99%);
}
.pg_home .section.sec4{
  padding-bottom: 40px;
  ;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

  background: linear-gradient(159deg, rgba(54, 183, 243, 1) 0%, rgba(0, 67, 130, 1) 99%);
  padding-bottom: 50px;
}

@media (max-width:767px){

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

  }
  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-bottom: 80px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 80px;
    padding-bottom: 60px;
    ;
  }
  .pg_home .section.sec5{
    padding-top: 128px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding-bottom: 50px;
  }


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


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

  }
  .pg_home .section.sec1{
    padding-top: 140px;
    padding-bottom: 61px;
  }
  .pg_home .section.sec2{
    padding-bottom: 106px;
  }
  .pg_home .section.sec3{
    padding-top: 104px;
    padding-bottom: 111px;
  }
  .pg_home .section.sec4{
    padding-top: 107px;
    padding-bottom: 0;
  }
  .pg_home .section.sec5{
    padding-bottom: 193px;
  }
  .pg_home .section.sec6{
    padding: 0;
  }

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


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


}





.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
}
.home_sec1_box1 .content_desc{

}
.home_sec1_box2{
  width: 100%;
  margin-top: 30px;
}
.home_sec1_box2_img:before{
  padding-top: 73.56%;
}

/*英文字*/
.lg_en{
  text-align: center;
  font-size: clamp(3.75rem, 1rem + 13.75vw, 17.5rem);
  font-weight: 700;
  font-family: var(--font-en);
  background: var(--txt-gradation);
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lg_en p{
  letter-spacing: 0;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/bg_text.jpg) no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home_sec2_wrap .content_desc.bright{
  line-height: 2.4em;
  /*text-shadow: #fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px,#fff 1px 1px 20px;*/
  filter: drop-shadow(0 0 6px #FFF);
  margin-top: -1.5em;
}
.home_sec2_wrap .content_desc.bright p{
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}

/*WHAT WE DO.*/
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec3_item_inner{
  color: #fff;
}
.home_sec3_item_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.home_sec3_item_h3{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}
.home_sec3_item_en{
  font-size: 16px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.home_sec3_item_box2{
  margin-top: 9px;
}
.home_sec3_item_box2_tt{

}
.home_sec3_item_box2 .home_sec3_item_box2_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.home_sec3_item_box2 .content_desc{
  line-height: 1.75em;
  margin-top: 12px;
}
.home_sec3_item_img:before{
  padding-top:  53.47%;
}
.home_sec3_item_img img{
  border-radius: 10px;
}
.home_sec3_items .read_more a{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.home_sec3_items .read_more a:hover{
  background: #FFF !important;
}
.home_sec3_items .read_more a:hover p{
  color: #004382 !important;
}
.home_sec3_items .read_more a p{
  color: #fff;
}
.home_sec3_items .read_more.read_more a:before{
  background: #FFF;
}
.home_sec3_items .read_more.read_more a:after{
  /*background: #fff;*/
  color: #004382;
}
.home_sec3_items .read_more a:hover:after{
  color: #004382;
}

/*topics*/
.home_sec4_box{
  overflow: hidden;
}
.news_list.home_sec4_box{
  margin-top: 30px;
}
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
  border-bottom: 0;
  border-top: 0;
  padding:0 5px 10px;
}
.home_sec4_box.news_list .webgene-item .box2{
  padding-bottom: 0;
}
.home_sec4_box.news_list .webgene-item:first-child{
  border-top: 0;
}
.home_sec4_box.news_list .webgene-item{
  border-bottom: 0;
  position: relative;
}
.news_list .webgene-item:nth-child(n+3){
  padding-top: 20px;
  padding-bottom: 0;
}
.news_list .webgene-item a{
  border-bottom: 0;
  border-top: 0;
}
.home_sec4_box.news_list .webgene-item .img.img_fit:before{
  padding-top: 80%;
}
.news_list .webgene-item .img img{
  border-radius: 10px;
}
.home_sec4_box.news_list .webgene-item .box1{
  width: auto;
}
.home_sec4_box.news_list .webgene-item .box2{
  width: auto;
  margin-top: 12px;
}
.news_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  background: #004382;
  color: #fff;
  border-radius: 5px;
  padding: 3px 16px;
}
.news_list .webgene-item .date{
  font-size: 14px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 14px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 7px;
}
.home_sec4_wrap .read_more{
  margin-top: 40px;
}

/* ボーダー用 */
.home_sec4_box.news_list .webgene-item a:after{
  display: none;
}
.home_sec4_box.news_list .webgene-item:first-child:before{
  display: block;
}
.home_sec4_box.news_list .webgene-item:before,
.home_sec4_box.news_list .webgene-item:after{
  background: #c3bfbf;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.home_sec4_box.news_list .webgene-item:before{
  width: 1px;
  height: 100000px;
}
.home_sec4_box.news_list .webgene-item:after{
  height: 1px;
}

/*insta*/
.insta_box{
  margin-top: 40px;
}
.insta_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_box .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_box .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_box .webgene-item a{

}
.insta_box .webgene-item .img_fit:before{
  padding-top: 132%;
}
.insta_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

/*その他サービス*/
.home_sec6_wrap{

}
.home_sec6_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_sec6_box1 .home_slide{

}
.home_sec6_box1 .home_slide.no1{


}
.home_sec6_box1 .home_sec6_box_item{
  width: 200px;
  margin-inline:10px;
  ;
}
.home_sec6_box1 .img_fit:before{

}
.home_sec6_box2{
  width: 100%;
  order: 1;
}
.home_sec6_box2 .tt2_outer{

}
.home_sec6_box2 .content_desc{
  color: #fff;
  line-height: 1.875em;
}
.home_sec6_box2 .read_more{

}
.home_sec6_box2 .read_more a{

}
.home_sec6_box2 .tt2_en{
  text-align: left;
}
@media (max-width:374px){

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

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

  .home_sec6_box1 .home_slide{

  }
  .home_sec6_box1 .home_slide.no2{
    margin-top: 30px;
  }

}
@media (max-width:767px){
  .home_sec3_item_tt{
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .home_sec3_item_en{
    width: 100%;
    margin-top: 5px;
  }

  /* 横 */
  /*  .home_sec4_box.news_list .webgene-item{
      border-top: 1px solid #c3bfbf;
    }*/

  /* 縦 */
  .home_sec4_box.news_list .webgene-item:nth-child(2):before,
  .home_sec4_box.news_list .webgene-item:nth-child(3):before,
  .home_sec4_box.news_list .webgene-item:nth-child(4):before{
    content: "";
  }
  /* 横 */
  .home_sec4_box.news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
  .home_sec4_box.news_list .webgene-item:nth-last-child(n+2){
    padding-bottom: 20px;
  }

  .home_sec6_wrap{
    display: flex;
    flex-wrap: wrap;
  }
  .home_sec6_box1 .img_fit:before{
    padding-top: 230px;
  }
  .home_sec6_box1 .home_slide.no1{
  }
  .home_sec6_box1 .home_slide.no2{
    margin-top: 16px;
  }
  .home_sec6_box1 .home_sec6_box_item{
    min-width: 200px;
  }

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

  }
  .home_sec1_box1{

  }
  .home_sec1_box1 .read_more{
    margin-top: 48px;
  }
  .home_sec1_box1 .content_desc{
    margin-top: 32px;
  }
  .home_sec1_box2{
    margin-top: 40px;
  }
  .home_sec1_box2_img:before{

  }

  /*英文字*/
  .lg_en{

  }
  .home_sec2_wrap .content_desc.bright{
    font-size: 18px;
    margin-top: -2.5em;
    text-align: center;
  }
  .home_sec2_wrap .content_desc{

  }

  /*WHAT WE DO.*/
  .home_sec3_items{
    margin-top: 66px;
  }
  .home_sec3_item{

  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 40px;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_tt{

  }
  .home_sec3_item_h3{
    font-size: 24px;
  }
  .home_sec3_item_en{
    font-size: 18px;
  }
  .home_sec3_item_box2{

  }
  .home_sec3_item_box2_tt{

  }
  .home_sec3_item_box2 .home_sec3_item_box2_tt{
    font-size: 21px;
  }
  .home_sec3_item_box2 .content_desc{

  }
  .home_sec3_item_img:before{
padding-top: 90.47%;
  }

  /*topics*/
  .news_list.home_sec4_box{
    margin-top: 50px;
  }
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .home_sec4_box.news_list .webgene-item{
    width: 50%;
    padding:0 15px;
    ;
  }
  .news_list .webgene-item:nth-child(n+2){

  }
  .home_sec4_box.news_list .webgene-item:nth-child(n+3){
    padding-top: 30px;
    padding-bottom: 0;
  }

  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .category{
    padding: 3px 10px;
    min-width: 138px;
  }
  .news_list .webgene-item .date{
    margin-top: 14px;
  }
  .home_sec4_box.news_list .webgene-item .title{
    font-size: 16px;
    line-height: 1.75em;
  }
  .home_sec4_wrap .read_more{
    margin-top: 80px;
  }

  /*insta*/
  .insta_box{
    margin-top: 60px;
  }
  .insta_box .webgene-blog{
    margin-inline:-2px;
  }
  .insta_box .webgene-item{
    width: 33.333%;
    padding-inline:2px;
  }
  .insta_box .webgene-item:nth-child(n+3){
    margin-top:0;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 20px;
    ;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }

  /*その他サービス*/
  .home_sec6_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
  }
  .home_sec6_box1{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .home_sec6_box1 .home_slide{
    width: 100%;
  }
  .home_sec6_box1 .home_sec6_box_item{
    width: 250px;
  }
  .home_sec6_box1 .img_fit:before{
    padding-top: 111.7%;
  }
  .home_sec6_box1 .img_fit img{
    border-radius: 10px;
  }
  .home_sec6_box2{
    width: 100%;
  }
  .home_sec6_box2 .tt2_outer{

  }
  .home_sec6_box2 .content_desc{

  }
  .home_sec6_box2 .read_more{

  }
  .home_sec6_box2 .read_more a{
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width:1024px){
  .home_sec2_wrap .content_desc.bright{
    font-size: 18px;
    margin-top: -2.5em;
  }

  /*topics*/
  .news_list.home_sec4_box{
    margin-top: 73px;
  }
  .home_sec4_box.news_list .webgene-blog{
    margin-inline:-20px;
  }
  .home_sec4_box.news_list .webgene-item{
    width: 25%;
    padding:0 20px 43px;
  }
  .home_sec4_box.news_list .webgene-item:nth-child(n+3){
    padding-top: 0;
    margin-top: 0;
  }
  .home_sec4_box.news_list .webgene-item:nth-child(n+4){
    padding-top: 0;
    margin-top: 0;
  }
  .home_sec4_box.news_list .webgene-item:nth-child(n+5){
    padding-top: 49px;
    padding-bottom: 0;
  }

  /* 縦 */
  .home_sec4_box.news_list .webgene-item:nth-child(2):before,
  .home_sec4_box.news_list .webgene-item:nth-child(3):before,
  .home_sec4_box.news_list .webgene-item:nth-child(4):before{
    content: "";
  }
  /* 横 */
  .home_sec4_box.news_list .webgene-item:nth-child(4n+1):not(:first-child):after{
    content: "";
    width: 400%;
  }
}
@media (min-width:1200px){

  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 38.48%;
  }
  .home_sec1_box1 .content_desc{

  }
  .home_sec1_box2{
    width: 57.23%;
    padding-top: 62px;
    margin-top: 0;
  }
  .home_sec1_box2_img:before{

  }

  /*英文字*/
  .lg_en{

  }
  .home_sec2_wrap .content_desc.bright{
    font-size: 20px;
    margin-top: -4.5em;
  }

  /*WHAT WE DO.*/
  .home_sec3_items{
    margin-top: 66px;
  }
  .home_sec3_item{

  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 68px;
  }
  .home_sec3_item:nth-child(3){
    width: 36.51%;
  }
  .home_sec3_item:nth-child(3n-2) {
    width: 61.51%;
  }
  .home_sec3_item:nth-child(3n-2) .home_sec3_item_img:before{
    padding-top:  53.47%;
  }
  .home_sec3_item:nth-child(4n–1){
    width: 36.51%;
  }
  .home_sec3_item:nth-child(4n-2){
    width: 36.51%;
  }
  .home_sec3_item:nth-child(2n–1){
    width: 36.51%;
  }

  .home_sec3_item:nth-child(4n-1) .home_sec3_item_img:before{
    padding-top:  90.09%;
  }
  .home_sec3_item:nth-child(4n-2) .home_sec3_item_img:before{
    padding-top:  90.09%;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item .read_more{
    margin-top: 24px;
  }

  .home_sec3_item_tt{
    align-items: flex-end;
  }
  .home_sec3_item_h3{
    font-size: 30px;
  }
  .home_sec3_item_en{
    padding-bottom: 8px;
  }
  .home_sec3_item_box2{

  }
  .home_sec3_item_box2_tt{

  }
  .home_sec3_item_box2 .home_sec3_item_box2_tt{

  }
  .home_sec3_item_box2 .content_desc{

  }

  /*topics*/
  .news_list.home_sec4_box{
    margin-top: 73px;
  }
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 25%;
    padding:0 20px 43px;
  }
  .news_list .webgene-item:nth-child(n+3){
    padding-top: 0;
  }
  .news_list .webgene-item:nth-child(n+5){
    padding-top: 49px;
    padding-bottom: 0;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .date{

  }
  .home_sec4_box.news_list .webgene-item .title{
    font-size: 16px;
    line-height: 1.75em;
  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

  }
  .insta_box .webgene-item{
    width: 16.66%;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }

  /*その他サービス*/
  .home_sec6_wrap{

  }
  .home_sec6_box1{
    width: 45.59%;
    flex-direction: row;
    margin-top: 0;
    order: 1;
  }
  .home_sec6_box1 .home_slide{
    width: 49.06%;
  }
  .home_sec6_box1 .home_slide{

  }
  .home_sec6_box1 .home_sec6_box_item{
    width: auto;
    margin-top: 10px;
    margin-inline:0;
  }
  .home_sec6_box1 .img_fit:before{

  }
  .home_sec6_box2{
    width: 43.94%;
    padding-top: 87px;
    order: 2;
  }
  .home_sec6_box2 .tt2_outer{

  }
  .home_sec6_box2 .content_desc{
    margin-top: 40px;
  }
  .home_sec6_box2 .read_more{
    margin-top: 46px;
  }
  .home_sec6_box2 .read_more a{

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


}
@media (min-width:1720px){
  .read_more a p{
    padding: 0!important;
  }
}
@media (min-width:768px) and (max-width:1023px){

  /* 縦 */
  .home_sec4_box.news_list .webgene-item:nth-child(2):before,
  .home_sec4_box.news_list .webgene-item:nth-child(3):before,
  .home_sec4_box.news_list .webgene-item:nth-child(4):before{
    content: "";
  }
  /* 横 */
  .home_sec4_box.news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
  .home_sec4_box.news_list .webgene-item:nth-last-child(n+2){
    padding-bottom: 20px;
  }
}




@media (max-width:374px){

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

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


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


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


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


}










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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}



@media (max-width:767px){

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

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


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


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


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


}/*


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
  border-left: none;
}
.company_tbl .table_rows_td{
  background: #FFF;
  border-right: none;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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


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


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


}



@media (max-width:767px){

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

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

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



}

/*******************************
*　記事一覧
********************************/

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}

/*******************************
*　ギャラリー（サムネ横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;
  }

  .equipment_item_tbl .table_rows_th, .equipment_item_tbl .table_rows_td{
    font-size:13px;
  }
}
@media (min-width:1024px){

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

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


}



/*******************************
*　
********************************/
.pg_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){
.home_sec3_item_img:before {
    padding-top: 95%;
}
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}







@media (max-width:1199px){

  .mouse-click-circle {
    display: none;
  }

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

  .mouse-click-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /*background: rgba(0, 120, 255, 0.7);*/
    background: #004382;
    pointer-events: none;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-en);
    color: #fff;
    letter-spacing: 0.08em;

    /* 中心合わせ＋スケールアニメ用 */
    transform: translate(-50%, -70%) scale(0);
    opacity: 0;
    transition:
      transform 0.25s ease-out,
      opacity 0.25s ease-out;
  }

  /* 対象の上にいるときだけ表示 */
  .mouse-click-circle.show {
    transform: translate(-50%, -70%) scale(1);
    opacity: 1;
  }

  .mouse-click-circle span {
    pointer-events: none;
  }

}