@charset "utf-8";

/* Config ------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overscroll-behavior: none; /*--- iOS のビヨヨン効果無効化 ---*/
}

* {
	box-sizing:border-box;
	padding: 0;
	margin: 0;
}


body {
	background-color: #1a1a1a;
	color: #fffef1;
	line-height: 30px;
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS ゴシック","MS Gothic",Verdana,sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;

	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /*--- iOS の文字サイズ自動調節無効化 ---*/
	text-size-adjust: 100%;
}


a {color: #52e022; text-decoration: none;}
a:active {color: #fcf590; text-decoration: none;}
a:visited {color: #52e022; text-decoration: none;}
a:hover {color: #fcf590; text-decoration: none;}

a:link img {border-color: #666;}
a:visited img {border-color: #666;}
a:hover img {border-color: #666; opacity: 0.66;}


/*--- list ---*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ol {
	list-style: decimal;
	margin: 0;
	padding-left: 0;
}


/* 上マージン */
.mT-10 {margin-top: -10px ;}
.mT-20 {margin-top: -20px ;}

.mT0  {margin-top: 0 !important;}
.mT1  {margin-top: 1px;}
.mT5  {margin-top: 5px;}
.mT10 {margin-top: 10px;}
.mT15 {margin-top: 15px;}
.mT20 {margin-top: 20px;}
.mT25 {margin-top: 25px;}
.mT30 {margin-top: 30px;}
.mT40 {margin-top: 40px;}
.mT50 {margin-top: 50px;}
.mT60 {margin-top: 60px;}


/* 下マージン */
.mB-10 { margin-bottom: -10px ;}

.mB0  {margin-bottom: 0 !important;}
.mB5  {margin-bottom: 5px;}
.mB10 {margin-bottom: 10px;}
.mB15 {margin-bottom: 15px;}
.mB20 {margin-bottom: 20px;}
.mB25 {margin-bottom: 25px;}
.mB30 {margin-bottom: 30px;}
.mB40 {margin-bottom: 40px;}
.mB50 {margin-bottom: 50px;}
.mB100 {margin-bottom: 100px;}


/* Fonts */
.f10 {font-size: 10px;}
.f12 {font-size: 12px;}
.f14 {font-size: 14px;}
.f16 {font-size: 16px;}
.f18 {font-size: 18px;}
.f20 {font-size: 20px;}
.f22 {font-size: 22px;}
.f24 {font-size: 24px;}
.f25 {font-size: 25px;}
.f28 {font-size: 28px;}
.f30 {font-size: 30px;}
.f32 {font-size: 32px;}
.f36 {font-size: 36px;}
.f38 {font-size: 36px;}
.f40 {font-size: 40px;}

.normal {font-weight: 400;}
.bold {font-weight: bold;}

.right {text-align: right;}
.center {text-align: center;}
.left {text-align: left;}


/*--- Load ---*/
#fadeWhite {
	position: fixed;
	width: 100%;
	background: #1a1a1a;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 99999;
}




/*--- 共通パーツ -----------*/
.whiteBox {
	width: 100%;
	max-width: 1100px;
	padding: 36px 30px 33px; 
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
	border-radius: 6px;
}

.infoBox {
	display: flex;
	max-width: 980px;
	justify-content: space-around;
	padding: 40px 20px 10px;
	margin: 0 auto -20px;
}

.infoBox li {
	width: 100%;
	max-width: 420px;
	padding: 20px; 
	margin: 0 20px;
	text-align:center;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0px 0px 0px 8px #f2e6cd ;/*外側*/
	border: dashed 2px #ccbe9f/*破線*/
}


h1 {
	font-size: 26px;
	font-weight: 400;
	padding: 26px 0 22px;
	margin: -28px auto 32px;
	text-align:center;
	background-image: linear-gradient(90deg, #52e022 0 20%, #3f3f3f 20%);
	background-repeat: no-repeat;
	background-size: 280px 5px;
	background-position: bottom;
}


h2 {
	font-size: 22px;
	font-weight: 400;
	border-left: 10px solid #52e022;
	padding: 0 0 3px 16px;
	margin-bottom: 23px;
	text-align: left;
	border-left-style: double;
}


h3 {
	position: relative;
	width: 100%;
	max-width: 508px;
	font-size: 22px;
	font-weight: bold;
	padding:7px 15px 7px 25px;
	background: #f7f7f7;
	border-top: solid 2px #52e022;
	border-bottom: solid 2px #52e022;
	margin: -7px auto 23px;
}
h3:before, h3:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	height: calc(100% + 14px);
	background-color: #52e022;
}
h3:before {
	left: 7px;
}
h3:after {
	right: 7px;
}


h4 {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
	text-align: right;
}

.bold {
	font-weight: bold;
}

.green {
	color: #12c112;
	font-weight: bold;
}

.blue {
	color: #1871e4;
	font-weight: normal;
}

.red {
	color: #52e022;
	font-weight: bold;
}

.big {
	color: #52e022;
	font-size: 22px;
	font-weight: bold;
	line-height: 32px
}

.br {
	display: block;
	content: "";
	height: 15px;
}
.br2 {
	display: block;
	content: "";
	height: 18px;
}

.set {
	text-indent: -1.0rem;
	padding-left: 1.0rem;
}
.set2 {
	text-indent: -20px;
	padding-left: 20px;
}
/*--- 共通パーツ -----------*/




/* headerMenu --------------------------------------------*/
#sp_header {
	display: none;
}

#up_menu {
	visibility: hidden;
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background: url(img/top/wrap_footer.jpg) center 0% no-repeat;
	background-size: cover;
	transition: ease solid 3s;
	z-index: 10;
	box-shadow: 0 1px 1px #222;
	-moz-box-shadow: 0 1px 1px #222;
	-webkit-box-shadow: 0 1px 1px #222;
	opacity: 0;
}
#up_menu.fadeDown {
	visibility: visible;
	animation-name: fadeDownAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0.9;
}
@keyframes fadeDownAnime {
	from {
	opacity: 0;
	transform: translateY(-100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

#up_menu.fadeOut {
	animation-name: fadeInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 1;
}
@keyframes fadeInAnime {
	from {
	opacity: 1;
	}
	to {
	opacity: 0;
	}
}


.headerMenu {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	margin: 0 auto;
}

.headerMenu li {
	padding-top: 10px;
	line-height: 40px;
	text-align: center;
	transition: all 0.5s ease-out;
}
.headerMenu li img {
	margin-top: -2px;
	margin-right: 30px;
	max-width: 220px;
}
.headerMenu li.logo_top img {
	margin-top: 0px;
}
.headerMenu li.line_PC img {
	width: 100%;
}

.headerMenu li a {
	position: relative;
	color: #fff;
}
ul.menubar {
	display: flex;
	justify-content: space-between;
	width: 640px;
}

.menuListLink::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #52e022;
	border-radius: 3px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .2s;
}
.menuListLink:hover::after {
	transform: scale(1, 1);
}




/* btn -------------------------------*/
/*--- 資料請求 --------------*/
.btn,
a.btn,
button.btn {
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}

a.btn-flat {
	margin-top: -10px;
	height: 70px;
	overflow: hidden;
	padding: 18px 10px 8px;
	background: url(img/top/btn-flat_bg.jpg) center 0% repeat;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 0 4px #131313;
	-moz-box-shadow: 0 0 4px #131313;
	-webkit-box-shadow: 0 0 4px #131313;
}

a.btn-flat.tel {
	position: relative;
}

a.btn-flat span {
	position: relative;
}

a.btn-flat:before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 140px;
	height: 100px;
	content: '';
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-transform: translateY(-92%);
	transform: translateY(-92%);
	background: #52e022;
}

a.btn-flat:hover {
	color: #fff ;
}
a.btn-flat:hover:before {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
/*--- 資料請求 -------------*/




/* btn -------------------------------*/
.btn01 {
	position: relative;
	display: inline-block;
	width: 160px;
	padding: 10px 5px;
	margin: 0 5px;
	text-align: center;
	background: #52e022;
	border: none;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	overflow: hidden;
	line-heigt: 1.2em;
	-webkit-transition: .2s;
	transition: .2s;
}

.btn01.long {
	width: 230px;
}

.btn01::before,
.btn01::after {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 51%;
	height: 100%;
	background: #0a0a0a;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn01::before {
	left: 0;
}
.btn01::after {
	right: 0;
}
.btn01:hover::before,
.btn01:hover::after {
	width: 0;
}
.btn01:hover {
	color: #fff;
}
.btn01 span {
	position: relative;
	z-index: 1;
}


/*--- btn jump -----------------------*/
.btn01_jump {
	background: #52e022;
	border: none;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	padding: 5px;
	margin: 22px 2px 0;
	border: 2px solid #52e022;
}
.btn01_jump a {
	color: #fff;
}
.result {
	left: 2px;
}
.btn01:hover .result {
	left: 5px;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn01:hover .result img {
	opacity: 1;
}




/* ◆1. top ----------------------------------------------*/
/* ファーストビュー ------------------*/
#Pwrap {
	height: 100%;
	min-height: 780px;
	background-image: none;
}
#Pwrap::before {
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	left: 0;
	z-index: -2;
	animation: image_anime 6s ease;
}
.bg_1::before {
	background: url(img/top/bg_1f.jpg) center 0% no-repeat;
}
.bg_2::before {
	background: url(img/top/bg_2f.jpg) center 0% no-repeat;
}

@keyframes image_anime {
	4% {
	background-image: url(img/top/bg_1f.jpg);
	}
	40% {
	background-image: url(img/top/bg_1f.jpg);
	 }
	100% {
	background-image: url(img/top/bg_2f.jpg);
	}
}


.Content1-1 {
	position: fixed;
	inset: 0;
	width: 100%;
	max-width: 670px;
	height: fit-content;
	padding: 0;
	margin: 109px auto 0;
	z-index: -1;
}

.firstVlogo1 {
	padding: 0;
	margin: 0 auto;
}
.firstVlogo1 img {
	width: 100%;
	max-width: 670px;
	padding-top: 17px;
}
.firstVlogo2 {
	padding: 0;
	margin: -37px auto 11px;
}
.firstVlogo2 img {
	width: 100%;
	max-width: 670px;
	padding-bottom: 0;
}
#a01 {
	margin-bottom: -520px;
}


#wrap_1 {
	width: 100%;
	margin: 0 auto;
	background: url(img/top/wrap.jpg) center 0% repeat;
		overflow: hidden;
}


/* About -----------------------------*/
.Content1-2 {
	max-width: 1120px;
	padding: 57px 20px 0;
	margin: 0 auto -7px;
}

.title {
	padding: 35px 0 14px;
}
.youtube_wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto 9px;
}
.youtube_wrap iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}


