@charset "UTF-8";
/*
Copyright 2022 Kento Suzuki.
Reproducing all or any part of the contents of this site is prohibited without author's permission.
*/

/*------ common ------*/
/*--- Fonts ---*/
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

@font-face {
	font-family: 'icomoon';
	src: url('../fonts/icomoon.ttf') format('truetype'),
	url('../fonts/icomoon.woff') format('woff'),
	url('../fonts/icomoon.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*--- Parents ---*/




body {
	/* font-family: 'Quicksand', sans-serif; */
	font-family: 'Lato', sans-serif;
	/*--- Grid ---*/
	/* background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F7F7F7 calc(100% - 1px)), */
	/* linear-gradient(90deg, transparent calc(100% - 1px), #F7F7F7 calc(100% - 1px)); */
	background-size: 12px 12px;
	background-repeat: repeat;
	background-position: center center;
	padding: 20px;
}
@media screen and (min-width: 768px) {
	body {
		padding-left: 5% !important;
		padding-right: 5% !important;
	}
}

@media screen and (min-width: 1200px) {
	body {
		padding-left: 20% !important;
		padding-right: 20% !important;
	}
}

header {
	width: 100%;
	height: 100px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem;
	position: relative;
}


h2 {
	font-size: calc(1.275rem + 0.3vw) !important;
	font-weight: 700 !important;
}

a {
	color: #212529;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
	color: #212529;
}

hr {
	border-bottom: 2px solid #1281b5 !important;
	margin: 1rem 0;
	opacity: 1 !important;
}

footer {
	color: #6c757d !important;
	margin: 1rem 0;
	font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 0.8rem;
	text-align: center;
}

@media screen and (min-width: 768px) {
	footer {
		text-align: left;
	}
}

/*--- Drag ---*/
::selection {
	background: rgba(18, 129, 181, 0.2);
}

::-moz-selection { /* for Firefox */
	background: rgba(18, 129, 181, 0.2);
}


/*--- logo ---*/
.logo a {
	align-items: center !important;
	text-decoration: none !important;
}

.logo img {
	width: 32px;
	height: 32px;
	margin-bottom: 8px;
	margin-right: 0.5rem !important;
}


.logo span {
	font-size: 1.5rem;
}
@media screen and (max-width: 374px) {
	.logo span {
		font-size: 1.1rem;
	}
}
/*@media (min-width: 1200px) {*/
/*  h4, .h4 {*/
/*    font-size: 1.5rem;*/
/*  }*/
/*}*/
.menu-bars,
.checkbox {
	width: 32px;
	height: 32px;
	position: absolute;
	right: 1rem;
	top: 50%;
	margin-top: -2px;
	transform: translateY(-50%);
}

.checkbox {
	opacity: 0;
	z-index: 100;
}

.menu-bars {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	z-index: 90;
}

.menu-bars span {
	width: 100%;
	height: 3px;
	background: #999999;
	transition: all 250ms ease-out;
	transform-origin: 0 0;
}

.checkbox:checked ~ .menu-bars span:nth-last-child(1) {
	transform: rotate(-45deg) translate(-1px, 0px);
}

.checkbox:checked ~ .menu-bars span:nth-last-child(2) {
	transform: rotate(0deg) scale(0.2, 0.2);
	opacity: 0;
}

.checkbox:checked ~ .menu-bars span:nth-last-child(3) {
	transform: rotate(45deg) translate(0px, -1px);
}

.nav-container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
	z-index: 50;
	background: white;
	transition: all 250ms ease-out;
	transform: translateX(-100%);
}

.nav-container a {
	text-decoration:none;
	font-weight: 700;
	color: #999999;
	font-size: clamp(1.0rem, 1.2vw, 1.5rem);
	margin: 1rem auto;
}

.nav-container a:hover {
	color: #343a40;
}

.checkbox:checked ~ .nav-container {
	transform: translateX(0%);
}
@media screen and (min-width: 768px) {
	.checkbox,
	.menu-bars {
		display: none;
	}
	.nav-container {
		position: relative;
		width: auto;
		height: 100%;
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: center;
		z-index: 50;
		background: transparent;
		transition: none;
		transform: none;
	}
	.nav-container a {
		margin-left: 1.5rem;
	}
}


/*------ END OF common ------*/






.page-title {
	font-size: calc(1.275rem + 0.3vw) !important;
	font-weight: 700 !important;
	/* border-bottom: 2px solid #1281b5; */
	border-bottom: 2px solid #666666;
	margin-left: 0.5rem;
	padding-left: 0.5rem;
}

.signature {
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: right !important;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8rem;
	/*font-weight: bold;*/
	/*font-family: "Alata", sans-serif;*/

}
@media screen and (min-width: 768px) {
	.signature {
		padding-right: 3rem;
		margin-bottom: 3rem;
	}
}

.icon {
	font-family: 'icomoon', serif !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}

.icon-facebook:before {
	content: "\ea90";
}

.icon-instagram:before {
	content: "\ea92";
}

.icon-youtube:before {
	content: "\ea9d";
}

.icon-newtab:before {
	content: "\ea7e";
}


/*--- .card ---*/
.card {
	padding: 3rem 6%;
	user-select: none;
	margin-bottom: 1rem;
	text-align: center !important;
}

.card-social li {
	margin: 5px 12px;
	list-style: none;
	display: inline;
	vertical-align: middle
}

.clear-list {
	margin: 0;
	padding: 0;
}



.card-info {
	margin-top: 30px;
}

.card-info h1 {
	font-weight: 700 !important;
	display: inline-block !important;
	/* border-bottom: 2px solid #1281b5; */
	border-bottom: 2px solid #333333;

}


.card-info .card-social {
	margin-bottom: 0
}

.card-portrait img {
	border-radius: 50%;
}

@media (min-width: 768px) {
	.card-wide {
		width: 100%;
		display: table;
		margin-bottom: 3rem;
	}

	.card-wide .card-portrait, .card-wide .card-info {
		display: table-cell;
		vertical-align: middle

	}

	.card-wide .card-portrait {
		width: 195px;
		max-width: 195px;
	}

	.card-wide .card-social {
		margin-top: 30px
	}

	.card-wide .card-info {
		text-align: left;
		padding-left: 8%;
		padding-top: 1.25rem
	}

	/*.card-wide .card-info h2 {*/
	/*	font-size: 2.5rem;*/
	/*	margin-bottom: .2rem*/
	/*}*/
}

/*--- END OF .card ---*/

.box{
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 0.3rem;
	background-color: white;
	border: 1px solid rgba(0,0,0,.125);
}
.box li{
	line-height: 1.5rem;
	/*list-style-type: disc;*/
}


.text-jp {
	font-size: 0.8rem;
	line-height: 2.1rem;
	font-family: 'Noto Sans JP', sans-serif !important;
	margin-bottom: 0;
!important;
}

.text-jp li {
	font-size: 0.7rem;
	font-family: 'Noto Sans JP', sans-serif !important;
}

@media (max-width: 768px) {
	/*for smart phone*/
	.text-jp {
		font-size: 0.9rem;
		line-height: 2rem;
	}

	.text-jp li {
		font-size: 0.8rem;
	}

}

.text-border {
	display: inline-block !important;
	line-height: 2rem !important;
	/* border-bottom: 2px solid #1281b5; */
	border-bottom: 2px solid #333333;
}

ul {
	padding-left: 1rem;
}

/*.youtube {*/
/*	position: relative;*/
/*	width: 100%;*/
/*	padding-top: 56.25%;*/
/*	padding-bottom: 30%;*/
/*}*/

/*.youtube iframe {*/
/*	position: absolute;*/
/*	top: 0;*/
/*	right: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/

/*.youtube-169 {*/
/*	position: relative;*/
/*	width: 100%;*/
/*	padding-top: 56.25%;*/
/*}*/

/*.youtube-169 iframe {*/
/*	position: absolute;*/
/*	top: 0;*/
/*	right: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/

/*------------------------*/

.drumkit * {
	font-family: Alata, sans-serif;
	font-size: 0.8rem;
	line-height: 1.2rem;

}

.drumkit img {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

@media (min-width: 768px) {
	.drumkit img {
		padding-left: 3rem !important;
		padding-right: 3rem !important;
	}
}

.drumkit h2 {
	font-weight: 700;
	font-size: 1rem !important;
}

.drumkit h3 {
	font-weight: 700;
}

.drumkit p {
	padding-left: 0.75rem;
}


.border-line {
	/* border-bottom: 2px solid #1281b5; */
	border-bottom: 2px solid #333333;
}

.drumkit h3 {
	padding-bottom: 0;
	margin-bottom: 0.3rem;
}
