@charset "UTF-8";

/*------------------------------------
アニメーション設定
------------------------------------*/

/*右から左*/
@keyframes RightToLeft {
0% {
    opacity: 0;/* 透明 */
    transform: translateX(50px);/* X軸方向に50px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);/* X軸方向に0px */
}
}

/*上から下*/
@keyframes SlideDown {
0% {
    opacity: 0;/* 透明 */
    transform: translateY(-50px);/* Y軸方向に-50px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);/* Y軸方向に0px */
}
}

/*下から上*/
@keyframes SlideUp {
0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);/* Y軸方向に0px */
}
}



/*------------------------------------
全体
------------------------------------*/

html{
font-size: 100%;
}


body{
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
line-height: 1.7;
color: #432;
}

a{
text-decoration: none;
color: #432;
}

a:hover{
color: #85684C;
}

img{
max-width: 100%;
}

.margin_contents_sm{
margin-top: 3%;
margin-bottom: 6%;
}

.margin_contents_bg{
margin-top: 10%;
margin-bottom: 6%;
}


section p{
margin-bottom: 1rem;
padding: 12px 10px;
}

.blackcolor{
background-color: #000;
}

.h2-title{
font-size: 16rem;
	color: black;
	margin-top: 200px;
}

.h3-title{
	text-align: center;
	font-size: 4rem;
}

.h3-title2{
	font-size: 12rem;
	letter-spacing: 1rem;
	
}

.h4-title{
font-size: 2rem;
border-bottom: 2px #2E1919 solid;
padding: 0 8px 6px;
}


.textwhite h4{
	color: #A5A5A5;
border-bottom: 2px #A5A5A5 solid;
}

.text-l{
	font-size: 1.8rem;
	text-align: center;
	font-weight:bold;
}

.text-m{
	font-size: 1.2rem;
	text-align: center;
}

.text-white{
			color: #FFFFFF;
}

.text-black{
			color: #000000;
}
.text-rigth{
	text-align: right;
}


/*------------------------------------
header
------------------------------------*/

.logo{
width: 210px;
margin-top: 10px;
animation-name: SlideDown;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
position:fixed;
}

.logo_main{
margin-top: 10px;
animation-name: SlideDown;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
}

.page-header{
display: flex;
justify-content: space-between;
}


.wrapper{
max-width: 1300px;
margin: 0 auto;
padding: 0 4%;
}

.home-content{
text-align: center;
margin-top: 10%;
animation-name: SlideDown;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
}

.home-content p{
font-size: 1.125rem;
margin: 10px 0;
}