/* Discography -----------------------*/
.Content1-3 {
	max-width: 1120px;
	padding: 55px 20px 0;
	margin: 0 auto;
}

#hyo {
	max-width: 1080px;
	margin: 18px auto -16px;
}
#hyo table {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	border-spacing: 0 16px;
}
#hyo th, #hyo td {
	border: 1px solid #3f3f3f;
	margin: 0 auto;
	padding: 10px;
}
#hyo th {
	width: 25%;
	font-size: 22px;
	font-weight: normal;
	text-align: left;
	line-height: 50px;
	border-radius: 6px 0 0 6px;
}
#hyo th span.nene {
	font-size: 16px;
}
#hyo td {
	border-radius: 0 6px 6px ;
}

.hyo_R {
	background-image: linear-gradient(90deg, #fff0 94%, #52e022 6%);
}


/* Live ------------------------------*/
.Content1-4 {
	max-width: 1120px;
	padding: 57px 20px 41px;
	margin: 0 auto;
}

/*--- 表 -------------------*/
#info {
	padding-top: 7px;
	margin-bottom: 8px;
}
#info table {
	width: 100%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0 2px;
}
#info table th {
	position: relative;
	text-align: left;
	width: 30%;
	background-color: #2f2f2f;
	font-weight: normal;
	padding: 13px 20px 12px;
	border-radius: 6px 0 0 6px;
}
#info table th:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #3f3f3f;
}
#info table td {
	text-align: left;
	background: transparent;
	padding: 13px 20px 12px;
	border-radius: 0 6px 6px 0;
}
#info table td {
	border: 1px solid #3f3f3f;
}
/*--- 表 -------------------*/


