@charset "utf-8";
/* CSS Document */
/*========= レイアウトのためのCSS ===============*/
.pc {
  display: none;
}
.smp {
  display: block;
}
.pt50 {
  padding-top: 50px;
}
.pt100 {
  padding-top: 100px;
}
.mt100 {
  margin-top: 100px;
}
.mb20 {
  margin-bottom: 20px !important;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
/* wrap */
.hero {
  position: relative;
  z-index: 50;
}
#logo {
  position: absolute;
  z-index: 100;
  top: 12px;
  left: 20px;
}
  #logoimg {
    width: 170px;
	  padding: 10px;
	  background-color: rgba(255, 255, 255, 0.9); /* 0.5 = 50%透明 */
  }
.centering {
  text-align: center;
}
.line {
  text-decoration: underline;
}
h1, h2, h3 {
  line-height: 1.5em;
}
p {
  font-size: 18px;
  line-height: 1.7em;
}
h2 {
  font-size: 30px;
  line-height: 1.5em;
  text-align: center;
  color: #D74513;
}
h2 span {
  font-size: 20px;
}
h3 {
  font-size: 20px;
  margin: 10px 0;
}
h3 span {
  font-size: 16px;
}
/*2025年 Newsタイトル*/
.news-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #d94e1f;
  font-size: 30px;
  font-weight: bold;
}
/* 左右 3本の細線 */
.news-title::before, .news-title::after {
  content: "";
  flex-grow: 1;
  height: 13px; /* 1px × 3本 + 隙間 */
  background: repeating-linear-gradient(to bottom, #d94e1f 0px, #d94e1f 1px, /* 1本目 */ transparent 1px, transparent 6px, #d94e1f 6px, #d94e1f 7px, /* 2本目 */ transparent 7px, transparent 12px, #d94e1f 12px, #d94e1f 13px /* 3本目 */
    );
}
.news-title::before {
  margin-right: 10px;
}
.news-title::after {
  margin-left: 10px;
}
.news-title span {
  padding: 0 20px;
  background: #000; /* 背景色に合わせる */
  white-space: nowrap;
}
/* video */
.video-box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video {
  width: 100%;
  height: 100%;
}
.t_deco, .b_deco {
  position: absolute;
  width: 100%;
  height: 95px;
  background: url("../images/video_deco.png");
}
.t_deco {
  top: 0;
}
.b_deco {
  bottom: 0;
}
.inner {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.fadeInBlock {
	margin-bottom: 115px;
}
.block {
  color: #666;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 25px;
  padding: 20px;
}
.fadeIn1500ms {
  animation-name: fadeIn1500ms;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn1500ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*あいさつ文*/
#text {
  width: 100%;
  /*padding: 70px 0;*/
  background: url("../images/bg_2026_smp.png") no-repeat center center;
  background-size: cover;
  padding-bottom: 30px;
}
#text p {
  width: 96%;
  margin: 0 auto;
  line-height: 2em;
  text-align: center;
}
.stamp { /*迎春*/
  width: 22%;
  padding: 30px 0;
  margin: 0 auto;
}
.stamp img {
  width: 100%;
}
/*2025年NEWS*/
.topics {
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto;
  justify-content: center;
}
.topics .box3 {
  width: 92%;
  margin: 7% 2%;
  padding: 2%;
  border: 2px solid #D2B456;
}
.topics .box3 img {
  width: 100%;
}
.topics .box3 h3 span{
	width:100%;
	
}
.topics .box3 h3 span.genre{
	margin-bottom: -35px;
}
.topics .box3 h3{
	height: 90px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	text-align: left;
	
}
footer .sns {
  text-align: center;
  margin: 0 auto 20px auto;
}
footer .sns img {
  margin: 0 5px;
}
#copyright {
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width:768px) {
    .t_smp {
    display: none
  }

	.video {
    object-fit: cover;
  }
#logo {
  top: 7px;
}
  #logoimg {
    width: 200px;
  }
  #text {
    background: url("../images/bg_2026_pc.png") no-repeat center center;
    background-size: cover;
    padding-bottom: 50px;
  }
  .stamp { /*迎春*/
    width: 15%;
  }
  .topics {
    width: 100%;
  }
  .topics .box3 {
    width: 27%;
    margin: 1.5%;
    padding: 1%;
  }
}
@media screen and (min-width:1200px) {
  .pc {
    display: block;
  }
	.smp{
		display: none;
	}
	#logo {
  top: 10px;
}
.fadeInBlock {
	margin-bottom: 0px;
}
  .stamp { /*迎春*/
    width: 13%;
  }
  .topics {
    width: 90%;
  }
}
@media screen and (min-width:1400px) {
  .stamp { /*迎春*/
    width: 10%;
  }
  .topics {
    width: 80%;
  }
}