@charset "utf-8";

/*
// common
///////////////////////////////////////////////////////////////*/

*{
	margin:0px;
	padding:0px;
}
html,body{
	width:100%;
	height: 100%;
}
img{
	width: 100%;
	height: auto;
}
a{
	transition: 0.3s;
}
a:hover{
	text-align: none;
}

/*
// Color
///////////////////////////////////////////////////////////////*/

:root{
	--c-white : #fff;
	--c-bg : #fff;
	--c-bg-02 : #f8f8f8;
	--c-text : #000;
	--c-border :#ddd;

	--c-main: #ffd63f;

	--c-yellow :#fed837;
	--c-red : #f67555;
	--c-blue : #52bde2;
	--c-green : #72e8aa;
	--c-gray : #e5d7ce;
	--c-purple : #daa2f4;
	--c-pink : #ffb3db;
	--c-lime : #c1e200;
}



/*
// html
///////////////////////////////////////////////////////////////*/
html{
	font-size: 18px;
}
@media all and (min-width:0px) and (max-width:960px) {
	html{
		font-size: 3.4vw;
	}
}

/*
// body
///////////////////////////////////////////////////////////////*/
body{
	font-family: "Zen Maru Gothic", serif;
	line-height: 2;
}
@media all and (min-width:0px) and (max-width:960px) {
}


/*
// inner
///////////////////////////////////////////////////////////////*/
.inner{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
@media all and (min-width:0px) and (max-width:960px) {
	.inner{
		padding: 0 6vw;
	}
}
@media all and (min-width:961px)  {
	.inner{
		padding: 0 4vw;
	}
}


/*
// grid
///////////////////////////////////////////////////////////////*/

@media all and (min-width:0px) and (max-width:960px) {
	#bodyGrid__left,
	#bodyGrid__right{
		display: none;
	}
}
@media all and (min-width:961px)  {
	#bodyGgrid{
		display: grid;
		grid-template-columns: 1fr 480px 1fr;
		grid-template-rows: 1fr;
	}
	#bodyGrid__left{
		background: var(--c-main);
	}
	#bodyGrid__left img{
		position: fixed;
		left: calc( (100% - 480px) / 4 );
		top: 50%;
		transform: translate(-50%, -50%);
		width: 400px;
		max-width:  calc( (100% - 480px) / 2 * 0.8 );
		height: auto;
	}
	#grid__center{
		background-color: #fff;
		color: var(--c-text);
	}
	#bodyGrid__right{
		background: var(--c-gray);
	}
	#bodyGrid__right .bodyGridRight__container{
		position: fixed;
		left:  calc( (100% - 480px)  / 4 * 3 + 480px);
		top: 50%;
		transform: translate(-50%, -50%);
	}
	#bodyGrid__right .bodyGridRight__container div{
		font-size: 1.5rem;
	}
	#bodyGrid__right .bodyGridRight__container ul{
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 1rem;
		gap: 1rem;
	}
	#bodyGrid__right .bodyGridRight__container a{
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #000;
		padding: 1rem;
		background-color: #fff;
		border-radius: 50%;
		box-shadow: 2px 2px 0 rgba(0,0,0,1);
		transition: 0.3;
	}
	#bodyGrid__right .bodyGridRight__container a:hover{
		transform: translate(2px, 2px);
		box-shadow: none;
	}
	#bodyGrid__right .bodyGridRight__container a img{
		width: 2rem;
		height: 2rem;
	}
}


/*
// main
///////////////////////////////////////////////////////////////*/
main{
	padding: 2rem 0;
}
main > section{
	padding: 2rem 0;
}
@media all and (min-width:0px) and (max-width:960px) {
}
@media all and (min-width:961px)  {
}


