@charset 'UTF-8';
/*--------------------------------------------------
共通
--------------------------------------------------*/
body#rnh{
	font-family: 'Space Grotesk', sans-serif;
  line-height: 1.7;
}
.rnh_wrap{ overflow: hidden; }
/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
.rnh_nav{
	position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}

.rnh_nav.scrolled{
  background: rgba(7, 10, 13, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 32px;
}

/*ロゴエリア*/
.brand_area{
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand_mark{
	width: 34px;
  height: auto;
  flex-shrink: 0;
}
.brand_text p{	    
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}
.brand_text p span{
	color: #7e8a91;
	font-weight: 500;
	display: block;
	font-size: 9px;
	letter-spacing: .16em;
	margin-top: 1px;
}

/*ナビゲーション*/
.rnh_nav_links{
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.rnh_nav_links a{
  color: #c7cdd1;
  position: relative;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.rnh_nav_links a span{
  font-size: 8px;
  letter-spacing: .14em;
  color: #7e8a91;
  font-family: 'IBM Plex Mono', monospace;
}
.rnh_nav_links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #49f0c5;
  transition: width .25s ease;
}
.rnh_nav_links a:hover{
  color: #f2f3ef;
  opacity: 1;
}
.rnh_nav_links a:hover span{
  color: #49f0c5;
}
.rnh_nav_links a:hover::after{
  width: 100%;
}

/*お問い合わせボタン*/
.nav_cta{
	display: block;
	width: 100%;
	max-width: 110px;
	font-size: 12px;
	font-weight: 600;
  letter-spacing: .04em;
  color: #070a0d;
  background: #49f0c5;
  padding: 9px 18px;
  border-radius: 2px;
}
.nav_cta:hover{
	background-color: #6CF5D2;
	color: #070a0d;
}

@media only screen and (max-width: 1000px) {
  .rnh_nav_links{ display: none; }
  .rnh_nav.scrolled{
    padding: 10px 20px;
  }
}

/*--------------------------------------------------
共通
--------------------------------------------------*/
/*セクション*/
.rnh_section{
  padding: 108px 0;
  margin: 0 auto;
  position: relative;
}
.rnh_container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/*背景*/
.lp_bg_black{ background-color: #070a0d; }
.lp_bg_l_black{ background-color: #0e141b; }

/*タイトル*/
.line_en_title{
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: #49f0c5;
  margin: 0 0 18px;
  position: relative;
}
.line_en_title:before{
  content: "";
  width: 18px;
  height: 1px;
  background: #49f0c5;
}
.lp_subtitle{
  color: #fff;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 42px);
  margin-bottom: 22px;
}
.rnh_con_title{
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #fff;
}


/*テキスト*/
.font_white{ color: #fff !important; }
.font_green{ color: #49f0c5 !important; }

.rnh_section_text{
  color: #c7cdd1;
  font-size: 15.5px;
  margin-bottom: 56px; 
}

/*ボタン*/
.rnh_line_btn{
  margin-top: 44px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #49f0c5;
  border-bottom: 1px solid #1e7a68;
  padding-bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, border-color .2s ease;
}
.rnh_line_btn:hover{
  opacity: 1;
  color: #fff;
  border-color: #49f0c5;
}

.lp_common_btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #49f0c5;
  color: #06140F;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .03em;
  padding: 13px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: filter .2s ease, transform .15s ease;
}
.lp_common_btn:hover{
  color: #06140F;
  filter: brightness(1.08);
}
.lp_common_btn svg{
  width: 13px;
  height: 13px;
}

@media only screen and (max-width: 600px) {
  .rnh_container{ padding: 0 10px; }
}

/*--------------------------------------------------
メイン
--------------------------------------------------*/
/*メインビジュアル======================*/
.main_visualarea{
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 128px 24px 70px;
  position: relative;
  background: #070a0d;
  overflow: hidden;
}
.hero_bg{
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.hero_bg img{
  width: 100%;
}
.hero_bg:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent, #070a0d);
  pointer-events: none;
}

.hero_content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/*背後のテキスト*/
.ruler{
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 5vw;
  margin-bottom: 40px;
  z-index: 0;
}
.coord{
  font-size: 10px;
  letter-spacing: .06em;
  color: #7e8a91;
  white-space: nowrap;
  padding: 0 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}
.coord.accent{ color: #49f0c5; }
.ticks{
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
}

/*メインビジュアルテキスト*/
.mv_toptext{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: #49f0c5;
  margin: 0 0 22px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.mv_main_text{
  font-weight: 700;
  font-size: 51px;
  letter-spacing: .005em;
  line-height: 1.32;
  color: #fff;
  max-width: 840px;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .55);
  position: relative;
  z-index: 1;
}
.mv_undertext{
  font-family: 'IBM Plex Mono', monospace;
  margin: 20px 0 0;
  font-size: 13px;
  letter-spacing: .1em;
  color: #c7cdd1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

/*流れ*/
.mv_flow{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 58px;
  gap: 0;
}
.flow_stage{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  text-align: center;
}
.flow_stage .mv_icon{
  width: 74px;
  height: 74px;
  border: 1px solid rgba(73, 240, 197, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49f0c5;
  margin-bottom: 14px;
  background: linear-gradient(150deg, rgba(73, 240, 197, .28), rgba(73, 240, 197, .05));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .12), 0 12px 26px rgba(0, 0, 0, .45);
}
.flow_stage .mv_icon svg{
  width: 36px;
  height: 36px;
}
.mv_flow_jp{
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin: 0;
}
.mv_flow_en{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .1em;
  color: #7e8a91;
  text-align: center;
  margin: 5px 0 0;
}

.flow_link{
  flex: 0 0 38px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 23px;
}
.flow_link.gate {
  flex: 0 0 72px;
  height: auto;
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}
.flow_link.gate svg {
  width: 44px;
  height: 44px;
}
.flow_link.gate p{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 7.5px;
  letter-spacing: .12em;
  color: #49f0c5;
  margin-top: 4px;
}

.hero_cta{
  margin-top: 44px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #49f0c5;
  border-bottom: 1px solid #1e7a68;
  padding-bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, border-color .2s ease;
}
.hero_cta:hover{
  color: #fff;
  border-color: #49f0c5;
}

.rnh_scrollcue{
  position: absolute;
  bottom: 0px;
  font-size: 10px;
  letter-spacing: .18em;
  color: #7e8a91;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rnh_scrollcue .line{
  width: 1px;
  height: 26px;
  background: linear-gradient(#7e8a91, transparent);
  animation: dropline 1.8s ease-in-out infinite;
}

@keyframes dropline {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.9;
    }
}

@media only screen and (max-width: 800px) {
  .mv_main_text{
    font-size: 6vw;
  }
  /*流れ*/
  .flow_stage{
    width: 17vw;
  }
}
@media only screen and (max-width: 600px) {
  .ruler{
    flex-direction: column;
    padding: 0;
    top: 40px;
  }
  .ticks{ display: none; }
  .coord.accent{ margin: 20px auto; }
  .mv_toptext{ font-size: 9px; }
  .mv_undertext{ font-size: 10px; }

  /*流れ*/
  .mv_flow{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flow_stage{
    width: 35%;
    min-width: 100px;
    margin-bottom: 20px;
  }
  .flow_link{ display: none; }
}

/*新潟・長野の地域資源〜======================*/
.rnh_houit_icon{
  margin: 0 auto 28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #f3f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
}
.rnh_houit_icon svg{
  width: 48px;
  height: 48px;
}
.how_section .line_en_title,
.how_section .lp_subtitle{
  justify-content: center;
  text-align: center;
}
.how_section .rnh_section_text{
  margin: 0 auto 16px;
  max-width: 680px;
}
.how_atte{
  text-align: center;
  color: #7e8a91;
  max-width: 680px;
  font-size: 12.5px;
  margin: 0 auto 64px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.rnh_point_block{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.rnh_p_num_area{
  width: 88px;
}
.rnh_p_alphabet{
  font-size: 38px;
  font-weight: 700;
  color: #49f0c5;
  line-height: 1;
  margin: 0;
}
.rnh_p_eng{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #7e8a91;
  margin-top: 10px 0 0;
}
.rnh_p_textarea{

}
.rnh_point_text{
  color: #c7cdd1;
  font-size: 14.5px;
  max-width: 680px;
  margin-bottom: 26px;
}

/*地域資源*/
.rnh_area_block{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.rnh_area_block figure{
  width: 84px;
  height: 64px;
  flex: 0 0 84px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #0e141b;
  margin: 0;
}
.rnh_area_block figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(50%) contrast(1.08) brightness(.82);
}
.rnh_area_name{
  font-family: 'IBM Plex Mono', monospace;
  flex: 0 0 130px;
  font-size: 12px;
  letter-spacing: .08em;
  color: #49f0c5;
  font-weight: 600;
}
.rnh_area_name span{

}
.rnh_area_cards{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
.rnh_rcard{
  border: 1px solid rgba(255,255,255,0.1);
  background: #0e141b;
  padding: 12px 18px;
  border-radius: 2px;
  min-width: 160px;
  flex: 1;
}
.rnh_r_title{
  font-weight: 700;
  color: #49f0c5;
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
}
.rnh_r_text{
  font-size: 11px;
  color: #7e8a91;
  margin: 5px 0 0;
}

/*イノベーション創出*/
.focus_area{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #0e141b;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 760px;
}
.focus_area li{
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.focus_area li:last-child{ border-right: none; }
.focus_icon{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(73, 240, 197, .24), rgba(73, 240, 197, .04));
  border: 1px solid rgba(73, 240, 197, .4);
  color: #49f0c5;
}
.focus_icon svg{
  display: block;
  width: 19px;
  height: 19px;
}

.focus_title{
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0;
}
.focus_num{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #7e8a91;
  margin: 0;
}

.support_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 760px;
  margin-top: 18px;
  background: #0e141b;
}
.support_card{
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.support_card:last-child{
  border-right: none;
}
.supo_title{
  font-size: 11px;
  letter-spacing: .04em;
  color: #49f0c5;
  margin: 0 0 8px;
}
.supo_text{
  font-size: 12px;
  color: #c7cdd1;
  line-height: 1.65;
  margin: 0;
}

.rnh_chip_row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.rnh_chip_col{
  min-width: 240px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0e141b;
  padding: 10px 16px;
  border-radius: 2px;
}
.rnh_chip_title{
  margin: 0;
  font-weight: 700;
  color: #49f0c5;
  font-size: 18px;
}
.rnh_chip_text{
  font-size: 11px;
  color: #7e8a91;
  margin-top: 4px;
}

/*グローバル展開*/
.rnh_growth_flex{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rnh_growth_card{
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 16px;
}
.rnh_grw_c_date{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .08em;
  color: #7e8a91;
  margin: 0 0 6px;
}
.rnh_grw_c_suii{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.rnh_grw_c_suii span{
  font-size: 14px;
}
.rnh_grw_label{
  font-size: 12px;
  color: #c7cdd1;
  margin: 4px 0 0;
}

.rnh_flug_desc{
  font-size: 13px;
  color: #c7cdd1;
  border-left: 2px solid #49f0c5;
  padding-left: 14px;
  max-width: 560px;
  margin: 0;
}

.how_btn{
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  .rnh_point_block{
    gap: 5px;
    padding: 40px 0;
  }
  .focus_area{
    grid-template-columns: repeat(2, 2fr);
  }
  .focus_area li:nth-of-type(1),
  .focus_area li:nth-of-type(2){
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .focus_area li:nth-of-type(2){ border-right: none; }

  .support_grid{
    grid-template-columns: repeat(1, 2fr);
  }
  .support_card{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }
  .how_btn{ margin-top: 0; }
}


/*つながりを形にする参画団体======================*/
.rnh_network_wrap{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}
.network_img{
  width: 100%;
  max-width: 340px;
}
.network_img .net-node-circle{
  fill: #070a0d;
  stroke: #49f0c5;
  stroke-width: 1.8;
}
.network_img .net-line{
  stroke: rgba(73, 240, 197, .55);
  stroke-width: 1.6;
}
.network_img .net-node-label{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  fill: #49f0c5;
}
.net-node-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  fill: #c7cdd1;
}
.network_img .net-center-circle{
  fill: #121a22;
  stroke: #49f0c5;
  stroke-width: 2;
}
.network_img .net-center-label{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  fill: #f2f3ef;
}

.contrib_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.1);
}
.contrib_card{
  background: #f3f1ea;
  color: #13181d;
  padding: 20px 22px;
}
.contrib_c_tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: #1e7a68;
  border: 1px solid #1e7a68;
  background: rgba(30, 122, 104, .10);
  padding: 3px 8px;
  border-radius: 2px;
  width: fit-content;
  margin: 0 0 10px;
}
.contrib_c_title{
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #13181d;
}
.contrib_c_mini{
  font-size: 11.5px;
  color: #5b6470;
  margin: 0;
}

.contrib_grid_note{
  margin-top: 24px;
  font-size: 12px;
  color: #7e8a91;
}


@media only screen and (max-width: 800px) {
  .network_img{ margin: 0 auto; }
  .rnh_network_wrap{
    grid-template-columns: repeat(1, 2fr);
  }
}
@media only screen and (max-width: 500px) {
  .contrib_grid{
    grid-template-columns: repeat(1, 2fr);
  }
}


/*参画団体ロゴ======================**/
.rnh_logo_area{
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.rnh_logo_grid{
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.rnh_logo_grid li{
  background: #fff;
  width: calc(25% - 1px);
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #c7cdd1;
  letter-spacing: .01em;
  transition: color .2s ease, background .2s ease;
}
.rnh_logo_grid li img{
  max-width: 100%;
}
.rnh_logo_grid li img.yoko_logo{
  max-width: 70%;
}
.rnh_logo_grid li img.tate_logo{
  max-height: 100px;
}

@media only screen and (max-width: 800px) {
  .rnh_logo_grid li{ width: calc(33.3333% - 1px); }
}
@media only screen and (max-width: 500px) {
  .rnh_logo_grid li{ width: calc(50% - 1px); }
}

/*つながりの拠点======================**/
.tsunagari_block{
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.kyoten_flex{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.kyoten_flex figure{
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.kyoten_flex figure:before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(73, 240, 197, .20), rgba(7, 10, 13, .30));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.kyoten_flex figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(50%) contrast(1.08) brightness(.82);
}
.kyoten_textarea{}
.kyoten_date{
  color: #fff;
  font-size: 16px;
  margin: 0 0 14px;
}
.kyoten_sub_title{
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
}
.kyoten_text{
  color: #c7cdd1;
  font-size: 14px;
  margin: 0 0 6px;
}
.kyoten_textarea .rnh_line_btn{
  margin-top: 6px;
}

.hub_cards_flex{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.hub_card{
  background: #0e141b;
  padding: 22px 20px;
}
.hub_card_title{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #49f0c5;
  margin: 0 0 12px;
}
.hub_c_list li{
  font-size: 13px;
  color: #c7cdd1;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.hub_c_list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #1e7a68;
}

.hub_c_yakuwari_grid{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: #c7cdd1;
}
.hub_c_yakuwari{
  margin: 0;
}
.hub_c_yakuwari span{
  color: #f2f3ef;
  font-weight: 600;
}
.hub_c_text{
  color: #c7cdd1;
  font-size: 13px;
  line-height: 1.75;
}

@media only screen and (max-width: 700px) {
  .kyoten_flex{
    display: block;
  }
  .kyoten_flex figure{
    height: 55vw;
    margin-top: 20px;
  }
  .kyoten_date{ margin-bottom: 5px; }
  .hub_cards_flex{
    grid-template-columns: repeat(1, 1fr);
  }
}


/*役員紹介*/
.rnh_officer_read{
  font-size: 12px;
  color: #7e8a91;
  margin: 0 0 28px;
}

.main_officer_flex{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.main_officer_card{
  padding: 24px 22px;
  background: #f3f1ea;
  color: #13181d;
  margin-bottom: 56px;
}
.officer_label{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #1e7a68;
  margin: 0 0 8px;
}
.officer_name{
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 17px;
}
.main_officer_name{
  font-size: 21px;
}

.officer_flex{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
}
.officer_card{
  background: #f3f1ea;
  color: #13181d;
  padding: 20px 20px;
}

@media only screen and (max-width: 600px) {
  .main_officer_flex{
    grid-template-columns: repeat(1, 2fr);
    margin-bottom: 50px;
  }
  .main_officer_card{
    margin-bottom: 0;
  }
  .officer_flex{
    grid-template-columns: repeat(1, 1fr);
  }
}




/*つながりが生まれる現場======================*/
.tsunagari_list{}
.tsunagari_list li{
  display: grid;
  grid-template-columns: 64px 96px 1fr 1.3fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rnh_tlist_icon{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #7e8a91;
  line-height: 1.5;
}
.rnh_tlist_hcoord p{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #7e8a91;
  line-height: 1.5;
}
.rnh_tlist_hname p{
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin: 0;
}
.rnh_tlist_hname p.rnhth_mini{
  display: block;
  font-size: 10.5px;
  font-family: 'IBM Plex Mono', monospace;
  color: #49f0c5;
  font-weight: 400;
  letter-spacing: .06em;
  margin: 4px 0 0;
}
.rnh_tlist_text p{
  font-size: 12.5px;
  color: #c7cdd1;
  margin: 0;
}
.rnh_tlist_tag p{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .08em;
  padding: 5px 10px;
  margin: 0;
  border: 1px solid #49f0c5;
  color: #49f0c5;
  border-radius: 2px;
  white-space: nowrap;
}


/*お知らせ======================*/
.rnh_news_bg_text{
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 200px;
  color: rgba(255, 255, 255, .035);
  letter-spacing: .04em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.rnh_news_list{}
.rnh_news_list a{
  width: 100%;
  display: grid;
  grid-template-columns: 130px 100px 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  text-decoration: none;
}
.rnh_news_date p{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #7e8a91;
  margin: 0;
}
.rnh_news_tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .06em;
  color: #49f0c5;
  border: 1px solid #1e7a68;
  background: rgba(73,240,197,0.14);
  padding: 3px 9px;
  border-radius: 2px;
  width: fit-content;
  height: fit-content;
}
.rnh_news_tag p{
  text-align: center;
  margin: 0;
}
.rnh_news_title p{
  color: #fff;
  transition: 0.3s;
  margin: 0;
}
.rnh_news_list a:hover .rnh_news_title p{
  color: #49f0c5;
}

@media only screen and (max-width: 800px) {
  .rnh_news_list a{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .rnh_news_title{ width: 100%; }
}


/*お問い合わせ======================*/
.contact_section{ overflow: hidden; }
.contact_section:before{
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(73, 240, 197, .10), transparent 65%);
}
.contact_section .common_btn svg{
  width: 15px;
  height: 15px;
}


/*--------------------------------------------------
フッター
--------------------------------------------------*/
footer{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 44px 0;
  background: #070a0d;
}
.rnh_footer_innner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.foot_mark{
  display: flex;
  align-items: center;
  gap: 10px;
  }
.foot_mark svg{
  width: 18px;
  height: 18px;
}
.foot_text{
  font-size: 11px;
  color: #7e8a91;
  letter-spacing: .04em;
}
.rnh_foot_links{
  display: flex;
  gap: 22px;
  font-size: 12px;
}
.rnh_foot_links a{
  text-decoration: none;
  color: #c7cdd1;
  transition: 0.3s;
}
.rnh_foot_links a:hover{
  color: #49f0c5;
}

@media only screen and (max-width: 800px) {
  footer{ padding: 35px 0; }
  .rnh_footer_innner{
    flex-direction: column;
    gap: 10px;
  }
  .rnh_foot_links{
    gap: 15px;
  }
}

