@charset "utf-8";
/* CSS Document */

.preload {
	transition: 0 !important;
}

a {
	text-decoration: none;
}

html {
	scroll-behavior: smooth;
}

/*共通部分*/

body {
	font: 16px;
	/*  "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif; */
	font-family: "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", ヒラギノ角ゴシック, "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	;
	margin: 0;
	width: 100%;
	min-width: 1080px;
	background-color: #f3f3f3;
}

.wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

/* 左側（ナビゲーション） */

.left {
	width: 14%;
	background-color: #ae8a50;
	border-radius: 0 0 3px 0;
}

.logo {
	width: 100%;
	margin: 0 auto;
	position: sticky;
	top: 0;
}

.logo img {
	width: 100%;
}

.navigation {
	margin-top: 90px;
	font-size: 16px;
	font-weight: bold;
	position: sticky;
	top: 170px
}

.navigation ul {
	margin: 20px 0px;
	text-align: center;
	list-style: none;
}

.navigation ul li {
	margin: 50px 0px;
}

.navigation ul li a {
	display: block;
	padding:10px 30px;
	text-decoration: none;
	color: #f3f3f3;
	text-shadow: 1px 1px 2px #1b1b1b;
}

/* *** ナビゲーション下線 *** */

.navigation li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
	transition: all .3s;
}

.navigation .active,
.navigation li a:hover{
	color: #333;
	text-shadow: 2px 1px 3px #fff;
}

.navigation li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 24%;
    /*線の形状*/
    width: 52%;
    height: 3px;
    background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
/* .navigation .active::after, */
.navigation li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


/* 右側（メイン） */

.right {
	width: 84%;
	animation: fadein 2.5s forwards;
}

@keyframes fadein {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

.right_head {
	height: 46px;
	background-color: #ae8a50;
	border-radius: 0 0 0 3px;
}

/* index */

.title {
	margin-left: 12px;
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
	color: #f3f3f3;
	text-shadow: 1px 2px 3px #1b1616;
}

.mainvisual {
	margin-top: 24px;
	width: 80%;
	text-align: center;
	border-radius: 20px;
}

.mainvisual img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 100px 200px 0 rgba(29, 18, 1, 0.5);
}

.name {
	width: 80%;
	margin-top: 50px;
	text-align: center;
	color: #f3f3f3;
	font-size: 32px;
	font-weight: bold;
}

.article_top {
	width: 100%;
	margin-top: 160px;
}

.article_top section {
	margin-top: 100px;
	margin-bottom: 80px;
}

.article_top h2 {
	margin-left: 20px;
	color: #ae8a50;
	font-size: 36px;
	font-family: Times New Roman;
}

/* index_news */

.news_box {
	width: 67%;
	padding: 26px;
	margin: 10px 0% 0 13%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #000;
	background-color: #fff;
	border: 3px solid #fff;
	border-radius: 8px;
	/* box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22); */
	transition: .3s;
}

.news_box:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}

.news_box .news_date {
	width: 12%;
	margin: 0 30px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: -0.5px;
}