/*
// nav
///////////////////////////////////////////////////////////////*/
.navButton{
	position: fixed;
	background-color: var(--c-main);
	top: 0;
	left: calc(50% + 240px  - 4rem);
	width: 4rem;
	height: 4rem;
	z-index: 50;
	border-radius: 0 0 0 8px;
}
.navButton span,
.navButton span::before,
.navButton span::after{
	display: block;
	background: var(--c-text);
	position: absolute;
	right: 0;
	content: '';
	transition: 0.3s;
	width: 3rem;
	height: 4px;
}
.navButton span{
	top: calc( (50%) - 2px );
	right: 0.5rem;
}
.navButton span::before{
	top: calc( -10px);
}
.navButton span::after{
	top: calc( 10px);
}
.navButton.is-open span{
	width: 0;
}
.navButton.is-open span::before{
	top: 0;
	transform: rotate(-45deg);
}
.navButton.is-open span::after{
	transform: rotate(45deg);
	top: 0;
}
.navContent{
	width: 480px;
	position: fixed;
	top: 0;
	left: calc(50% - 240px);
	height: 100dvh;
	background-color: #fff;
	padding: 4rem 4vw;
	z-index: 40;
}
.navContent__logo{
	width: 65%;
	margin: auto;
}
.navContent__menu{
	margin-top: 2rem;
	text-align: center;
	font-weight: 1.1rem;
}
.navContent__menu li + li{
	margin-top: 1rem;
}
.navContent__sns{
	margin-top: 2rem;
}
.navContent__sns ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	gap: 1rem;
}
.navContent__sns ul a{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #000;
	padding: 1rem;
	background-color: var(--c-main);
	border-radius: 50%;
	box-shadow: 2px 2px 0 rgba(0,0,0,1);
	transition: 0.3;
}
.navContent__sns ul a:hover{
	transform: translate(2px, 2px);
	box-shadow: none;
}
.navContent__sns ul a img{
	width: 2rem;
	height: 2rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	.navButton{
		left: inherit;
		right: 0;
		width: 5rem;
		height: 5rem;
	}
	.navButton span,
	.navButton span::before,
	.navButton span::after{
		width: 4rem;
		height: 4px;
	}
	.navContent{
		width: 100%;
		left: 0;
	}
	.navContent__menu{
		font-size: 1.25rem;
	}
}
@media all and (min-width:961px)  {
}



/*
// section__heading
///////////////////////////////////////////////////////////////*/
.section__heading h2{
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 900;
	font-size: 2rem;
}
.section__heading h2::before{
	content:'';
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--c-purple);
}
.section__heading + .section__content{
	margin-top: 1rem;
}


/*
// mainProfile
///////////////////////////////////////////////////////////////*/

.mainProfileSns{
	margin-top: 2rem;
}
.mainProfileSns ul{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.mainProfileSns ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #000;
	padding: 1rem;
	background-color: var(--c-main);
	border-radius: 50%;
	box-shadow: 2px 2px 0 rgba(0,0,0,1);
	transition: 0.3;
}
.mainProfileSns ul li a:hover{
	transform: translate(2px, 2px);
	box-shadow: none;
}
.mainProfileSns ul li a img{
	width: 1.5rem;
	height: 1.5rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	#mainProfile img{
		width: 80%;
		margin: auto;
		display: block;
	}
}
@media all and (min-width:961px)  {
}


/*
// history
///////////////////////////////////////////////////////////////*/
#history .historyList{
	margin-top: 1rem;
	background-color: var(--c-gray);
	padding: 1.5rem;
	font-size: 0.8rem;
	border-radius: 6px;
}
#history ul li{
	display: inline;
}
#history ul li:not(:last-of-type)::after{
	content: '/';
	display: inline-block;
	margin: 0 0.25rem;
}
@media all and (min-width:0px) and (max-width:960px) {
}
@media all and (min-width:961px)  {
}




