@charset "UTF-8";

@import "settings.css";


/*============================================================================================
      Header
=============================================================================================*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: var(--color-bg-base);
}
.header_cont{
  height: 80px;
  padding: 0 40px 0 20px;
}
@media (max-width: 1200px){
  .header_logo{
    width: 160px;
  }
  .header_cont{
    height: 80px;
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 896px) {
  .header_cont{
    height: 60px;
  }
}
/* グローバルナビ */
.gnav_cont{}
@media (max-width: 896px) {
  .gnav_cont{
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    width: 100svw;
    height: calc(100svh - 60px);
    background: #fff;
  }
}

/* グローバルナビリスト */
.gnav_list_item{
  word-break: keep-all;
}
.gnav_list_link{
  transition: .2s opacity;
}
.gnav_list_inr{}
@media (any-hover: hover) {
  .gnav_list_link:hover{
    opacity: .7;
  }
}
.gnav_list_link{}
@media (max-width: 1440px) {
  html.is_lg .gnav_list{
    gap: 20px;
  }
  html.is_lg .gnav_list_item__strsize{
    display: block;
  }
}
@media (max-width: 1200px) {
  .gnav_list{
    gap: 20px;
  }
  .gnav_list_item__strsize{
    display: block;
  }
}
@media (max-width: 1100px) {
  html.is_lg .gnav_list_inr{
    flex-direction: column;
  }
}
@media (max-width: 896px) {
  .gnav_list{
    gap: 0 !important;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .gnav_list_item{
    width: 100%;
    padding: 10px 20px;
  }
  .gnav_list_item__strsize{
    display: flex !important;
  }
  .gnav_list_item__hasInr{
    padding: 0;
  }
  .gnav_list_item + .gnav_list_item{
    border-top: 1px solid var(--color-border);
  }
  .gnav_list_link{
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
  }
}
/* アコーディオンリスト */
.acd{
  position: relative;
}
.acd_list{
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 999;
  margin: auto;
  padding-top: 27px;
  transform: translate(-50%, 100%);
}
.acd_list_inr{
  min-width: 216px;
  padding: 20px 10px;
  border-radius: 10px;
  background: var(--color-bg-base);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.acd_list__map .acd_list_inr{
  width: 300px;
  padding: 20px;
}
.acd_list_link{
  transition: .2s opacity;
}
.acd_list_item {
  line-height: 1.2;
}
@media (any-hover: hover){
  .acd_list_link:hover{
    opacity: .7;
  }
}
@media (max-width: 896px) {
  .acd_list:not(.acd_list__map){
    position: static;
    padding-top: 10px;
    transform: none;
  }
  .acd_list:not(.acd_list__map) .acd_list_inr{
    min-width: auto;
    padding: 0 10px;
    border-radius: 0;
    background: var(--color-bg-base);
    box-shadow: none;
  }
  .acd_list:not(.acd_list__map) .acd_list_link{
    display: block;
  }
}
/* ハンバーガー時ボタン（g_btnオーバーライド） */
.hamb_btn{
  position: relative;
}
.hamb_btn > *{
  cursor: default;
}
.hamb_btn.u_ic::after{
  top: 0;
  bottom: 0;
  right: 1em;
  width: .5em;
  height: .5em;
  border-top: 1px solid var(--color-reverse);
  border-right: 1px solid var(--color-reverse);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  background: none;
}
.js_open .hamb_btn{
  color: var(--color-main);
  background: none;
}
.js_open .hamb_btn.u_ic::after{
  border-color: var(--color-main);
}
.hamb_btn:hover {
  opacity: 1 !important;
} 
@media (max-width: 896px) and (any-hover: hover) {
  .hamb_btn:hover {
    color: var(--color-text);
    background: none;
  }
}
@media (max-width: 896px) {
  .hamb_btn{
    width: auto !important;
    max-width: none;
    height: auto;
    background: none;
    border: none;
    color: var(--color-text);
  }
  .js_open .hamb_btn{
    color: var(--color-text);
    background: none;
  }
  .js_open .hamb_btn.u_ic::after{
    border-color: var(--color-text);
  }
  .hamb_btn > *{
    display: block;
    line-height: inherit;
  }
  .hamb_btn.u_ic::after{
    content: "" !important;
    border-color: 1px solid var(--color-main);
  }
  .js_open .hamb_btn.u_ic::after{
    -webkit-transform: translateY(50%) rotate(315deg);
    transform: translateY(50%) rotate(315deg) ;
  }
}
/*============================================================================================
      Footer
============================================================================================*/
/* サブフッター（ページ最下部） */
.sub_footer{
  padding: 20px 0 ;
  background: var(--color-bg-gray);
}
/* フッターリスト */
.footer_nav{}
.footer_nav_item__logo{
  line-height: 0;
}
.footer_nav_link{
  transition: .2s opacity;
}
.footer_nav_list_link{
  transition: .2s opacity;
}
.footer_nav_list_item {
  line-height: 1.4;
}

@media (any-hover: hover){
  .footer_nav_link:hover{
    opacity: .7;
  }
  .footer_nav_list_link:hover{
    opacity: .7;
  }
}

@media (max-width: 896px) {
  .footer_nav{
    width: 100%;
  }
  .footer_nav_list{
    padding: 0 10px;
  }
  .footer_nav_item{
    width: 100%;
    padding: 10px 20px;
  }
  .footer_nav_item__hasInr{
    padding: 0;
  }
  .footer_nav_item + .footer_nav_item{
    border-top: 1px solid var(--color-border);
  }
  .footer_nav_link{
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
  }
  .footer_nav_list_link{
    display: block;
  }
}
/*============================================================================================
      Contents
=============================================================================================*/
/* root font-size */
html.is_lg{
  font-size: 17px; 
}
html.is_sm{
  font-size: 10px;
}
body{
  padding-top: var(--gnav-h);
}
/* リンク */
.link{
  transition: .2s opacity;
}
@media (any-hover: hover){
  .link:hover{
    opacity: .7;
  }
}
/* トップページのキービジュアル */
.top_keyvisual{
  position: relative;
  height: calc(100vh - var(--gnav-h) - 5.6vh);
  height: calc(100svh - var(--gnav-h) - 5.6vh);
  width: 100%;
  overflow: hidden;
  background: var(--color-bg);
}
.top_keyvisual::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: calc(100vw * 1885 / 1280);
  width: calc(100svw * 1885 / 1280);
  aspect-ratio: 1885 / 469;
  border-radius: 0 0 50% 50%;
  background: var(--color-bg-base);
  transform: translateX(-50%);
}
.top_keyvisual::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  width: 100svw;
  padding-top: calc(100vh - 100vw * 469 / 1280);
  padding-top: calc(100svh - 100svw * 469 / 1280);
  background: var(--color-bg-base);
}
.top_keyvisual_inr{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin: auto;
}
.top_keyvisual_header{
  width: 62.5vh;
  margin-bottom: 6.9vh;
  line-height: 0;
}
.top_keyvisual_header img{
  width: 100%;
}
.top_keyvisual_footer{
  margin-top: 3.75vh;
}
@media (orientation: portrait){
  /* トップページのキービジュアル */
  .top_keyvisual{
    height: calc(100vh - var(--gnav-h) - 5.7vw);
    height: calc(100svh - var(--gnav-h) - 5.7vw);
  }
  .top_keyvisual_header{
    width: 64vw;
    margin-bottom: 6.4vw;
  }
  .top_keyvisual_footer{
    margin-top: 3.8vw;
  }
}
@media (max-aspect-ratio: 7 / 10) and (max-width: 896px){
  /* トップページのキービジュアル */
  .top_keyvisual_header{
    width: 84vw;
    margin-bottom: 8.3vw;
  }
  .top_keyvisual_footer{
    margin-top: 4.9vw;
  }
}