.map iframe {
	padding-bottom: 52px;
	opacity: 0.90;
}


#Pwrap1 {
	height: 340px;
	background-image: none;
}
#Pwrap1::before {
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
}


/* Information -----------------------*/
.Content1-5 {
	max-width: 1120px;
	padding: 57px 20px 30px;
	margin: 0 auto;
}
.Content1-5 #info table {
	padding-bottom: 7px;
	margin-top: -1px;
}


/* SNS -------------------------------*/
.sns_txtvox {
	width: 100%;
	max-width: 259px;
	padding: 35px 0 0 0;
	margin: 0 auto;
	text-align: center;
}

.sns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0px 22px;
	margin: 0 auto;
}
.sns img {
	width: 48px;
}


/* Contact ---------------------------*/
#wrap_2 {
	width: 100%;
	margin: 0 auto;
	background: url(img/top/otoi.jpg) center 0% repeat;
		overflow: hidden;
}
.contactB {
	text-align: center;
	padding: 38px 0 51px;
	margin: 0 auto;
}


/* footer ------------------------------------------------*/
#bottom_line {
	display: block;
	padding: 4px 0;
	background: url(img/top/otoi.jpg) center 0% no-repeat;
}

footer {
	text-align: center;
	padding : 32px 5px 31px;
	margin: 0;
	background: url(img/top/wrap_footer.jpg) center 0% no-repeat;
	background-size: cover;
		overflow: hidden;
}