/*
// memberList
///////////////////////////////////////////////////////////////*/
.memberList{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.memberContent,
.memberContent__close,
.js-memberList__bg{
	display: none;
}
.memberLabel{
	display: flex;
    flex-direction: column;
	padding: 1rem;
	border: 2px solid var(--c-text);
	align-items: center;
	gap: 0.5rem;
	position: relative;
	transition: 0.3s;
}
.js-memberList__button::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
    border: 1rem solid;
    z-index: 2;
    border-color: var(--c-red) var(--c-red) transparent transparent;
}
.js-memberList__button:hover{
	background-color: var(--c-gray);
}
.memberLabel .memberLabel__icon{
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}
.memberLabel .memberLabel__icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.memberContent{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 480px;
	height: 70vh;
	z-index: 10;
	background-color: #fff;
	padding: 3vw;
    overflow-y: auto;
	font-size: 0.9rem;
}
.memberContent__header{
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.memberContent__icon{
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}
.memberLabel .memberLabel__icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.memberContent__name{
	font-size: 1.25rem;
}
.memberContent__link{
	margin-top: 0.5rem;
}
.memberContent__link ul{
	display: flex;
	gap: 0.5rem;
}
.memberContent__link ul li a{
	display: flex;
	width: 2rem;
	height: 2rem;
	padding: 0.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--c-text);
	box-shadow: 2px 2px 0 var(--c-text);
	border-radius: 50%;
	transition: 0.3s;
}
.memberContent__link ul li a:hover{
	transform: translate(2px,2px);
	box-shadow: none;
}
.memberContent__link ul li a img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.memberContent__bio{
	margin-top: 2rem;
}
.memberContent__table{
	margin-top: 1.5rem;
}
.memberContent__table table{
	width: 100%;
}
.memberContent__table table th{
	font-weight: 700;
}
.memberContent__table table th,
.memberContent__table table td{
	display: block;
	width: 100%;
}
.memberContent__table table th{
	padding-top: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.memberContent__table table th::before{
	content:'';
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: var(--c-purple);
}
.memberContent__table table td{
	border-bottom: 1px solid var(--c-border);
	padding-bottom: 0.5rem;
}
.memberContent__table ul{
	list-style-type: circle;
}
.memberContent__table ul li{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.memberContent__table ul li::before{
	content: '';
	width: 0.75rem;
	height: 0.75rem;
	background-image: url('../images/icon_arrow-right01.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.memberContent__table ul li a{
	color: var(--c-red);
}
/* .memberContent__table ul li a{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.memberContent__table ul li a::after{
	content: '';
	width: 0.75rem;
	height: 0.75rem;
	background-image: url('../images/icon_alter02.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
} */
.memberContent__close{
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 1.5rem;
	height: 1.5rem;
	z-index: 15;
}
.memberContent__close:hover{
	opacity: 0.5;
}
.memberContent__close img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.js-memberList__bg{
	width: 100dvw;
	height: 100dvh;
	position: fixed;
	background-color: #000;
	opacity: 0.5;
	left: 0;
	top: 0;
	z-index: 5;
}
@media all and (min-width:0px) and (max-width:960px) {
	.memberContent{
		width: 92%;
		padding: 6vw;
		font-size: 1rem;
	}
	.memberContent__close{
		position: fixed;
		top: calc(15vh + 1rem);
		right: calc(4% + 1rem);
	}
}
@media all and (min-width:961px)  {
}



/*
// contact
///////////////////////////////////////////////////////////////*/
#contact a{
	display: flex;
	margin-top: 1rem;
	padding: 1rem 2rem;
	background-color: var(--c-red);
	color: #fff;
	justify-content: space-between;
	align-items: center;
	border-radius: 100px;
}
#contact a:hover{
	background-color: var(--c-purple);
}
#contact a img{
	width: auto;
	height: 1rem;
}
@media all and (min-width:0px) and (max-width:960px) {
}
@media all and (min-width:961px)  {
}



/*
// footer
///////////////////////////////////////////////////////////////*/
footer{
	text-align: center;
	padding: 2rem 0;
	font-size: 0.8rem;
}
@media all and (min-width:0px) and (max-width:960px) {
}
@media all and (min-width:961px)  {
}