/* 下層ページのキービジュアル */
.article_keyvisual{
  --img-h: 50vh;
}
.article_keyvisual_heading{
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--gnav-h) - var(--img-h));
  height: calc(100svh - var(--gnav-h) - var(--img-h));
  min-height: 33.333vh;
  min-height: 33.333svh;
}
.article_keyvisual_heading_inr{}
.article_keyvisual_body{
  overflow: hidden;
}
.article_keyvisual_img{
  width: 100vw;
  width: 100svw;
  min-height: 50vh;
  min-height: 50svh;
  aspect-ratio: 1280 / 418;
  line-height: 0;
  object-fit: cover;
}
.article_keyvisual_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_keyvisual_subttl{
  font-size: calc(2.25vh * var(--fz-zoom));
}
.article_keyvisual_ttl{
  line-height: 1.2;
  font-size: calc(4.5vh * var(--fz-zoom));
}
.article_keyvisual_subttl + .article_keyvisual_ttl{
  margin-top: 1.75vh;
}
.article_keyvisual__noMv{}
.article_keyvisual__noMv .article_keyvisual_heading{
  height: auto;
  min-height: auto;
  padding: 95px 0;
}
@media (max-height: 699px){
  /* トップページのキービジュアル */
  .article_keyvisual_subttl{
    font-size: 1.4rem;
  }
  .article_keyvisual_ttl{
    font-size: 3.6rem;
  }
  .article_keyvisual_subttl + .article_keyvisual_ttl{
    margin-top: 15px;
  }
}
@media (orientation: portrait){
  /* トップページのキービジュアル */
  .article_keyvisual_subttl{
    font-size: calc(2.1vh * var(--fz-zoom));
  }
  .article_keyvisual_ttl{
    font-size: calc(4.2vh * var(--fz-zoom));
  }
  .article_keyvisual_subttl + .article_keyvisual_ttl{
    margin-top: 1.75vh;
  }
}
@media (max-aspect-ratio: 7 / 10) and (max-width: 896px){
  /* トップページのキービジュアル */
  .article_keyvisual_subttl{
    font-size: calc(3.78vw * var(--fz-zoom));
  }
  .article_keyvisual_ttl{
    font-size: calc(7.56vw * var(--fz-zoom));
  }
  .article_keyvisual_subttl + .article_keyvisual_ttl{
    margin-top: 3.15vw;
  }
}
@media (max-width: 576px){
  .article_keyvisual__noMv .article_keyvisual_heading{
    padding: 10.6vw 0;
  }
}
/* トップページのキャッチコピー */
.top_catchcopy{
  text-align: center;
}
.top_catchcopy_heading{
  margin-bottom: 3.75vh;
}
.top_catchcopy_subttl{
  font-size: 3vh;
}
.top_catchcopy_ttl{
  line-height: 1.45;
  font-size: 4.6vh;
}
.top_catchcopy_ttl{
  line-height: 1.45;
}
.top_catchcopy_subttl + .top_catchcopy_ttl{
  margin-top: 1.63vh;
}
.top_catchcopy_body{
  line-height: 2;
  font-size: 1.9vh;
  border: 1px solid #FADCD0;
  padding: 10px 60px;
}
html.is_lg .top_catchcopy_subttl{
  font-size: 3vh;
}
html.is_lg .top_catchcopy_ttl{
  font-size: 4.6vh;
}
html.is_lg .top_catchcopy_body{
  font-size: 2.5vh;
}
html.is_sm .top_catchcopy_subttl{
  font-size: 1.5vh;
}
html.is_sm .top_catchcopy_ttl{
  font-size: 2vh;
}
html.is_sm .top_catchcopy_body{
  font-size: 1.3vh;
}
@media (orientation: portrait){
  /* トップページのキャッチコピー */
  .top_catchcopy_heading{
    margin-bottom: 3.8vw;
  }
  .top_catchcopy_subttl{
    font-size: 2.1vw;
  }
  .top_catchcopy_ttl{
    font-size: 2.8vw;
  }
  .top_catchcopy_subttl + .top_catchcopy_ttl{
    margin-top: 1.3vw;
  }
  .top_catchcopy_body{
    font-size: 2vw;
  }
  html.is_lg .top_catchcopy_subttl{
    font-size: 2.7vw;
  }
  html.is_lg .top_catchcopy_ttl{
    font-size: 3.6vw;
  }
  html.is_lg .top_catchcopy_body{
    font-size: 2.5vw;
  }
  html.is_sm .top_catchcopy_subttl{
    font-size: 1.5vw;
  }
  html.is_sm .top_catchcopy_ttl{
    font-size: 2vw;
  }
  html.is_sm .top_catchcopy_body{
    font-size: 1.3vw;
  }
}
@media (max-aspect-ratio: 7 / 10) and (max-width: 896px){
  /* トップページのキャッチコピー */
  .top_catchcopy_heading{
    margin-bottom: 4.9vw;
  }
  .top_catchcopy_subttl{
    font-size: 3.8vw;
  }
  .top_catchcopy_ttl{
    font-size: 4.6vw;
  }
  .top_catchcopy_subttl + .top_catchcopy_ttl{
    margin-top: 1.7vw;
  }
  .top_catchcopy_body{
    font-size: 3.2vw;
  }
  html.is_lg .top_catchcopy_subttl{
    font-size: 4.4vw;
  }
  html.is_lg .top_catchcopy_ttl{
    font-size: 5vw;
  }
  html.is_lg .top_catchcopy_body{
    font-size: 3.6vw;
  }
  html.is_sm .top_catchcopy_subttl{
    font-size: 2.7vw;
  }
  html.is_sm .top_catchcopy_ttl{
    font-size: 3.2vw;
  }
  html.is_sm .top_catchcopy_body{
    font-size: 2.2vw;
  }
}
@media (max-width: 896px){
  .top_catchcopy_body{
    padding: 10px 20px;
    margin: 0 30px;
    text-align: left;
  }
}
/* 見出し */
.heading{}
.heading__primary{}
.heading_subttl{
  color: var(--color-main);
}

