/* CSS Document */

/* 全共通 */
*{
	/* 余白初期化 */
	margin:0;
	padding:0;
	/*　フォント設定 */
	font-family: 'Shippori Mincho B1', serif;
	/*
	font-family: 'Kosugi Maru', sans-serif;
	font-family: 'Yomogi', cursive;
	*/
}


.wrapper{
	background-color:#EEDBCD;
	margin:0 auto;
	/*max-width:960px; */
}

/* タイトル */
.title_img {
	text-align: center;
	margin-bottom: 10px;
	padding-top:15px;
}
/*/
.title_img img{
	width:250px;
	height:auto;
}
	*/

/* ハンバーガーメニュー -------------------------------*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
	/*
    background-color: #B3C6E7;
	*/
    background-color: #E8CEA9;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #FFFFFF;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #111111;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 150px;
    font-size: 15px;
    box-sizing: border-box;
    color:#000000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #FFFFFF;
	/*
    background-color: #B3C6E7;
	*/
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: calc(100% - 200px) ;/*メニューを画面内へ*/
}
/* -------------------------------------------------------*/

h2 {
    max-width: 1200px;
    /*height:10.3em; */
    font-size: 3.3em;
    color: black;
    margin: 28px auto;
    /*background-image:url(../images/h2_bk.jpg); */
    background-repeat: no-repeat;
    padding: 0 45px;
}

h3 {
	max-width: 1200px;
	/*height:10.3em; */
	font-size: 1.6em;
	color: #FFFFFF;
	margin: 28px auto;
}

a{
    text-decoration: none;
}

p{
	/*color:#FFFFFF;*/
}

/* フッター */

.footer_style {
    margin-top: 20px;
    background-image: url(../images/footer.jpg);
    height: 600px;
    /*text-align: center;*/
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative; /* この行を戻す */
    left: 50%; /* この行を戻す */
    right: 50%; /* この行を戻す */
    width: 100vw;
}
	/* Add this new rule to target the image within the footer */
	.footer_style img {
		width: 100%;
		height: auto;
	}

	.footer_style h2 {
		display: flex; 
		align-items: center; /* これで子要素（h2）が縦方向に中央寄せされます */
		font-size: 5.6em;
		height: 450px; /* 親要素に高さを指定する必要があります */
		color:#FFFFFF;
	}

	.footer_style p {
		padding: 5px 20px 2px 120px;
		font-size: 2.0em;
	}

p.copyright_style {
	padding: 12px 0 0 0;
	font-size: 12px;
	text-align: center;
	color: #999;
}


body {
	/* スムーズスクロール */
	scroll-behavior: smooth;
}

/* コピーボタン */


		/* ---- TOP -----------------------------------------------*/
		/* メインビジュアル */
.main_visu {
	text-align: center;
	margin-left: -50vw;
	margin-right: -50vw;
	position: relative; /* この行を戻す */
	left: 50%; /* この行を戻す */
	right: 50%; /* この行を戻す */
	width: 100vw;
}

	.main_visu img {
		max-width: 100%;
		/* Add this line */
		width: 100%;
		height: auto;
	}
/* メインビジュアル 
.main_visu{
	text-align:center;
}

.main_visu img{
	max-width:100%;
}
	*/
/*-- アニメーション ---------------------------- */
.title_ani{
	animation-name:fadeLeftAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}
.visu_ani{
	animation-name:fadeInAnime;
	animation-duration:0.9s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity:0;
}

