
/* team_wrap */
/******************************************************************************
 * 10.03 - team_wrap
*****************************************************************************/
#main{
  background-color: #E8E7E8;
  margin-bottom: 0;
}
.sn_wrap{
  background-color: #fff;
  width: 1180rem;
  padding: 100rem 140rem;
  margin-bottom: 110rem;
}
.sn_header{
  display: flex;
  flex-direction: column;
  text-align: left;
  border-bottom: 1px solid #000;
  padding: 0 0 24rem;
  margin-bottom: 80rem;
}
.sn_header .date{
  display: inline-block;
  font-size: 18rem;
}
.sn_header .title{
  display: block;
  font-size: 22px;
  margin: 25rem 0;
  text-align: left;
  font-weight: bold;
}
.sn_header .inner_category_wrap{
  height: 20rem;
}
.sn_header .inner_category_wrap span{
  font-size: 16rem;
  display: inline-block;
  height: 22rem;
  line-height: 20rem;
  color: #fff;
  padding: 0 .5em;
  cursor: pointer;
}
.sn_header .inner_category_wrap span + span{
  margin-left: .5em;
}


.news_articul h2{
  font-size: 26px;
  border-left: 16rem solid #000733;
  padding: 7rem 24rem;
  font-weight: 900;
  margin-bottom: 40rem;
}
.main_article p{
  line-height: 1.9em;
}
.main_article h2 + p,
.main_article p + p{
  margin-top: 40rem;
}


.news_articul{
  font-size: 16px;
  word-wrap:break-word
}


.connection_news_wrap{
  background-color: #fff;
  margin-bottom: 75rem;
  text-align: center;
}
.connection_news_inner{
  width: 1280rem;
  padding: 64rem 0 85rem;
  margin: auto;
}
.connection_news_inner h3{
  font-size: 26rem;
  font-weight: bold;
  padding-bottom: 8rem;
  border-bottom: 10rem solid #f7ed00;
  margin: auto;
  margin-bottom: 50rem;
  display: inline-block;
}
.news_list_img{
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_list_img img{
  height: 240rem;
  max-width: fit-content;
  width: auto;
}
.news_list_inner .date{
  display: inline-block;
  font-size: 14rem;
  margin-top: 14rem;
}
.news_list_inner .title{
  display: block;
  font-size: 18px;
  margin: 4rem 0 12rem;
  text-align: left;
  font-weight: bold;
  line-height: 1.8em;
}
.news_list_inner .inner_category_wrap{
  height: 20rem;
}


.news_list_wrap{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -45rem 0 0 -40rem;
}
.news_list_inner{
  display: flex;
  flex-direction: column;
  width: 400rem;
  margin: 45rem 0 0 40rem;
  text-align: left;
}
.news_list_inner .inner_category_wrap{
  height: 20rem;
}
.news_list_inner .inner_category_wrap span{
  font-size: 14rem;
  display: inline-block;
  height: 20rem;
  line-height: 18rem;
  color: #fff;
  padding: 0 .5em;
  cursor: pointer;
}
.news_list_inner .inner_category_wrap span + span{
  margin-left: .5em;
}
.btn_div{
  margin: 100rem auto 95rem;
  text-align: center;
}



/* ナビゲーション */
.tm_page_nav{
  font-size: 16rem;
  display: flex;
  width: 750rem;
  margin: 180rem auto 170rem;
}
.tm_page_nav *{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250rem;
  line-height: 50rem;
  text-align: center;
  position: relative;
}
.tm_page_nav .nomal{
  color: #000733;
  border: 2px solid #000733;
}
.tm_page_nav .dark{
  color: #fff;
  background-color: #000733;
  border: 2px solid #000733;
}
.tm_page_nav a:nth-child(1)::before,
.tm_page_nav a:last-child::before{
  font-size: 16rem;
  position: absolute;
  color: #fff;
  z-index: 100;
  transform: scale(.5, 1);
}
.tm_page_nav a:nth-child(1)::before{
  content: '<';
  left: 10rem;
}
.tm_page_nav a:last-child::before{
  content: '>';
  right: 10rem;
}

.more_btn2{
  font-size: 16rem;
  color: #fff;
  background-color: #000733;
  position: relative;
  width: 250rem;
  height: 50rem;
  line-height: 50rem;
  text-align: center;
  display: block;
  margin: 75rem auto 0;
}
.more_btn2::after{
  content: '>';
  position: absolute;
  font-size: 16rem;
  right: 10rem;
  z-index: 100;
  transform: scale(.5, 1);
}
.breadcrumbs{
  margin-bottom: 50rem;
}
.news_main_img{
  margin-bottom: 50rem;
}

@media screen and (max-width:768px){

  #main{
    background-color: #fff;
    padding-top: 0;
  }

  .sn_wrap{
    width: 100%;
    padding: 45rem 30rem 100rem;
  }

  .sn_header{
    margin: 0 -30rem 70rem;
    padding: 0 30rem 54rem;
  }
  .sn_header .date{
    font-size: 22rem;
  }
  .sn_header .title{
    font-size: 32rem;
  }
  .sn_header .inner_category_wrap{
    height: 28rem;
  }
  .sn_header .inner_category_wrap span{
    font-size: 22rem;
    height: 28rem;
    line-height: 28rem;
  }
  .sn_header .inner_category_wrap span + span{
    margin-left: .5em;
  }


  .news_articul h2{
    font-size: 32rem;
    border-left: 16rem solid #000733;
    margin-bottom: 50rem;
  }
  .main_article p{
    font-size: 28rem;
  }
  .main_article h2 + p,
  .main_article p + p{
    margin-top: 50rem;
  }


  .news_articul{
    font-size: 28rem;
    max-width: 100%;
    word-wrap:break-word
  }







  .connection_news_wrap{
    margin-bottom: 75rem;
  }
  .connection_news_inner{
    width: 100%;
    padding: 64rem 30rem 85rem;
  }
  .connection_news_inner h3{
    font-size: 45rem;
    border-bottom: 20rem solid #f7ed00;
  }

  .news_list_wrap{
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
  }
  .news_list_inner{
    width: 100%;
    margin: auto;
  }
  .news_list_inner + .news_list_inner{
    margin-top: 65rem;
  }

  .news_list_img{
    margin-bottom: 18rem;
  }
  .news_list_img img{
    width: 100%;
    height: auto;
  }
  .news_list_inner .date{
    font-size: 22rem;
  }
  .news_list_inner .title{
    font-size: 28rem;
    margin: 25rem 0;
  }
  .news_list_inner .inner_category_wrap{
    height: 20rem;
  }
  .news_list_inner .inner_category_wrap span{
    font-size: 22rem;
    height: 30rem;
    line-height: 30rem;
  }
  .btn_div{
    margin: 90rem auto 114rem;
  }
  .btn_div .more_btn{
    width: 500rem;
  }

  .more_btn2{
    font-size: 28rem;
    width: 400rem;
    height: 70rem;
    line-height: 70rem;
  }



  /* ナビゲーション　*/
  .tm_page_nav{
    font-size: 26rem;
    width: 100%;
    margin: 90rem auto 110rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tm_page_nav *{
    width: 300rem;
    height: 66rem;
  }
  .tm_page_nav *:nth-child(1){ order: 1; }
  .tm_page_nav *:nth-child(2){
    order: 3;
    margin: 25rem 15vw 0;
  }
  .tm_page_nav *:nth-child(3){
    order: 2;
    margin-left: 50rem;
  }

  .tm_page_nav a:nth-child(1)::before,
  .tm_page_nav a:last-child::before{
    font-size: 26rem;
  }

}