/* テキストボックス */
.txt_box{
  margin-inline: auto;
}
.txt_box__hasgutter{
  padding: 60px;
  border-radius: 10px;
  background: var(--color-bg-base);
}
.txt_box__hasgutter_lg{
  padding: 70px 95px;
  border-radius: 10px;
  background: var(--color-bg-base);
}
.txt_box__hasbg{
  background-color: var(--color-bg);
}
@media (max-width: 1040px) {
  .txt_box__hasgutter{
    padding: 5.76vw;
  }
  .txt_box__hasgutter_lg{
    padding: 5.76vw;
  }
}
@media (max-width: 896px) {
  .txt_box{
    max-width: 400px;
  }
  .txt_box__hasgutter{
    max-width: calc(400px + 5.76vw * 2);
  }
  .txt_box__hasgutter_lg{
    max-width: calc(400px + 5.76vw * 2);
  }
}
/* アイコン */
.hasIco {
  position: relative;
  display: block;
}
.hasIco::before,
.hasIco::after,
.hasIco_item {
  content: "";
  position: absolute;
  display: block;
  background: no-repeat center center / contain;
}
.hasIco::before,
.hasIco_item{
  left: 0;
  top: calc((1lh - 1em) / 2);
}
.hasIco::after{
  right: 0;
  bottom: calc((1lh - 1em) / 2);
}
.hasIco__inline{
  display: inline;
}
.hasIco__inline::before,
.hasIco__inline::after{
  display: inline-block;
}
.hasIco__anotherlink{
  padding-right: 20px;
}
.hasIco__anotherlink::after{
  width: 10px;
  height: 10px;
  background-image: url(../img/common/logo_anotherlink.png);
}
.hasIco__dot{
  padding-left: 1em;
}
.hasIco__dot::before{
  content: "\30FB";
  top: auto;
}
.hasIco__ast{
  padding-left: 1em;
}
.hasIco__ast::before{
  content: "\203B";
  top: auto;
}
.hasIco__word{
  padding-left: 20px;
}
.hasIco__word::before{
  width: 1em;
  height: 1em;
  background-image: url(../img/common/logo_word.png);
}
.hasIco__pdf{
  padding-left: 20px;
}
.hasIco__pdf::before{
  width: 1em;
  height: 1em;
  background-image: url(../img/common/logo_pdf.png);
}
.hasIco__pdf.hasIco__rev{
  padding-left: 0;
  padding-right: 20px;
}
.hasIco__pdf.hasIco__rev::before{
  content: none;
}
.hasIco__pdf.hasIco__rev::after{
  bottom: 2px;
  width: 1em;
  height: 1em;
  background-image: url(../img/common/logo_pdf.png);
}
.hasIco__ppt{
  padding-left: 20px;
}
.hasIco__ppt::before{
  width: 1em;
  height: 1em;
  background-image: url(../img/common/logo_ppt.png);
}
.hasIco__ppt.hasIco__rev::before{
  content: none;
}