.flink_834 {
	display: block;
}
.flink_590 {
	display: none;
}

footer a:link {color: #fff; text-decoration: none;}
footer a:active {color: #eee; text-decoration: none;}
footer a:visited {color: #eee; text-decoration: none;}
footer a:hover {color: #fff; text-decoration: underline;}


.snsIcons img {
	max-width: 48px;
	margin: 4px 10px 1px;
}

.footer_logo {
	max-width: 600px;
	align-items: center;
	margin: 1px auto -6px;
}
.footer_logo img {
	max-width: 180px;
}

br.footer {
	display: block;
	content: "";
	height: 24px;
}

br.sp_br {
	display: none;
}
span.bar_sp {
	display: none;
}
.sp_br480 {
	display: none;
}
.sp_br320 {
	display: none;
}




/* ◆プライバシーポリシー --------------------------------*/
/* headerMenu ------------------------*/
#up_menu_2 {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background: url(img/top/wrap_footer.jpg) center 0% no-repeat;
	background-size: cover;
	transition: ease solid 3s;
	z-index: 10;
	box-shadow: 0 1px 1px #222;
	-moz-box-shadow: 0 1px 1px #222;
	-webkit-box-shadow: 0 1px 1px #222;
}


/* ヘッダータイトル --------*/
.header_title {
	width: 100%;
	background: url(img/top/otoi.jpg) center 0% repeat;
	padding: 100px 0 7px;
	margin: 0 auto;
	overflow: hidden;
}


.cPP_Text1 {
	max-width: 1020px;
	padding: 52px 20px 52px;
	margin: 0 auto;
}
.cPP_Text1 span {
	font-size: 18px;
}

.mT-br {
	padding-top: 32px;
}

.set_pp {
	text-indent: -16px;
	padding-left: 16px;
}
