@charset "utf-8";


/*====================================================================

common

====================================================================*/

*{
	margin:0px;
	padding:0px;
}
html,body{
	width:100%;
}

:root{
	--c-text : #444;
	--c-yellow : #FFBC1D;
	--c-yellow-dark : #C79216;
	--c-white : #fff;
	--c-red : #EA4D37;
	--c-red-dark : #BC3C2A;
	--c-bg02 : #FAF7E7;

	--f-common :  "Zen Kaku Gothic Antique", sans-serif;
	--f-number : "Roboto Condensed", sans-serif;
	--f-alphabet :  "Poppins", sans-serif;
	--f-sub : "Dela Gothic One", sans-serif;

	--sd-button : 0px 4px 0px 0px rgba(0, 0, 0, 0.2);
}


/*====================================================================

font

====================================================================*/
body{
	font-family: var(--f-common);
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	position: relative;
	min-height: 100vh;
	color: var(--c-text);
	background-color: var(--c-yellow);
}
a,
a:hover{
	transition: 0.3s;
}
a:hover{
	opacity: 0.9;
	text-decoration: underline;
}
@media all and (min-width:0px) and (max-width:600px) {
	html{
		font-size: 3.6vw;
	}
}
@media all and (min-width: 601px){
	html{
		font-size: 16px;
	}
}


/*====================================================================

object

====================================================================*/


/* wrap */
.wrap{
	margin: 0 auto;
}
@media all and (min-width:0px) and (max-width:600px) {
	.wrap{
		width: 100%;
		padding: 0 1.5rem;
	}
}
@media all and (min-width:601px) {
	.wrap{
		width: 100%;
		padding: 0 1.5rem;
	}
}


/*====================================================================

hbg

====================================================================*/

.hamburgerMenu__content{
	display: none;
}

.hamburgerMenu__button{
	position: fixed;
	z-index: 55;
	top: 1rem;
	right: 1rem;
	width: 4rem;
	height: 4rem;
	background-color: var(--c-white);
	border-radius: 10px;
	box-shadow: var(--sd-button);
	transition: 0.3s;
}
.hamburgerMenu__button span,
.hamburgerMenu__button span::before,
.hamburgerMenu__button span::after{
	display: block;
	background: var(--c-text);
	position: absolute;
	right: 0;
	content: '';
	transition: 0.3s;
	width: 3rem;
	height: 0.3rem;
}
.hamburgerMenu__button span{
	top: calc( 1.2rem + 0.6rem);
	right: 0.5rem;
}
.hamburgerMenu__button span::before{
	top: calc( -0.6rem);
}
.hamburgerMenu__button span::after{
	top: calc( 0.6rem);
}
.hamburgerMenu__button.is-open{
	box-shadow: none;
	transform: translateY(4px);
}
.hamburgerMenu__button.is-open span{
	width: 0;
}
.hamburgerMenu__button.is-open span::before{
	top: 0;
	transform: rotate(-45deg);
}
.hamburgerMenu__button.is-open span::after{
	transform: rotate(45deg);
	top: 0;
}
.hamburgerMenu__content{
	position: fixed;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 100dvh;
	background-color: var(--c-yellow);
	padding: 4rem 0;
}
.hamburgerMenu__heading{
	text-align: center;
	line-height: 1;
}
.hamburgerMenu__heading .heading{
	font-family: var(--f-alphabet);
	font-size: 2.2rem;
	font-weight: 900;
}
.hamburgerMenu__heading .sub{
	font-family: var(--f-sub);
	font-size: 1.15rem;
	margin-top: 1rem;
	color: var(--c-yellow-dark);
}
.hamburgerMenu__menu{
	margin: 3rem auto;
	text-align: center;
	font-size: 1.5em;
	font-family: var(--f-sub);
	background-color: var(--c-white);
	padding: 2rem;
	border-radius: 20px;
}
.hamburgerMenu__links ul{
	display: flex;
	gap: 1rem;
}
.hamburgerMenu__links ul li{
	width: calc(100% / 3 );
}
.hamburgerMenu__links ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 4.5rem;
	box-shadow: var(--sd-button);
	background-color: var(--c-red);
	border-radius: 10px;
}
.hamburgerMenu__links ul li a:hover{
	box-shadow: none;
	opacity: 1;
	transform: translateY(4px);
	background-color: var(--c-red-dark);
	text-decoration: none;
}
@media all and (min-width:0px) and (max-width:600px) {
}
@media all and (min-width:601px) {
	.hamburgerMenu__button{
		z-index: 120;
	}
	.hamburgerMenu__content{
		z-index: 110;
	}
	.hamburgerMenu__content .wrap{
		min-width: 500px;
		width: 50vw;
	}
}