.hasIco__num{
  padding-left: 2.5em;
}
.hasIco__num::before,
.hasIco__num .hasIco_item{
  top: auto;
}
.hasIco__curcle_num{
  padding-left: 2em;
}
.hasIco__curcle_num::before,
.hasIco__curcle_num .hasIco_item{
  top: auto;
}
/* 数字付きリスト */
.list_has_num{
  counter-reset: list_num;
}
.list_has_num_itm{
  position: relative;
  padding-left: 2.5em;
  counter-increment: list_num;
}
.list_has_num_itm::before{
  content: "（" counter(list_num, em-decimal) "）";
  position: absolute;
  display: block;
  left: 0;
}
.list_has_num_itm__dot{
  padding-left: 2em;
}
.list_has_num_itm__dot::before{
  content: counter(list_num, em-decimal) ".";
}
/* 製品のカード */
.product_card{
  display: block;
  max-width: calc(400px + 5.76vw * 2);
  height: 100%;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 10px;
  background: url(../img/common/logo_curcle_arrow.png) no-repeat right 20px bottom 30px / 30px 30px, var(--color-bg);
  transition: .2s opacity;
}
.product_card_body{
  padding: 30px 20px 60px;
}
.product_card__hasBtn{}
.product_card__hasBtn .product_card_body{
  background: none;
}
.product_card_img img{
  width: 100%;
}
@media (any-hover: hover){
  .product_card:hover{
    opacity: .7;
  }
  .product_card__hasBtn:hover{
    opacity: 1;
  }
}

