body {
	font-family: "Noto Sans JP", sans-serif;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:translateX(-300%) skewX(-45deg);
	} 100% {
		transform-origin:left;
		transform:translateX(500%) skewX(-45deg);
	}
}

#container{
	opacity: 0;
}

body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	} 100% {
	opacity: 1;
    }
}

.slider img {
    width: 100%;
    height: auto;
}

.slider .slick-slide {
    margin: 0 10px;
}

.chuo {
    height: 10rem;
    text-align: center;
}
.line{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
}

.niji {
    background: linear-gradient(to left,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783,#e60000) 0 / 200%;
    height: 80px;
    animation: 5s example4 linear infinite;
}
@keyframes example4{
    100% { background-position: 200%; }
}

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #333;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.splashbg{
    display: none;
}

body.appear .splashbg{
	display:block;
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 50%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: translateX(-300%) skewX(-45deg);
    background-color: #333;
}

.tate {
	text-align: start;
	font-family: "Noto Serif JP", serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
  	font-style: normal; 
}

.center {
	text-align: center;
	color: #000000;
}


/*== 線の上を別の線が伸びる */

.btnlinestretches4{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*リンクの形状*/ 
	color:#333;
    padding: 10px 50px 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches4::before,
.btnlinestretches4::after{
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
     /*線の形状*/   
	background:#333;
	width:100%;
	height:2px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

 /*hover時に伸びる線の形状*/   
.btnlinestretches4::after{
	width:0;
	background:#ccc;
}

 /*hover時に100%に伸びる*/   
.btnlinestretches4:hover::after {
	width:100%;
}

 /*矢印の設定*/   
.btnlinestretches4 span::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 1.3em;
    right: 20px;
    /*矢印の形状*/   
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hover時に矢印が移動*/   
.btnlinestretches4:hover span::after {
	right:15px;
}

.inner {
    width: 800px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
}

.center {
	text-align: center;
}

.news-box {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-width: 700px;
	margin: auto;
	padding: 30px 30px 10px;
}

.news-box h2 {
	font-size: 1.5em;
	margin-bottom: 20px;
}

.news-item {
	display: flex;
	flex-direction: row;
	padding: 12px 0;
	border-top: 1px solid #ccc;
}

.news-item:first-of-type {
	border-top: none;
}

.news-date {
	width: 120px;
	color: #333;
	font-weight: bold;
	flex-shrink: 0;
}

.news-link a {
	color: #222;
	text-decoration: none;
}

.news-link a:hover {
	text-decoration: underline;
}

.more-link {
	text-align: right;
	margin-top: 15px;
}

.more-link a {
	color: #222;
	text-decoration: none;
}

.more-link a::before {
	content: "➜ ";
	color: #00a;
}