/*====================================================================

bodyBlock

====================================================================*/

.bodyBlock{
	position: relative;
}
.bodyBlock__left,
.bodyBlock__right{
}
/* menu */
.bodyBlock__menu{
	position: absolute;
	top: 50%;
	right: 4vw;
	transform: translateY(-50%);
}
.bodyBlock__menu ul{
	text-align: right;
}
.bodyBlock__menu ul li a{
	display: block;
	padding: 0.25rem 0;
}
.bodyBlock__menu ul li a span{
	display: inline-block;
	background-color: var(--c-text);
	color: var(--c-white);
	font-family: var(--f-sub);
	padding: 0.5rem 1rem;
	line-height: 1;
	transition: 0.3s;
	font-size: 2vw;
}
.bodyBlock__menu ul li a:hover span{
	background-color: var(--c-red);
}
@media all and (min-width:0px) and (max-width:600px) {
	.bodyBlock__left,
	.bodyBlock__right{
		display: none;
	}
	.bodyBlock__main{
		width: 100%;
	}
}
@media all and (min-width:601px) {
	.bodyBlock__menu{
		display: none;
	}
	.bodyBlock__left,
	.bodyBlock__right{
		background-image: url('../images/bg_dot01.png');
		background-repeat: repeat;
		background-position: center;
		position: fixed;
		z-index: 10;
		height: 100vh;
		width: 50%;
        background-color: rgba(255, 188, 29, 0.95);
        background-blend-mode: lighten;
	}
	.bodyBlock__left{
		left: 0;
	}
	.bodyBlock__right{
		right: 0;
	}
	.bodyBlock__main{
		width: 500px;
		position: absolute;
		left: calc(50% - 250px);
		top: 0;
		z-index: 11;
		box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
	}
}
@media all and (min-width:961px) {
	.bodyBlock__menu{
		display: block;
	}

}

/*====================================================================

main

====================================================================*/
main{
	overflow: hidden;
	background-color: var(--c-bg02);
}
main img{
	max-width: 100%;
	height: auto;
}


/*====================================================================

section

====================================================================*/
main > section{
	padding: 6rem 0;
}
.section__heading *{
	margin: auto;
	text-align: center;
	line-height: 1;
}
.section__heading .icon{
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	margin-bottom: 1rem;
}
.section__heading .heading{
	font-family: var(--f-alphabet);
	font-size: 2.2rem;
	font-weight: 900;
}
.section__heading .sub{
	font-family: var(--f-sub);
	font-size: 1.15rem;
	margin-top: 1rem;
	color: var(--c-yellow-dark);
}
.section__heading + .section__content{
	margin-top: 3rem;
}


/*====================================================================

section#mv

====================================================================*/

#mv{
	padding: 0;
}
#mv img{
	width: 100%;
	height: auto;
}
@media all and (min-width:0px) and (max-width:768px) {
}
@media all and (min-width:769px) and (max-width:960px) {
}
@media all and (min-width: 961px){
}


/*====================================================================

#profile

====================================================================*/