/* 応募したい人用のメディアデザイン */
.application_media{}
.application_media_body{
  flex: 1 1 auto; 
}
.application_media_img{
  flex: 0 0 400px; 
  line-height: 0;
  text-align: center;
}
.application_media_img__ico{
  flex: 0 0 420px; 
}
@media (max-width: 1040px){
  .application_media_img{
    flex: 0 0 300px; 
  }
}
@media (max-width: 896px){
  .application_media{
    max-width: 400px;
    margin-inline: auto;
  }
  .application_media_img{
    flex: 1 1 auto; 
  }
}

/* FAQ */
.faq{
  padding: 30px;
  border-radius: 10px;
  background: var(--color-reverse);
}
.faq_item{
  position: relative;
  display: block;
  width: 100%;
  padding-right: 48px;
}
.faq_item__q{}
.faq_item__q::after,
.faq_item__q::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: 18px;
  height: 3px;
  background: var(--color-main);
  transition: .3s transform;
}
.faq_item__q::after{
  transform: rotate(90deg);
}
.is_open .faq_item__q::after{
  transform: rotate(0deg);
}
.faq_item__a{
  padding-top: 35px;
}
.faq_inr{
  position: relative;
  display: block;
  padding-left: 58px;
}
.faq_inr:before{
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 26px;
  height: 35px;
  display: block;
  background: no-repeat center center / contain;
}
.faq_inr__q::before{
  background-image: url(../img/common/logo_q.png);
}
.faq_inr__a::before{
  background-image: url(../img/common/logo_a.png);
}
@media (max-width: 896px) {
  .faq_item{
    padding-right: 0;
  }
  .faq_item__q::after,
  .faq_item__q::before{
    top: 19px;
    bottom: auto;
  }
  .faq_inr{
    padding: 0;
  }
  .faq_inr:before{
    content: "";
    position: static;
    margin-bottom: 2vw;
  }
}
/* 関係機関ロゴ */
.org_logo{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  background: var(--color-bg-base);
}
.org_logo_link{
  display: block;
  line-height: 0;
  transition: .2s opacity;
}
@media (any-hover: hover){
  .org_logo_link:hover{
    opacity: .7;
  } 
}

