@charset "utf-8";

*{
  font-family: 'Noto Serif JP', serif;
  box-sizing: border-box;
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  pointer-events: none;
}

/* ハンバーガーメニュー */
.sp_style{
  display: none;
}

.pc_style{
  display: flex;
  align-items: stretch;
}

header {
  flex-basis: 200px;
  z-index: 200;
  height: auto;
  background: rgb(182,0,5);
  background: linear-gradient(90deg, rgba(182,0,5,1) 0%, rgba(204,76,80,1) 100%);
}

nav {
  position: fixed;
  left: 20px;
  width: 200px;
  min-width: 200px;
  text-align: center;
}

.navWrapper{
  width: 160px;
}

.header_icon {
  padding-top: 35px;
  margin:0 auto 40px;
  text-align: center;
}

.header_icon img{
  width: 140px;
  height: auto;
}

.menu_list{
  margin: 0 auto;
}

.menu_list a{
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  transition: .3s;
  padding-top: 20px;
  padding-bottom: 20px;
}
 
.menu_list a:before{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #eee;
    opacity: 0.8;
    transition: 0.7s;
}
 
.menu_list a:hover{
    color: #b60005;
}

.sp_style .menu_list a:hover{
  color: #c39d4d;
}
 
.menu_list a:hover:before{
    left: 0;
}

.menu_list li{
  width: 160px;
  border-top: 1px solid #fff;
}

.menu_list li .menu_top{
  font-size: 18px;
  margin-bottom: 7px;
}