.news_box .news_title {
	width: 84%;
	font-size: 18px;
	color: #000;
}
.news_box a{
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.news_arrow {
	margin-left: 12px;
	width: 20px;
	height: 20px;
	border: 3px solid;
	border-color: #565656 #565656 transparent transparent;
	transform: rotate(45deg);
}

.show_all {
	margin-top: 20px;
	margin-right: 20%;
	text-align: end;
	color: #858585;
	font-size: 15px;
	font-weight: 700;
	transition: .4s;
}

.show_all:hover {
	transform: translateX(12px);
	transition: .4s;
}

/* index_disc */

.disc_row {
	max-width: 82%;
	margin: 10px 0% 0 2%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.disc_box {
	width: 15%;
	margin: 32px 0.5%;
	padding: 0px 1% 6px 1%;
	min-width: 160px;
	max-width: 200px;
	text-align: left;
	background-color: #e6e6e6;
	border-radius: 6px;
	box-shadow: 1px 1px 2px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
}

.disc_img_mini {
	height: 260px;
	width: 100%;
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.disc_img_mini img {
	width: 100%;
	filter: drop-shadow(5px 5px 5px #aaa);
	transition: .3s;
}

.disc_img_mini img:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-8px);
}

.date_category {
	margin-top: 4px;
	display: flex;
	justify-content: space-around;
	text-align: center;
	color: #000;
	font-size: 14px;
}

.disc_date {
	width: 50%;
	letter-spacing: -1px;
}

.category {
	width: 42%;
	background-color: #fff;
	border-radius: 6px;
}

.disc_title {
	margin: 6px 8px;
	height: 52px;
	color: #000;
	font-size: 16px;
	letter-spacing: -0.3px;
	font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.disc_summery_box {
	margin-bottom: 10px;
	padding: 2px 6px;
	color: #666;
	font-size: 14px;
	background-color: #fff;
	border-radius: 5px;
}
.disc_summery{
	margin: 4px;
	height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*** ボタン ***/

/*表示するテキストが切り替わる*/
.btntextchange {
	/*テキストの基点とするためrelativeを指定*/
	position: relative;
	/*ボタンの形状*/
	/* border: 0px solid #ff003c; */
	background-color: #ff003c;
	box-shadow: 0 15px 20px -5px rgba(255, 0, 60, .15), 0 0 5px rgba(255, 0, 60, .1);
	border-radius: 25px;
	margin-left: 10%;
	width: 80%;
	padding: 18px 8px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	outline: none;
	/*アニメーションの指定*/
	transition: all .2s;
}
/*hoverした際の変化*/
.btntextchange:hover {
	background: #333;
	color: #fff;
}
.btntextchange span {
	/*絶対配置でテキストの位置を決める*/
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/*アニメーションの指定*/
	transition: all .6s;
	/*ブロック要素にしてテキスト折り返しなし*/
	display: block;
	white-space: nowrap;
}
/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2) {
	opacity: 0;
	/*透過0に*/
}
/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1) {
	opacity: 0;
	/*透過0に*/
}
.btntextchange:hover span:nth-child(2) {
	opacity: 1;
	/*不透明に*/
}

/* index_video */

.video_row{
	max-width: 82%;
	margin: 10px 0% 0 2%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.video_row_2{
	max-width: 82%;
	margin: 10px 0% 0 2%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.video_box{
	width: 45%;
	margin: 32px 2%;
	padding: 12px 1% 18px 1%;
	min-width: 360px;
	max-width: 600px;
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 3px 3px 0 rgba(0,0,0,.22);
	transition: .3s;
}
.video_box:hover{
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}

.video_main{
	width: 94%;
	margin-top: 16px;
}
.video_main iframe{
	width: 100%;

}
.video_title{
	margin-top: 8px;
	color: #333;
	font-size: 18px;
	text-shadow: 1px 1px 1px #ae8a50;
}

/* news */

.article_news {
	margin-bottom: 100px;
}

.article_news h2 {
	margin-top: 54px;
	margin-left: 20px;
	color: #ae8a50;
	font-size: 40px;
	font-family: Times New Roman;
}

.news_last {
	margin-top: 40px;
	justify-content: center;
}

.article_news .news_more {
	padding: 10px 0;
	font-size: 16px;
	font-weight: bold;
}

.news_wrapper {
	width: 80%;
	margin-left: 8%;
	color: #000;
}

.news_title2 {
	margin-top: 70px;
	font-size: 30px;
	letter-spacing: -0.5px;
	border-bottom: 1px solid #ae8a50;
}

.news_date2 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 48px;
}

.news_main {
	width: 100%;
	line-height: 1.8;
	color: #393939;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid #ae8a50;
}

.news_main img {
	margin: 32px auto;
	max-width: 100%;
}

.news_info {
	margin-bottom: 80px;
}

.news_info a {
	color: #ff003c;
}

.return_news {
	margin-top: 48px;
	margin-bottom: 60px;
	display: inline-block;
	color: #858585;
	font-size: 14px;
	font-weight: 700;
	transition: .4s;
}

.return_news:hover {
	transform: translateX(-12px);
	transition: .4s;
}

.arrow-left {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: -1px 4px;
	border-left: 1px solid #666;
	border-bottom: 1px solid #666;
	transform: rotate(45deg);
}

.Latest_news {
	margin-bottom: 100px;
}

.Latest_news h2 {
	margin: 40px 0 60px 120px;
	color: #ae8a50;
	font-size: 40px;
	font-family: Times New Roman;
}

/* biography */

.article_bio h2 {
	margin: 80px 0 32px 20px;
	color: #ae8a50;
	font-size: 36px;
	font-family: Times New Roman;
}

.article_bio section {
	width: 78%;
	margin-left: 20px;
	margin-top: 48px;
	padding: 30px 0 26px 0;
	background-color: #fff;
	border-radius: 5px;
}

.article_bio span {
	color: #ae8a50;
	font-weight: bold;
}

.bio_box {
	margin-bottom: 96px;
	display: flex;
	justify-content: center;
}

.bio_main {
	width: 90%;
	color: #222;
	font-size: 16px;
	line-height: 1.75;
}
.member_name {
	margin-left: 3%;
	color: #ae8a50;
	font-size: 30px;
	font-weight: bold;
	font-family: Times New Roman;
}
.article_bio h5{
	margin-left: 3%;
	margin-bottom: 12px;
	color: #ae8a50;
	font-size: 14px;
}

.pic_text {
	display: flex;
	justify-content: space-around;
}

.pic_text  .member_pic {
	width: 24%;
}

.pic_text  .member_pic img{
	width: 100%;
	border-radius: 2px;
}

.pic_text  .member_text {
	width: 65%;
	color: #222;
	font-size: 16px;
}

.article_bio h3 {
	margin-left: 26px;
	color: #ae8a50;
	font-size: 26px;
	font-family: Times New Roman;
}

.bio_box_sub {
	margin-bottom: 96px;
}

.member_sub {
	width: 94%;
}

.article_bio h4 {
	margin: 32px 0 10px 36px;
	color: #ae8a50;
	font-size: 18px;
}

.member_sub .sub_text {
	margin: 0 0 24px 48px;
	color: #222;
	font-size: 16px;
}

.bio_box_time {
	margin-top: 40px;
}

.year_block {
	width: 94%;
}

.bio_event {
	margin-left: 72px;
	margin-bottom: 28px;
	color: #222;
	font-size: 16px;
}

.bio_box, .bio_box_member, .bio_box_sub, .bio_box_time{
	box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
	transition: 0.3s;
}

.bio_box:hover, .bio_box_member:hover, .bio_box_sub:hover, .bio_box_time:hover{
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
	transition: 0.3s;
}


/***追従するトップへ戻るボタン***/

#page-top {
	position: fixed;
	right: 12%;
	bottom: 8%;
	height: 72px;
	text-decoration: none;
	font-weight: bold;
	transform: rotate(90deg);
	font-size: 100%;
	line-height: 1.5rem;
	color: #737373;
	padding: 0 0 0 35px;
	border-top: solid 1px;
	transition: .3s;
}

#page-top::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(35deg);
	transform-origin: left top;
}

#page-top:hover {
	color: #444;
	transition: .3s;
}