#profile{
	padding-top: 2rem;
}
#profile .profileLink ul{
	display: flex;
	gap: 1rem;
}
#profile .profileLink ul li{
	width: calc(100% / 3 );
}
#profile .profileLink ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 4.5rem;
	box-shadow: var(--sd-button);
	background-color: var(--c-red);
	border-radius: 10px;
}
#profile .profileLink ul li a:hover{
	box-shadow: none;
	opacity: 1;
	transform: translateY(4px);
	background-color: var(--c-red-dark);
	text-decoration: none;
}
#profile .profileDiscogprahy{
	padding: 2rem;
	margin-top: 2rem;
	background-color: var(--c-white);
	border-radius: 20px;
}
#profile .profileDiscogprahy .copy{
	font-family: var(--f-sub);
	font-size: 1.2rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
	line-height: 1;
	text-align: center
}
#profile .profileAnchor{
	margin-top: 2rem;
}
#profile .profileAnchor ul{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
#profile .profileAnchor ul .profileAnchor__button01{
	width: 100%;
}
#profile .profileAnchor ul .profileAnchor__button02{
	width: calc(50% - 0.5rem);
}
#profile .profileAnchor ul li a{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	box-shadow: var(--sd-button);
	position: relative;
	border-radius: 10px;
	line-height: 1;
	padding: 1.5rem;
}
#profile .profileAnchor ul .profileAnchor__button01 a{
	background-color: var(--c-red);
	color: var(--c-white);
	font-weight: 900;
	justify-content: space-between;
}
#profile .profileAnchor ul .profileAnchor__button01 a::after{
	content: '';
	display: block;
	width: 2.5rem;
	height: 1rem;
	background-image: url('../images/arrow_right_white.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#profile .profileAnchor ul .profileAnchor__button02 a{
	background-color: var(--c-white);
	color: var(--c-red);
	border: 2px solid var(--c-red);
	font-weight: 900;
	font-family: var(--f-alphabet);
}
#profile .profileAnchor ul li a:hover{
	box-shadow: none;
	transform: translateY(4px);
	opacity: 1;
	text-decoration: none;
}
#profile .profileAnchor ul li.profileAnchor__button01 a:hover{
	background-color: var(--c-red-dark);
}
#profile .profileAnchor ul .profileAnchor__button01 a:hover::after{
	transform: translateX(0.5rem);
}

/*====================================================================

member

====================================================================*/

#member{
	background-color: var(--c-white);
}
#member .memberPhoto .image{
	border-radius: 20px;
	overflow: hidden;
}

#member .memberList{
	margin-top: 2rem;
}
#member .memberList .memberList__note{
	opacity: 0.5;
	font-size: 0.9em;
	margin-bottom: 1rem;
}
#member .memberList ul{
}
#member .memberList ul li{
	width: 100%;
	display: flex;
	gap: 1rem;
	align-items: center;
}
#member .memberList ul li + li{
	margin-top: 1rem;
}
#member .memberList ul li .part{
	width: 8rem;
	font-family: var(--f-alphabet);
	opacity: 0.5;
}
#member .memberList ul li .name{
	flex-grow: 1;
}
#member .memberList ul li .sns{
	display: block;
	width: 1.5rem;
	height: 1.5rem;
}
#member .memberList ul li .sns img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}



/*====================================================================

schedule

====================================================================*/

#schedule{
	background-image: url('../images/schedule_bg01.jpg');
	background-size: cover;
	color: var(--c-white);
}
#schedule .scheduleLead{
	text-align: center;
}
#schedule .scheduleLink{
	margin-top: 2rem;
}
#schedule .scheduleLink ul{
	display: flex;
	gap: 1rem;
}
#schedule .scheduleLink ul li{
	width: calc(100% / 2 );
}
#schedule .scheduleLink ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 4.5rem;
	box-shadow: var(--sd-button);
	background-color: var(--c-red);
	border-radius: 10px;
}
#schedule .scheduleLink ul li a:hover{
	box-shadow: none;
	transform: translateY(4px);
	opacity: 1;
	background-color: var(--c-red-dark);
	text-decoration: none;
}


/*====================================================================

biography

====================================================================*/

