@charset "UTF-8";
/* CSS Document */
body {
  background-image:url("../image/bg/top-bg.png"); /*固定する背景画像*/
  text-align: center;
  background-attachment: fixed; /*背景画像を固定したままにするかしないか*/
  width: 100%;
  height: 100%;
  background-size: cover; /*背景画像のサイズを指定*/
}
.background-sub{
	position: fixed;
  background-position: center;
  background-size: cover;
	width: 100%;
  height: 100%;
	  animation-name: background-sub;
  animation-duration: 15s; /* 5秒間で表示 */ 
  animation-fill-mode: both;  
	animation-iteration-count: infinite;
}
@keyframes background-sub { /*animation-nameで設定した値を書く*/
0% {
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
	
    50% {
        opacity: 1;
		
    }
    75% {
        opacity: 0.5;
    }
    100% { opacity: 0 ;
	}
}
.background-sub__02{
	display:none;
}
.section-top {
	display:block;
	text-align: center;
}
.section-top__artistname {
  margin: 0 auto;
  width: 50%;
  height: auto;
  padding: 10px 30px 0;
	
	display: none;
}
.section-top__artistname.is-show {
  opacity: 1;
}
.section-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 170px 30px 300px;
  text-align: center;
}
@media(max-width:400px) {
  body:before {
    background-image: url("../image/bg/top-mobile_.png"); /*固定する背景画像*/
    text-align: center;
    background-size: cover; /*背景画像のサイズを指定*/
	  background-position: bottom;
	  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  }
	.section-top{
		padding:0;
		 
	}
	.background-sub{
		display:none;
	}
		.background-sub__02 {
			display: block;
  position: fixed;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  animation-name: background-sub;
  animation-duration: 15s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
  .section-top__artistname {
	padding:0;
	  width:75%;
  }
  .section-top img {
  padding:180px 0 300px;
  }
}
.section-news {
  background-color: rgba(46, 46, 46, 0.4);
  width: 40%;
  margin: 100px auto 100px;
  padding: 5px 10px 10px;
opacity: 0;
  transition: all 0.7s;
}
.section-news.fadein {
  opacity: 1;
  transform: translateY(-60px);
}
.section-news__border {
  margin: 0.5em auto;
  padding: 7px 0px;
  width: 100%;
	height:94%;
  border: 1px solid #fff; /* 枠線 */
}
.section-news__content{
	margin: 0 auto;
}
.section-news h2 {
  padding: 20px 0 10px;
	font-family: "Adobe-Caslon-Pro";
	font-size: 20px;
}
.section-news ol {
  list-style-type: none;
  padding-left: 0;

}
.section-news li time:after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}
.section li time:before {
  display: table-cell;
  padding-right: 0.4em;
}
li {
  margin-bottom: 0.5em;
}
.section-news ol li time {
  font-size: 1.4rem;
  display: flex;
  align-items: center; /* 垂直中心 */
  padding: 0 10%;
}
.section-news ol li time:after {
  border-top: 1px solid #FFF;
  content: "";
  width: 80%;
}
.section-news ol li time:after {
  margin-left: 1.0em;
}
.section-news_item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.section-news ol li p {
  padding: 10px 35% 10px 10%;
  text-align: left;
}
.click-button {
 /* padding-left: 130px;*/
  text-align: right;
  color: #FFF;
	padding-right: 10%;
  cursor: pointer;
  text-decoration: none;
	}
.click-button:hover {
  transform: translate3d(0, 5px, 0);
  color: #fff;;
  box-shadow: none;
  
}
@media(max-width:400px) {
 .section-news {
  width: 70%;
  margin: 0 auto;
  padding: 4px 8px;
}
.section-news__border {
  margin: 0.5em auto;
  padding: 0.5em;
  width: 100%;
  border: 1px solid #fff; /* 枠線 */
}
.section-news h2 {
  padding: 10px 0 5px;
}
.section-news ol {
  list-style-type: none;
  padding-left: 0;
  display: table;
}
.section-news li time:after {
  margin-bottom: 0.5em;
}
.section li time:before {
  padding-right: 0.4em;
}
li {
  margin-bottom: 0.5em;
}
.section-news ol li time {
  font-size: 1.1rem;
  padding:0 5px;
  margin: 0;
}
.section-news ol li time:after {
  width: 13em;
}
.section-news ol li time:after {
  margin-left: 0.3em;
}
.section-news_item {
  margin-bottom: 20px;
}
.section-news ol li p {
  padding: 8px 50px 10px 5px;
	font-size: 1.4rem;
}
.click-button {
  padding-left:0;
  margin: 5px;
	font-size: 1.2rem;
}
}
.section-movie {
  background-color: rgba(46, 46, 46, 0.4);
  width: 40%;
  margin: 300px auto 100px;
  padding: 10px 10px 10px;
opacity: 0;
  transition: all 0.7s;
}
.section-movie.fadein {
  opacity: 1;
  transform: translateY(-60px);
}
.section-movie__border {
  margin: 0 auto;
  padding: 10px 10px 40px;
  width: 100%;
	height: 97%;
  border: 1px solid #fff; /* 枠線 */
}
.section-movie h2 {
  padding: 20px 10px 10px;
  margin: 0 auto;
  border-bottom: 1px solid #FFF;
  content: "";
  width: 82%;
  text-align: center;
	font-family: "Adobe-Caslon-Pro";
	font-size: 20px;
}
.movie-wrap{
	 position: relative;
    width: 100%;
}
.movie-wrap::before {
  content: "";
  display: block;
  padding-top: 57.25%; /* 高さを幅の75%に固定 */
}
.movie-wrap iframe{
	  position: absolute;
    top: 0;
    left: 0;
width:100%;
	height: 100%;
}
.section-movie iframe {
    width: 100%;
	top:15px;
}
@media(max-width: 400px) {
  .section-movie {
  width: 70%;
  margin: 200px auto 200px;
  padding: 5px 8px;
}
.section-movie__border {
  padding: 4px 8px 30px;
  width: 100%;
}
.section-movie h2 {
  padding:20px 10px 5px;
  margin: 0 auto;
  width: 19rem;
}
}