/* 記事ページのリンクカード */
.article_card{
  position: relative;
  display: block;
  padding: 20px 90px 20px 30px;
  border-radius: 10px;
  line-height: 1.6;
  background: var(--color-reverse);
  transition: .2s opacity;
}
.article_card::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(../img/common/logo_curcle_arrow.png) no-repeat center center / contain;
}
@media (any-hover: hover){
  .article_card:hover{
    opacity: .7;
  }
}
/* ニュースリスト */
.news_list{}
.news_list_item{
  display: flex;
}
.news_list_date{
  flex-shrink: 0;
}
.news_list_date + .news_list_body{
  padding-left: 30px;
}
.news_list_item + .news_list_item{
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--color-border);
}
.news_list_link{
  color: var(--color-link);
  text-decoration: underline;
  transition: opacity .2s;
}
.news_list_link__pdf{
  color: var(--color-text);
  text-decoration: none;  
}
.news_movie_cont iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (any-hover: hover){
  .news_list_link:hover{
    opacity: .7;
  }
}
@media (max-width: 896px){
  .news_list_item{
    display: block;
  }
  .news_list_date + .news_list_body{
    padding: 10px 0 0;
  }
  .news_list_item + .news_list_item{
    padding-top: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 576px){
  .news_list_date + .news_list_body{
    padding: 2.6vw 0 0;
  }
  .news_list_item + .news_list_item{
    padding-top: 5.3vw;
    margin-top: 5.3vw;
  }
}

/* チェック */
.check{
  position: relative;
  padding-left: 1.5em;
  display: block;
}
.check::before{
  content: "";
  position: absolute;
  top: calc((1lh - 1em) / 2 - 2px);
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 2px;
}
.check:has(.check_box:checked)::before{
  background: var(--color-main);
  border-color: var(--color-main);
}
.check:has(.check_box:checked)::after{
  content: "";
  position: absolute;
  left: 5px;
  top: calc((1lh - 1em) / 2);
  width: 6px;
  height: 10px;
  border-bottom: 2px solid var(--color-reverse);
  border-right: 2px solid var(--color-reverse);
  transform: rotate(45deg);
}
/* 0109追加 */
.verti_top{
  vertical-align: top;
}
/* flow_map */
.flow_map svg{
  width: 100%;
  height: auto;
}
.flow_map_btn_1{
  cursor: pointer;
}
.flow_map_btn_2{
  cursor: pointer;
}
.flow_map_btn_3{
  cursor: pointer;
}
.flow_map_btn_4{
  cursor: pointer;
}
.flow_txt_box{
  z-index: 999;
  width: 350px;
  padding: 15px 20px;
  border-radius: 10px;
  background: var(--color-bg-base);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  pointer-events: none;
}
.flow_map_txt_1{
  position: absolute;
  display: none;
  transition: display var(--transition) ease-out;
}
.flow_map_txt_2{
  position: absolute;
  display: none;
  transition: display var(--transition) ease-out;
}
.flow_map_txt_3{
  position: absolute;
  display: none;
  transition: display var(--transition) ease-out;
}
.flow_map_txt_4{
  position: absolute;
  display: none;
  transition: display var(--transition) ease-out;
}
@media (max-width: 896px){
  .flow_map_txt_1{
    width: 210px;
    padding-inline: 10px 15px;
  }
  .flow_map_txt_2{
    width: 210px;
    padding-inline: 10px 15px;
  }
  .flow_map_txt_3{
    width: 210px;
    padding-inline: 10px 15px;
  }
  .flow_map_txt_4{
    width: 210px;
    padding-inline: 10px 15px;
  }
}

/* caution-label */
.c_date_txt{
  line-height: 2;
}
.c_label{
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color-reverse);
  border-radius: 99999px;
  border: 2px solid var(--color--main);
  padding: 2px 16px;
  margin-top: -3px;
}
.c_label__business{
  background-color: var(--color-reverse);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color-main);
  border-radius: 99999px;
  border: 2px solid var(--color-main);
  padding: 2px 16px;
  margin-top: -3px;
}

/* リスクアセスメント・R-Mapを知ろう */
.r_map_sec {
  padding-bottom: 200px;
}
@media screen and (max-width:896px){
  .r_map_sec {
    padding-bottom: 100px;
  }
}