.big-bg{
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
background-image: url("../images/PICT0004.png"), linear-gradient(#c9ffbf, #ffafbd);
background-blend-mode: luminosity;
background-attachment: fixed;
min-height: 100vh;
}

/*------------------------------------
nav
------------------------------------*/
.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: rgba(255,255,255,0.9);
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.main-nav{
font-size: 1.5rem;
text-transform: uppercase;
margin-top: 30px;
list-style-type: none;
margin-left: 3px;
}

.main-nav li{
border-bottom: solid 1px #432;
margin-top: 20px;
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  left: -30px;
  width: 60px;
  height: 6px;
  background-color: #111;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 15px;
}
.hamburger__line--2 {
  top: 35px;
}
.hamburger__line--3 {
  top: 55px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}

/*------------------------------------
ボールをバウンド_contact
------------------------------------*/
.bound-container{
	position:relative;
	width:100%;
	height:350px;
}

.ball{
	position: absolute;
	left: 0;
	right: 0;
	top:0;
	bottom: 0;
	margin: auto;
	width: 500px;
	height:500px;
	border-radius: 50%;
	background:#000000;
	opacity:0.1;
	animation: bound-anim-ball 1s infinite;
}

@keyframes bound-anim-ball {
	0%,100% {top: 0;transform: scale(1);}
	30% {top: -60%; transform: scale(0.80,1.20);}
	60% {transform: scale(1);}
	90% {top: 0;transform: scale(1.15,0.9);}
}

/*------------------------------------
BIOGRAPHYをバウンド
------------------------------------*/


.bio-container{
	position:relative;
	width:100%;
	height:200px;
}

/*フォント*/
.bound span{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:10px;
	margin:auto;
	font-weight:bold;
	text-align:center;
	width:100px;
	height:100px;
}


/*アニメーション指定
文字数に合わせてleftや開始時間（2つ目のs）を設定する*/
.bound span:nth-child(1){ left:-8.0em; animation: bound-anim 2.0s 0.0s infinite;}
.bound span:nth-child(2){ left:-6.0em; animation: bound-anim 0.8s 0.1s infinite;}
.bound span:nth-child(3){ left:-4.0em; animation: bound-anim 4.0s 0.2s infinite;}
.bound span:nth-child(4){ left:-2.0em; animation: bound-anim 0.8s 0.3s infinite;}
.bound span:nth-child(5){ left: 0.0em; animation: bound-anim 2.0s 0.4s infinite;}
.bound span:nth-child(6){ left: 2.0em; animation: bound-anim 0.8s 0.5s infinite;}
.bound span:nth-child(7){ left: 4.0em; animation: bound-anim 2.0s 0.6s infinite;}
.bound span:nth-child(8){ left: 6.0em; animation: bound-anim 4.0s 0.7s infinite;}
.bound span:nth-child(9){ left: 8.0em; animation: bound-anim 2.0s 0.8s infinite;}


/*アニメーションキーフレーム
小さいフォントサイズの場合はtopの数値も縮小すると飛び過ぎない*/
@keyframes bound-anim {
	0%,100% {top: 0;transform: scale(1);}
	30% {top: -10%;}
	50% {transform: scale(1);}
	90% {top: 0;transform: scale(1.2,0.8);}
}



/*------------------------------------
カラム
------------------------------------*/
.column-half{
width: 45%;
}

.movie iframe{
margin-top: 6%;
}


.flex-content{
display: flex;
justify-content: space-between;
animation-name: RightToLeft;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */

}



/*------------------------------------
grid
------------------------------------*/
.grid{
display: grid;
gap: 50px;
grid-template-columns: repeat(auto-fit, minmax(240px,1fr));

}

.grid a:hover{
opacity: 0.8
}

.big-box{
grid-column: 1/3;
grid-row: 1/3;
}

.big-box img{
height: 80%;
width: 100%;
object-fit: cover;
}

.right-slide{
animation-name: RightToLeft;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
margin-top: 6%;
padding-top: 3%;
}




/*------------------------------------
song
------------------------------------*/


/*------------------------------------
contact
------------------------------------*/

form div{
margin-bottom: 14px;
}

label{
font-size: 1.125rem;
margin-bottom: 10px;
display: block;
}

input[type="text"], input[type="email"], textarea{
background: rgba(0, 0, 0, .1);
border: 1px #fff solid;
border-radius: 5px;
padding: 10px;
font-size: 1rem;
}

input[type="text"], input[type="email"]{
width: 100%;
max-width: 240px;
}

textarea{
width: 100%;
max-width: 480px;
height: 6rem;
}

inout[tyoe="submit"]{
border: none;
cursor: pointer;
line-height: 1;
}

.cont{
animation-name: RightToLeft;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
}




/*------------------------------------
footer
------------------------------------*/

footer{
background: #432;
text-align: center;
padding: 26px 0;
margin-top: 40px;
}

footer p{
color: #fff;
font-size: 0.875rem;
}

/*------------------------------------
レスポンシブ
------------------------------------*/

@media(max-width:600px){

/* header */ 

.page-header{
flex-direction: column;
}
.h2-title{
	font-size:  2.5rem;
	margin-top: 300px;
}

.home-content{
margin-top: 20%;
}


/* coloum */ 

.news-content{
flex-direction: column;
}

.bio, .movie{
width: 100%;
}

.movie iframe{
width: 100%;
}

/* grid */ 
.big-box{
grid-column: auto;
grid-row: auto;

}

	}
	