.js-scrollAnimation{
	animation-name:popup;
	animation-duration:0.6s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.visu_ani {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

	.visu_ani.visible {
		animation: fadeUp 1.8s ease forwards;
	}

/* アニメーション設定用クラス ----------------*/
.inf_view{
	opacity:0;
	text-align:start;
}

.box_view{
	opacity:0;
}

/*-------------- アニメーション設定用クラス --*/

/* 最初に表示 --------*/
.start {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}


.start p {
	position: fixed;
	left:50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}
.start img{
	width:100%;
}
.loading {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;

	opacity: 1;
	visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  /*
  background-color: #20a3ea;
  */
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
/*-------- 最初に表示 */

/* 待ち -------------------------*/
.wait{
	animation-delay: 1.5s;
}
.wait1{
	animation-delay: 1.5s;
}
.wait0{
	animation-delay: 0s;
}
/*------------------------- 待ち */

/* 背景変動 ----------------------------------------*/
.bg {
	animation:slide 3s ease-in-out infinite alternate;
	background-image: linear-gradient(60deg, #FBF1D0 50%, #09f 50%);
	bottom:0;
	left:-50%;
	opacity:.5;
	position:fixed;
	right:-50%;
	top:0;
	z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.bg0 {
	position:fixed;
	width:100%;
	height:100%;
	background-color:#FFF;
	z-index:-2;
}
/*---------------------------------------- 背景変動 */


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

/* お知らせ */
.about_inf div {
	margin: 10px auto;
}
.about_inf li {
	padding: 5px 10px 20px 120px;
	list-style: none;
	margin: 30px 25px;
	text-indent: -120px;
}
/*
.about_inf {
	border-style: double;
	border-width: 3px;
	background-color: #FBF1D0;
	max-width: 900px;
}
	*/
time{
	font-size:12px;
	color:#757575;
	margin-right:20px;
}


/* 製品 */
.song_img {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2つの列を作成し、利用可能なスペースを均等に分割 */
	gap: 5px; /* 画像間の間隔を10pxに設定 */
	max-width: 1000px;
	margin: 10px auto 150px auto;
	/*
	margin:10px auto 150px auto;
	max-width:1000px;
		*/
}
	.song_img img {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	}


.up{
  position: relative;
}
.up:hover{
  top:-15px;
}

/* ライトボックスのスタイル */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9); /* 半透明の黒背景 */
	display: none; /* 初期状態では非表示 */
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* 拡大画像のスタイル */
.lightbox-image {
	max-width: 90%;
	max-height: 90vh; /* ビューポートの高さの90% */
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	cursor: pointer; /* クリックできることを示すカーソル */
}

/* ----------------------------------------------- TOP ----*/


/* ---- 概要-----------------------------------------------*/
.about_inf {
	max-width: 1200px;
	margin: 0 auto;
}

.about_inf-container {
	display: flex;
	flex-wrap: wrap; /* 子要素が画面幅に応じて折り返すように設定 */
	justify-content: center; /* 子要素を中央寄せ */
	align-items: center; /* 子要素を縦方向に中央寄せ */
	gap: 20px; /* 子要素間の隙間 */
}

/* 各要素の幅を調整 */
.about_visu, .about_title, .about_visu {
	flex-basis: 500px; /* 各要素の最小幅を設定 */
	/* flex-basis: calc(33.33% - 20px); */
}

	.about_visu img, .about_visu img {
		max-width: 100%;
		height: auto;
	}

	.about_title h3 {
		margin: 25px 10px;
		padding-left: 10em;
		text-indent: -10em;
	}

	.about_title p {
		margin: 5px 30px;
	}
/* ----------------------------------------------- 概要 ----*/


/*-- policy ----------------------------------------*/
.poli{
	margin:4px 12px;
}

/* アニメーション */
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeLeftAnime{
  from {
	opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

@keyframes popup {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

	
/* スマートフォン向けCSS -------------------------*/
@media (max-width:767px){
	p{
		margin:3px 30px;
	}
	
	/*
	.title_img img{
		width:200px;
		height:auto;
	}
		*/

	.live_tit{
		font-size:16px;
	}

	.past_live{
		margin:5px 20px;
	}
	
	.up{
		width:150px;
		height:auto;
	}
	
	.start p {
		left:40%;
	}
	
	/* 送信ボタン */
	.contact_page input[type="submit"]{
		margin:20px 0;
	}
	.send_btn{
		text-align:center;
	}
	/* メール */
	.contact_page input[name="mail"]{
		width:25em;
	}
	/* 内容 */
	.contact_page textarea{
		width:25em;
		height:6em;
	}

	/* コピーライト */
	p.copyright_style {
		padding: 3px 0 2px 0;
		font-size: 12px;
		text-align: center;
		color: #999;
	}
}
@media (max-width:380px){
	.up{
		width:120px;
		height:auto;
	}

	/* メール */
	.contact_page input[name="mail"]{
		width:20em;
	}
	/* テキストエリア */
	.contact_page textarea{
		width:20em;
	}

	/* コピーライト */
	p.copyright_style {
		padding: 3px 0 2px 0;
		font-size: 12px;
		text-align: center;
		color: #999;
		margin-top:0;
	}
}