#biography{
}
#biography .biographyTab{
}
#biography .biographyTab .biographyTab__label{
	margin-right: -1.5rem;
}
#biography .biographyTab .biographyTab__label ul{
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
}
#biography .biographyTab .biographyTab__label ul li{
	width: 5rem;
	line-height: 1;
	padding: 0.5rem 0;
	text-align: center;
	background-color: var(--c-white);
	font-family: var(--f-number);
	border: 1px solid var(--c-text);
	border-radius: 10px;
}
#biography .biographyTab .biographyTab__label ul li.is-current{
	background-color: var(--c-yellow);
	border: none;
}
#biography .biographyTab .biographyTab__content{
	margin-top: 2rem;
}
#biography .biographyTab .biographyTab__content h3{
	font-family: var(--f-alphabet);
}
#biography .biographyTab .biographyTab__content .biographyTab__content__item__block + .biographyTab__content__item__block{
	margin-top: 2rem;
}
#biography .biographyTab .biographyTab__content h3 + ul{
	margin-top: 0.5rem;
	padding: 2rem;
	border-radius: 20px;
	background-color: var(--c-white);
}
#biography .biographyTab .biographyTab__content ul li{
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	line-height: 1.5;
	padding: 0.5rem 0;
	font-size: 0.9em;
}
#biography .biographyTab .biographyTab__content ul li .date{
	width: 2.5rem;
	flex-shrink: 0;
	font-family: var(--f-number);
	color: var(--c-yellow-dark);
}
#biography .biographyTab .biographyTab__content ul li .title{
	flex-grow: 1;
}
#biography .biographyTab .biographyTab__content ul li .pref{
	flex-shrink: 0;
	opacity: 0.5;
}
#biography .biographyTab .biographyTab__content ul li + li{
	/* margin-top: 0.5rem; */
	border-top:1px solid #eee;
}
@media all and (min-width:0px) and (max-width:768px) {
}
@media all and (min-width:769px) and (max-width:960px) {
}
@media all and (min-width: 961px){
}


/*====================================================================

section#contact

====================================================================*/

#contact{
	background-color: #fff;
}
#contact .contactLink{
	margin-top: 2rem;
}
#contact .contactLink ul{
	display: flex;
	gap: 1rem;
}
#contact .contactLink ul li{
	width: calc(100%);
}
#contact .contactLink ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-shadow: var(--sd-button);
	background-color: var(--c-red);
	color: var(--c-white);
	border-radius: 10px;
	position: relative;
	padding: 1.5rem;
	list-style: none;1
}
#contact .contactLink ul li a::after{
	content: '';
	display: block;
	width: 2.5rem;
	height: 1rem;
	background-image: url('../images/arrow_right_white.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.3s;
}
#contact .contactLink ul li a:hover{
	box-shadow: none;
	transform: translateY(4px);
	opacity: 1;
	background-color: var(--c-red-dark);
	text-decoration: none;
}
#contact .contactLink ul li a:hover::after{
	transform: translateX(0.5rem);
}




/*====================================================================

privacy

====================================================================*/

#privacy h2{
	font-family: var(--f-sub);
	font-size: 1.2em;
}
#privacy h3{
	font-weight: 900;
	margin-top: 2rem;
}

/*====================================================================

backTop

====================================================================*/

#backTop{
	padding-top: 0;
}
#backTop a{
	color: var(--c-red);
}

/*====================================================================

footer

====================================================================*/

footer{
	background: var(--c-text);
	color: #fff;
	padding-top: 1rem;
	padding-bottom: calc(1rem + 16vw);
	text-align: center;
}

#frameBottom{
	position: fixed;
	bottom: -1px;
	width: 100%;
	aspect-ratio: 5.6 / 1;
	z-index: 100;
	background-image: url('../images/frame_bottom.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media all and (min-width:0px) and (max-width:600px) {
}
@media all and (min-width:601px) {
	footer{
		padding-bottom: calc(1rem + 89px);
	}
	#frameBottom{
		width: 500px;
		height: 89px;
		left: calc(50% - 250px);
	}
}
