@charset "utf-8";

/* * {
  outline: 1px solid magenta;
} */


.firstView {
  position: relative;
  /*背景を設定するdivの基点とするためrelativeをかける*/
  /* overflow: hidden; */
  /*はみ出しているところを隠す*/
  position: relative;
  /*背景を設定するdivの基点とするためrelativeをかける*/
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /*はみ出しているところを隠す*/

  /* height: calc(100vh - 110px); */
}

#firstViewImg {
  position: fixed;
  /*背景を固定するためfixedをかける*/
  z-index: -999;
  /*#container,#footerよりも下に配置するために数値を小さくする*/
  /*topの位置がJSで変化*/
  /*以下画面で背景画像を表示させるための指定*/
  width: 100%;
  height: calc(100vh - 110px);
  background: url(../images/index/bg-top.jpg) no-repeat top center;
  /*背景画像の設定※オリジナルの画像に設定してください*/
  background-size: cover;
  transform-origin: center;
  /*変化する基点を中心からに設定*/
}

.firstView h1 {
  font-family: "RocknRoll One", sans-serif;
  font-size: 100px;
  line-height: 115px;
  position: fixed;
  top: 0%;
  left: -5%;
  /* transform: translate(-50%, -50%); */
  color: #ffffff;
  font-weight: bold;
  font-style: normal;
  letter-spacing: -0.05em;
  text-shadow: 1px 1px 10px #4b2c14;
  transform: rotate(-10deg);
  z-index: -3;
  /* background-color: rgba(104, 114, 255, 0.4); */
  width: 120vw;
  padding: 50px 200px;
  overflow: visible;
}

.fontRed {
  color: #e76f3b;
}


.fontYelloew {
  color: #f8e47e;
}

.firstView p {
  font-size: 18px;
  margin-top: 20px;
}


.linkButtonArea {
  text-align: center;
  margin: 100px 0 0 0;

}

.linkButton {
  background-color: #e79c5b;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  padding: 20px 50px;

}

.linkButton:hover {
  background-color: #d8b500;
}

.mainBg h2 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: rgb(32, 32, 163);
  /* text-align: center; */
  font-size: 4rem;

  margin: 0 0 20px 0;
  animation-delay: 0.3s;
}





/* ====================================   news   ==================================== */


/* ここからがニュース記事のCSS */
.news {
  margin: 25% 5%;
}

.news_list {
  color: #00496D;
  margin: 0 5%;
}

.news_list_item {
  padding: 40px 10px 10px 10px;
  border-bottom: 1px solid #00496D;

}



.news_list_item a {
  padding-right: 30px;
}

.news_list_date {
  position: relative;
  font-size: 15px;
  display: flex;
  align-items: center;

}


.news_list_date time {
  width: 200px;
  text-align: center;
  margin-right: 30px;
  /* position: absolute; */
}


/* .news_list_date p::before {
  content: "";
  display: block;
  width: 0.5px;
  height: 200%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: -50%;
} */

.news_item {
  font-size: 11px;
  background: #e76f3b;
  border-radius: 0 50px 50px 0;
  color: #fff;
  width: 120px;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  padding: 8px;
}

.news_more_list {
  text-align: right;
}

.news_more p {
  display: inline-block;
  margin-right: 50px;
}

.news_more {
  display: inline-block;
  position: relative;
  font-size: 15px;
  margin: 25px 15px 50px 0;

}


.news_arrow {
  width: 20px;
  height: 15px;
  background: url(../images/index/arrow.jpg) no-repeat center/cover;
  position: absolute;
  top: 20%;
  right: 0;
  transition: 0.3s;

}

.news_arrow:hover {

  transform: rotate(-90deg);
}

/* 
.news_arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #00496D;
  transform: rotate(-45deg);
  position: absolute;
  right: 0px;
  bottom: -2px;
} */


/* popup_content */
.popup_bg {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(64, 73, 82, 0.8);
  transition: 0.4s;
  z-index: 101;
}

.popup_news_list {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  z-index: 110;
  max-width: 730px;
  max-height: 80vw;
  background: #fff;
}


.popup_news_box {
  width: 90%;
  margin: 0 auto;
}



.popup_news_item {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #000; */
  position: relative;
  padding-top: 7%;
  width: 95%;
  margin: 0 auto;
}





.popup_news_item time {
  /* font-size: 26px; */
  margin-left: 5%;
  /* margin-right: 15px; */
}

.popup_news_item p {
  font-size: 20px;

}

