@charset "utf-8";

/*--- アクティブナビゲーション ---*/
#nav_top a {
  font-weight: bold;
  color: #2680E8;
  pointer-events: none;
}

/*--- TOPコンテンツ領域 ---*/
#top-content {}

#top-content h1 {
  display: none;
}

/*--- スライド ---*/
.swiper {
  background-color: #f5f5f5;
}

@media screen and (max-width: 700px) { /* 幅が700pxまで */
  .swiper {
    width : 100vw;
  }

  .swiper-slide img {
    width : 100vw;
  }
}

@media screen and (min-width: 701px) { /* 幅が701px以上 */
  .swiper {
    width : 700px;
  }

  .swiper-slide img {
    width : 700x;
  }
}

/* ナビゲーションボタン */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: white;
  font-size: 15px !important;
  font-weight: bold;
  opacity: 0.5;
}

.swiper-button-next,
.swiper-button-prev {}

/* ページネーション */
/* 余白 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px 10px;
}

/* サイズ、色 */
.swiper-pagination-bullet {
  height: 30px;
  width: 30px;
}

.swiper-slide {
  position: relative; /* 重ねメッセージの起点を指定 */
  font-size: 2em;
}

/* 画像メッセージ（上部） */
.img_txt_top {
  position: absolute;
  top: 10px;
  left: 10px;
  margin-right: 10px;
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  text-align: justify;
  text-justify: inter-ideograph; /* IE, Edge用*/
  text-shadow: 1px 1px 0 #000;
  z-index: 100;
  
  
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  
  
}

/* 画像メッセージ（下部） */
.img_txt_bottom {
  position: absolute;
  bottom: 20px;
  left: 10px;
  margin-right: 10px;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #fff;
  text-align: justify;
  text-justify: inter-ideograph; /* IE, Edge用*/
  text-shadow: 1px 1px 0 #000;
  z-index: 100;
  
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  
}

/*--- お知らせ領域---*/
#info_area {
  padding: 60px 0;
  /*visibility: hidden;*/
  display: none;
}

/* 表題 */
#info_cap {
  font-size: 2rem;
  text-align: center;
}

/* お知らせ一覧 */
#info_area ul {
  width: 75%;
  margin: 10px auto 0;
}

#info_area li {
  padding: 10px 0;
  list-style: none;
  line-height: 1.5em;
  border-bottom: 1px dotted silver;
}

#info_area li:first-of-type {
  border-top: 1px dotted silver;
}

/* お知らせ日時 */
#info_area .info_date {
  font-weight: bold;
}

/* お知らせ内容 */
#info_area .info_cont {
  margin-top: 3px;
  display: block;
  color: #333;
}

@media screen and (min-width: 1025px) { /* 幅が1025px以上 */
  #info_area li:nth-of-type(n + 4) { /* 4番目以降 */
    display: none;
  }
}

/* もっと見るリンク */
#info_area ul + .lnk_button {
  margin-top: 40px;
}

/*--- ナビゲーション ---*/
#topnav {
  background-color: #f5f5f5;
}

/* リスト */
#topnav li {
  width: 100%;
  background-size: cover;
  background-position: center;
}

#topnav li:first-of-type {
  background-color: #fff;
  border-top: 1px solid silver;
  border-bottom: 1px solid silver;
}

#topnav li.sdg_1 { /* sdgs背景1 */
  background-size: 80%;
  background-image: url("../img/sdg_logo_1.png");
  background-repeat: no-repeat;
}

#topnav li.sdg_2 { /* sdgs背景2 */
  background-size: 290px 100px;
  background-image: url("../img/sdg_logo_2.png");
  background-repeat: no-repeat;
}

#topnav li:nth-of-type(2) {
  background-image: url("../img/nav_bk_business.jpg");
  background-color: #ffd700;
}

#topnav li:nth-of-type(3) {
  background-image: url("../img/nav_bk_company.jpg");
  background-color: #87cefa;
}

#topnav li:nth-of-type(4) {
  background-image: url("../img/nav_bk_recruit.jpg");
  background-color: #3cb371;
}

#topnav li:nth-of-type(5) {
  background-image: url("../img/nav_bk_contact.jpg");
  background-color: #d3d3d3;
}

/* リンク */
#topnav a {
  width: 100%;
  padding: 70px 0;
  font-size: 2rem; /* 20pt */
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: none;
  color: white;
  display: block;
}

#topnav li:first-of-type a { /* 最初はSDGs項目 */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*#topnav li.nav_item a {*/
/*#topnav li.nav_item {*/
/*
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: all 1s;
}
*/

/*#topnav li.nav_item.is_show a { /* [.nav_item], [.is_show]の両方がある */
/*#topnav li.nav_item.is_show {*/
/*
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
*/

/* リンク英字サブタイトル */
#topnav span {
  margin-top: 3px;
  font-size: 65%;
  display: block;
}

#topnav li.nav_item a span {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 1s;
}

#topnav li.nav_item.is_show a span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

@media screen and (max-width: 1024px) { /* 幅が1024pxまで */
  #topnav li:nth-of-type(n + 2) { /* 2番目以降 */
    margin-top: 2px;
  }
}

/* メディアクエリ */
@media screen and (min-width: 1025px) { /* 幅が1025px以上 */
  #topnav ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  #topnav li {
    width: 50%;
    box-sizing: border-box; /* パディングとボーダーを幅と高さに含める */
    border: 1px solid white;
    background-position: center;
    /*float: left;*/
  }
  
  #topnav li:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}