.menu_list li .menu_bottom{
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

.menu_list li .twitter_icon{
  width: 30px;
  height: auto;
}

.notLink{
  color: #231815;
  opacity:0.7;
  pointer-events:none;
}

main {
  flex-grow: 1;
  width: auto;
  Overflow: hidden
}

.main_visual {
  background-image: url(../img/main_visual.jpg);
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: calc(1608 / 2071 * 100%);
}
@media screen and (max-width:650px){
  .main_visual {
    background-image: url(../img/main_visual_sp.jpg);
    padding-top: calc(3645 / 1345 * 100%);
    position: relative;
  }
}

/* スマホ用メニュー */

.mobileNavWrapper{
  display: none;
}

@media screen and (max-width:650px){
  .mobileNavWrapper{
    display: block;
    z-index: 1;
  }

  .menu_list.mobileStyle{
    width: 95vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: absolute;
    padding-top: 175.5%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .menu_list.mobileStyle li{
    background: rgb(182,0,5);
  background: linear-gradient(90deg, rgba(182,0,5,1) 0%, rgba(204,76,80,1) 100%);
    border: none;
    text-align: center;
    margin: 5px;
  }
  .menu_list.mobileStyle a{
    padding-top: 25px;
    padding-bottom: 25px;
  }
   
  .menu_list.mobileStyle a:hover{
      color: #c39d4d;
      background-color: #eee;
      transition: all 0.5s;
  }

  .menu_list.mobileStyle li .menu_top{
      font-size: 13px;
      margin-bottom: 7px;
  }

  .menu_list.mobileStyle li .menu_bottom{
      font-size: 10px;
  }

}
@media screen and (max-width:330px){
  .menu_list.mobileStyle a{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .menu_list.mobileStyle li .menu_top{
    font-size: 12px;
  }
  .menu_list.mobileStyle li{
    margin: 3px;
  }
}


.news {
  padding-top: 50px;
  position: relative;
}

.titleStyle{
  font-size: 28px;
  font-weight: 700;
  color: #B60005;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titleStyle img{
  width: 25px;
  height: 25px;
  margin-right: 40px;
  margin-left: 40px;
}

@media screen and (max-width:650px){
  .titleStyle{
    font-weight: 700;
    color: #B60005;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 40px;
  }

  .titleStyle h1{
    font-size: 24px;
    color: #b60005;
  }
  
  .titleStyle img{
    width: 25px;
    height: auto;
    margin-right: 20px;
    margin-left: 20px;
  }
}

/* TOPページ更新情報 */

.news{
  margin:0 auto 100px;
  text-align: left;
}
@media screen and (max-width:1200px){
  .news{
    width: 90%;
  }
}

.news_contents.inner{
  max-width:800px;
  margin:0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

.news_contents.inner a{
  color: #414141;
}

.news_content:hover{
  background-color: rgba(15, 55, 105, 0.1);
}
.news_content.archive:hover{
  background-color: unset;
}

.news_content_inner{
  text-align: center;
  margin: 0 auto;
  display: flex;
  height: 24px;
  line-height: 24px;
}

.news_content_inner .date{
  padding-left: 10px;
  max-width: 120px;
  margin-right: 10px;
}
.news_content_inner .category{
  text-align: center;
  min-width: 50px;
  max-height: 24px;
  margin-right: 10px;
}
.news_content_inner .title_text{
  flex-grow: 4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  flex-basis: 60%;
  color: #231815;
}
@media screen and (max-width:650px){
  .news_content_inner{
    flex-wrap: wrap;
	  display:flex;
  }
  .news_content_inner .date{
    flex-basis: 20%;
    max-width: 100px;
    text-align: left;
    padding-left: 0;
  }
  .news_content_inner .category{
    text-align: center;
    flex-basis: 80%;
	  margin-left:10px;
  }
  .news_content_inner.title_text{
    flex-basis: 100%;
    margin-top: 10px;
    padding-left: 0px;
  }

  .news_content_inner{
  height: unset;
  }
}


.news_list_link{
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 30px;
  text-align: center;
}

.news_list_link.bottom{
  margin-bottom: 80px;
}


.news_list_link.single{
	margin-bottom:100px;
}


.link_btn{
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
  background-color: #3E3A39!important;
  color: #fff;
}


@media screen and (max-width:650px){
  .link_btn{
    width: 100%;
    max-width: unset;
  }
}

.category{
  color: #fff;
  margin-right: 5px;
  font-size: 12px;
  line-height: 24px;
  max-width: 50px;
	text-align:center;
}

/* TOPページの更新情報のラインの色 */
.news_contents li {
	padding: 20px 0;
  border-bottom: 1px dashed #414141;
}

.news_contents li:first-child {
	border-top: 1px solid #414141;
}

.news_contents li:last-child {
  border-bottom: 1px solid #414141;
}


@media screen and (max-width:650px){
  .news_link{
    display: none;
  }
}

/* TOPページの更新情報のカテゴリーの色 */
.eria1{
  background: #b60005!important;
}

.eria2{
  background: #C39D4D!important;
}

.eria3{
  background: #036eb7;
}

/* 金沢 */
.eria4{
  background: #e49800;
}
/* 広島 */
.eria5{
  background: #ea545d;
}


.arrow {
  margin-right:2px;
  margin-left:5px;
}


/* ここからTOPのINFOゾーン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.informationWrapper{
  background-color: #ede2ca;
  position: relative;
  padding: 50px 0 100px 0;
}

.informationWrapper::before{
  content:"";
  position: absolute;
  top: -50px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
 
  /*ここで三角形のサイズを決める。
  必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 0 0 50px calc(100vw - 200px) ;
 
  border-color: transparent  transparent #ede2ca transparent;
}

.informationWrapper.bg_B::before{
  content:"";
  position: absolute;
  top: -50px;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
 
  /*ここで三角形のサイズを決める。
  必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width:50px  0 0 calc(100vw - 200px) ;
 
  border-color: transparent transparent transparent #ede2ca;
}

@media screen and (max-width:900px){
  .informationWrapper.bg_B::before {
    border-width:50px  0 0 100vw ;
  }
}

.informationTitle{
  max-width: 700px;
  height: 40px;
  margin: 0 auto 30px;
  background-color: #c39d4d;
  text-align: center;
  color: #fff;
}

@media screen and (max-width:900px){
  .informationTitle {
    width: 90%;
    max-width: unset;
  }
}

.informationTitle h2{
  font-size: 25px;
  font-weight: 600;
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.informationTitle p{
  font-size: 15px;
  display: inline-block;
  margin-left: 10px;
}

.informationContents{
  max-width:700px;
  width: 80%;
  margin: 0 auto 30px;
  display: flex;
  align-items: flex-start;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:660px){
  .informationContents {
    display: block;
    width: 90%;
    max-width: unset;
  }
}

.informationContents h3{
  font-size: 20px;
}

.endText {
  text-align: center;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}

.informationContent_A{
  background-color: #B60005;
  min-width: 100px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  color: #fff;
  margin-right: 10px;
}


@media screen and (max-width:660px){
  .informationContent_A {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.informationContent_B h3{
  line-height: 30px;
  color: #B60005;
  font-weight: 600;
}

.informationContents p{
  font-size: 15px;
  color: #414141;
  line-height: 28px;
}

.informationContents.center{
  justify-content: center;
  align-items: center;
}

.informationContents.textcenter{
  text-align: center;
}

.informationContents.center.sp{
  display: none;
}

@media screen and (max-width:660px){
  .informationContents.center{
    display: none;
  }
  .informationContents.center.sp{
    display: block;
  }
  .news.link_btn.info{
    width: 90%;
  }
}

.twitterWrapper{
  background-color: #fff;
  position: relative;
  padding: 80px 0 0 0;
  min-height: 470px;
}

.twitterWrapper::before{
  content:"";
  position: absolute;
  bottom: 0;
  top:-50px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
 
  /*ここで三角形のサイズを決める。
  必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 0 0 50px calc(100vw - 200px) ;
 
  border-color: transparent  transparent #fff transparent;
}

@media screen and (max-width:900px){
  .twitterWrapper::before{
    border-width: 0 0 50px 100vw;
  }
}

.twitter_bg{
  position: absolute;
  top: -180px;
  left:-80px;

}

.twitter_bgSP{
  display: none;
}

.twitterContents.styleSP{
  display: none;
}

.twitter_bgSP_short{
  display: none;
}


@media screen and (max-width:660px){
  .twitter_bgPC{
    display: none;
  }
  .twitter_bgSP{
    display: block;
    position: absolute;
    left:50px;
  }

  .twitterContents.stylePC{
    display: none;
  }
  .twitterContents.styleSP{
    display: block;
  }
}


@media screen and (max-width:380px){
  .twitter_bgSP{
    display: none;
  }
  .twitter_bgSP_short{
    display: block;
    position: absolute;
    left:20px;
  }
}


.twitterContentsWrapper {
  max-width:700px;
  margin:0 auto;
  position:relative;
}

.twitterContents {
  position: absolute;
  top: -40px;
  right: 0;
  width: 370px;
  margin: 0 auto;
}

@media screen and (max-width:660px){
  .twitterContents {
    bottom: 20px;
    right: 0px;
  }

  .twitterContents.styleSP {
    width: 90%;  
    position: relative;
  }

  .twitterContentsWrapper.styleSP{
    position: absolute;
    right: 0;
  }
  
  .twitterContent.styleSP {
    border: 1px solid #B60005;
    width: 250px;
    height: 322px;
    margin: 0px;
  }

  .titleStyle.twitter.styleSP{
    width: 250px;
  }

  .titleStyle.twitter.styleSP .styleSP_left{
    margin-left: 0px;
    margin-right: 10px;
  }
  .titleStyle.twitter.styleSP .styleSP_right{
    margin-left: 10px;
    margin-right: 0px;
  }
}


.twitterContent {
  border: 1px solid #B60005;
  width: 352px;
  height: 322px;
  margin: 0 auto;
}

.pageTop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
}

.pageTop img{
  width: 60px;
  height: 60px;
}


footer {
  height: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 250;
}

footer p {
  line-height: 40px;
  font-size: 13px;
}

 
/* 追加 */
.top_attention {
  margin: 80px auto 50px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.top_attention h3{
  display: inline-block;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
  color: #B60005;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px dashed #b60005 ;
}

.top_attention p{
  font-size: 15px;
  color: #414141;
  line-height: 28px;
}

.top_attention .pc_style {
  display: inline-block;
  text-align: center;
}

.top_attention .sp_style {
  display: none;
}

@media screen and (max-width:800px){
  .top_attention .pc_style{
  display: none;
  }

  .top_attention .sp_style{
    display: inline-block;
  }

}



/* ここからメディアクエリ */

@media screen and (max-width:900px){
  .pc_style{
  display: block;
  }

  .sp_style{
    display: block;
  }

  header .pc_menu{
    display: none;
  }

  .main_copy::before{
    border-width:50px  0 0 100vw ;
  }
  .informationWrapper::before{
    border-width: 0 0 50px 100vw ;
  }

}



.informationContent_B.info .blueText {
  color: #B60005;
}

.hideVer{
  pointer-events: none;
}