.popnews_title {
  font-size: 25px;

  margin-left: 5%;


}

.news_photo {
  display: flex;
  justify-content: center;
  /* 横方向中央 */
  align-items: center;
}

.popup_news_text {
  text-align: center;
}

.popup_news_text p {
  font-size: 15px;
  text-align: left;
  width: 85%;
  margin: 0 auto;
  padding-top: 34px;
  line-height: 1.5;

}

.popup_news_text a {
  display: inline-block;
  font-size: 12px;
  padding-top: 57px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;

}


#popup_news img {
  display: inline-block;
  /* display: block; */
  width: 50%;
  height: 50%;
  object-fit: cover;
  padding-top: 41px;

}




.popup_list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

/* popup_content */
.popup_bg {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(64, 73, 82, 0.8);
  transition: 0.4s;
  z-index: 101;
}

.popup_content {
  position: relative;
}


.popup_box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  z-index: 110;
  width: 60%;
  max-width: 1536px;
  height: 75%;
  max-height: 1070px;
  background: #fff;
  overflow: scroll;
  /* padding: 5%; */
}

#popup_gallery.popup_flex {
  display: flex;
  gap: 3%;
  justify-content: center;
  height: 100%;
  padding: 5% 0;

}

.art_cap {
  font-size: 25px;
}

.popup_box img {
  display: block;
  width: 30%;
  max-width: 605px;
  /* height: 80%; */
  object-fit: scale-down;
}

.popup_txt {
  width: 50%;
}

/* .title_boder {
  height: 1px;
  background-color: #000;
} */


.popup_txt .title {
  font-size: 43px;
  border-bottom: solid 1px #000;
  padding-bottom: 40px;

}



.popup_name {
  display: flex;
  gap: 5%;
  align-items: center;
  font-size: 26px;
  margin: 65px 0;
  vertical-align: middle;
}



.art_cap {
  font-size: 15px;

}

.art_cap p {
  padding-bottom: 20px;
}

.popup_name a {
  font-size: 14px;
  background-color: #D9D9D9;
  border-radius: 25px;
  /* margin-left: 2em; */
  padding: 0.5em 1.7em;
}

.popup_eve {
  padding: 1em 0;
  font-size: 18px;
}

.popup_eve li {
  font-size: 14px;
  padding: 16px 0 0 90px;
}

.popup_icon {
  width: 283px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_icon img {
  max-width: 80px;
  margin-top: 14px;
}

/* .popup_box p {
 font-size: 14px;
 line-height: 1.8;

} */

/* popup_nav */
.popup_nav .prev {
  position: absolute;
  top: 50%;
  left: 0px;
  /* left: -40px; */
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index: 130;
}

.popup_nav .next {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}

.popup_nav .prev.disabled,
.popup_nav .next.disabled {
  display: none;
}

.popup_nav img {
  width: 100%;

}

/*--close btn--*/
.popup_close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 120;
}

.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #434c55;
  position: absolute;
  left: 50%;
  top: 50%;
}

.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}

.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}

.newsBr {
  display: none;
}





/*==================================================
スライダーのためのcss
===================================*/
.sliderBox {
  padding: 100px 0 250px 0;
  position: relative;
}

.slider li {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
  box-shadow: 0 0 10px #ccc;
  border-radius: 20px;
  background-color: #ffffff;
}

.slider li figure img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
  border-radius: 20px 20px 0 0;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px;
  /*スライド左右の余白調整*/
}

.sliderText {
  padding: 10px 20px;
}

/* .sliderText time {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 20px 0;
} */

.sliderText h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 20px 10px 10px 10px;
  font-weight: 500;
}

.sliderTextP {
  line-height: 1.7;
  padding: 10px;

}

.sliderTextBtn {
  background-color: #e76f3b;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 30px;
  font-weight: 500;
}



/* .sliderBox::after {
  position: absolute;
  content: '';
  top: 32%;
  left: 0;
  width: 100vw;
  height: 40vh;
  background: #eaf0f6;
} */



.sliderBox h2 {
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-weight: 400;
  color: rgb(32, 32, 163);
  font-size: 4rem;
  margin: 0 auto 100px auto;
  animation-delay: 0.3s;
}

















/* .mainBg h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
} */

/* ======   @top.css   ====== */
/* ======   @messe.css.css   ====== */





/* .mochiy-pop-one-regular {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
} */


#topics h2 {
  width: 75vw;
  margin: 0 auto 100px auto;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.news h2 {
  margin: 0 auto 100px auto;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}