/***トップへ戻るボタンここまで***/

/* discography */

.article_discography h2 {
	margin: 80px 0 32px 20px;
	color: #ae8a50;
	font-size: 36px;
	font-family: Times New Roman;
}

.Latest_disc {
	margin-bottom: 100px;
}

.Latest_disc h2 {
	margin: 20px 0 20px 120px;
	color: #ae8a50;
	font-size: 40px;
	font-family: Times New Roman;
}

.disc_row_2 {
	max-width: 77%;
	margin: 10px 0% 0 7%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.return_disc {
	margin: 48px 0 60px 8px;
	display: inline-block;
	color: #858585;
	font-size: 14px;
	font-weight: 700;
	transition: .4s;
}

.return_disc:hover {
	transform: translateX(-12px);
	transition: .4s;
}

.disc_wrapper{
	width: 84%;
	padding-bottom: 72px;
	display: flex;
	justify-content: space-around;
}
.disc_left{
	width: 28%;
}
.disc_left img{
	width: 100%;
}

.disc_right{
	width: 60%;
	font-size: 14px;
}
.date_category_2{
	width: 20%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.disc_date2 {
	width: 50%;
	color: #666;
	letter-spacing: -1px;
}
.category2 {
	width: 48%;
	text-align: center;
	color: #000;
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 6px;
}
.disc_title2{
	color: #000;
	font-size: 30px;
}
.disc_catch{
	margin: 12px 0;
	padding-bottom: 12px;
	font-size: 16px;
	color: #444;
	border-bottom: 1px solid #bbb;
}
.disc_price{
	margin-top: 12px;
	color: #000;
	font-size: 24px;
	font-family: "Roboto Condensed";
	font-weight: lighter;
}
.disc_price span{
	margin-left: 2px;
	font-size: 14px;
	font-weight: bold;
}
.model_number{
	margin: 10px 0 16px 0;
	color: #999;
	font-size: 12px;
}
/*** ボタン2 ***/

/*表示するテキストが切り替わる*/
.btn_discmore {
	/*テキストの基点とするためrelativeを指定*/
	position: relative;
	/*ボタンの形状*/
	/* border: 0px solid #ff003c; */
	background-color: #ff003c;
	box-shadow: 0 15px 20px -5px rgba(255, 0, 60, .15), 0 0 5px rgba(255, 0, 60, .1);
	border-radius: 36px;
	margin-top: 12px;
	width: 30%;
	padding: 32px 16px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	outline: none;
	/*アニメーションの指定*/
	transition: all .2s;
}
/*hoverした際の変化*/
.btn_discmore:hover {
	background: #333;
	color: #fff;
}
.btn_discmore span{
	/*絶対配置でテキストの位置を決める*/
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/*アニメーションの指定*/
	transition: all .6s;
	/*ブロック要素にしてテキスト折り返しなし*/
	display: block;
	white-space: nowrap;
}
/*差し替わるテキストの設定*/
.btn_discmore span:nth-child(2) {
	opacity: 0;
	/*透過0に*/
}
/*hoverするとテキストが入れ替わる設定*/
.btn_discmore:hover span:nth-child(1) {
	opacity: 0;
	/*透過0に*/
}
.btn_discmore:hover span:nth-child(2) {
	opacity: 1;
	/*不透明に*/
}

.disc_list{
	margin: 40px 0;
	color: #000;
	font-size: 14px;
	font-weight: 600;
}
.disc_list ul{
	margin-bottom: 32px;
}
.disc_list ul li{
	padding: 16px 0;
	margin: 3px 0;
	list-style: none;
	background-color: #fff;
	border-radius: 3px;
}
.disc_list ul li span{
	margin: 0 24px;
	display: inline-block;
	text-align: center;
	width: 5%;
	font-weight: normal;
}
.disc_main{
	margin-top: 16px;
	color: #000;
	font-size: 16px;
	line-height: 1.9;
}
.disc_main span{
	font-weight: bold;
}
.disc_border{
	margin: 24px 0 108px 3%;
	width: 79%;
	border-bottom: 1px solid #bbb;
}

/* live */

.article_live h2 {
	margin: 80px 0 32px 20px;
	color: #ae8a50;
	font-size: 36px;
	font-family: Times New Roman;
}

/* special */

.article_interview h2,.article_link h2,.article_tieup h2 {
	margin: 80px 0 32px 20px;
	color: #ae8a50;
	font-size: 36px;
	font-family: Times New Roman;
}

.link_box {
	width: 68%;
	padding: 18px;
	margin: 10px 0% 0 12%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: left;
	color: #000;
	background-color: #fff;
	border: 3px solid #fff;
	border-radius: 8px;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
	transition: .3s;
}
.link_box:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
	transition: .3s;
}
.link_title{
	font-size: 18px;
	font-weight: bold;
}
.link_url{
	margin-top: 6px;
	text-decoration: none;
}
.link_url a{
	color: #ae8a50;
}
.link_url span{
	margin-right: 18px;
}

.tieup_box{
	width: 68%;
	padding: 18px;
	margin: 10px 0% 0 12%;
	position: relative;
	color: #000;
	background-color: #fff;
	border: 3px solid #fff;
	border-radius: 8px;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
	transition: .3s;
}
.tieup_box:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}
.jacket_title{
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
}
.tieup_music{
	margin-left: 20px;
	color: #ae8a50;
	font-size: 26px;
	font-weight: bold;
	border-bottom: 1px solid #aaa;
}
.jacket{
	margin: 0 20px;
	width: 18%;
	min-width: 200px;
}
.jacket img{
	width: 100%;
	transition: .3s;
}
.jacket img:hover {
	box-shadow: 0 15px 30px 5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
	transform: translateY(-3px);
	transition: .3s;
}
.tieup_title{
	width: 78%;
	margin-left: 6px;
}
.tieup_title ul{
	list-style: none;
	color: #000;
	font-size: 16px;
}
.tieup_title ul li{
	margin-bottom: 20px;
}




/* フッター */

footer {
	margin-top: 32px;
	padding: 40px 0px;
	width: 100%;
	min-width: 1080px;
	text-align: center;
	padding-bottom: 20px;
	background-color: #ae8a50;
}

footer .return {
	margin-bottom: 24px;
}

footer .return a {
	font-size: 18px;
	color: #fff;
}

.retrun_top {
	/*波紋の基点とするためrelativeを指定*/
	position: relative;
}

/*波形の設定*/

.retrun_top:hover::before {
	content: '';
	/*絶対配置で波形の位置を決める*/
	position: absolute;
	left: 32%;
	top: -4px;
	/*波形の形状*/
	border: 1px solid #333;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/*はじめは不透明*/
	opacity: 1;
	/*アニメーションの設定*/
	animation: 1s circleanime2 forwards;
}

/*波形が広がるアニメーション*/

@keyframes circleanime2 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

footer .footer_main {
	margin-bottom: 6px;
}

footer .footer_main span {
	margin: 0 60px;
}

footer .footer_main a {
	text-decoration: none;
	font-size: 14px;
	color: #f3f3f3d8;
}

footer small {
	margin-bottom: 6px;
	font-size: 10px;
	color: #f3f3f3d8;
}
