@charset "utf-8";
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
	margin: 0;
  padding: 0;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 14px;	/*基準となるフォントサイズ。*/
	}
	}/*追加指定ここまで*/
body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 300;
	font-optical-sizing: auto;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	-webkit-text-size-adjust: none;
	margin: 0;padding: 0;
	line-height: 2.5;	
	color: #fff;			
	position: relative;
	cursor: none; 
	height:100vh;
}
/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;}
nav ul {list-style: none;}
h1,h2,h3,h4 {font-weight: 400;}
/*table全般の設定*/
table {border-collapse:collapse;}
/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
/*iframeタグ*/
iframe {width: 100%;}
/*他*/
input {font-size: 1rem;}
strong {font-weight: 500;}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	
	transition: 0.3s;	
	display:inline-block;
	text-decoration: none;
}
/*マウスオン時*/
a:hover {
	text-decoration: none;
}
/*オープニングの動画
---------------------------------------------------------------------------*/
/*video要素(動画)　※変更不要*/
video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
/*動画を囲むブロック　※変更不要*/
#video {
	position: relative;z-index: -1; overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
	/*縦向き端末から見た場合に背景画像をチェンジする*/
	@media (orientation: portrait) {
	#video .landscape {display: none;}
	#video .portrait {display: block;}
	}/*追加指定ここまで*/
	/*横向き端末から見た場合に背景画像をチェンジする*/
	@media (orientation: landscape) {
	#video .portrait {display: none;}
	#video .landscape {display: block;}
	}/*追加指定ここまで*/
/*header（ロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 250px;		/*幅*/
	padding: 0 2vw;		/*ヘッダー内の余白。上下、左右への順番。*/
	margin-top: 5vw;	/*ヘッダーの上に空けるスペース*/
	text-align: center;	/*テキストをセンタリング*/
}
/*ロゴ*/
header #logo img {display: block;}
header #logo {
	padding: 0;margin: 0;
}
/*ロゴ下の小文字*/
header #logo span {
	display: block;
	font-size: 0.7rem;	/*文字サイズを70%に*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	header {
		position: fixed;	/*スクロールしても動かないようにする設定*/
		left: 20px;
		top: 0px;
	}
	}/*追加指定ここまで*/
	/*画面の高さが500px以下の追加指定*/
	@media screen and (max-height:500px) {
	header {
		position: absolute;	/*メニューが切れて見えなくならないように、fixedを中止する*/
	}
	}/*追加指定ここまで*/
/*mainブロック（右側のsectionを囲むブロック）
---------------------------------------------------------------------------*/
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	main {
		margin-left: 300px;
	}
	}
	main { 
		height: 100vh;
	}
/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}
/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul {
	margin: 3rem 0;	/*メニューブロックの外側に空けるスペース*/
}
/*メニュー一個あたり*/
#menubar nav a {
	text-decoration: none;display: block;
	color: #fff;
	padding: 0.5rem;
	margin: 3px 0;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-style: normal;
	position: relative;
}
@media screen and (min-width:900px) {
#menubar nav a.menu_line:hover:before,
  #menubar nav a.menu_line:hover:after,
	.contact-btn:hover:before,
  .contact-btn:hover:after {
    width: 100%;
  }
  #menubar nav a.menu_line:hover .line:before,
  #menubar nav a.menu_line:hover .line:after,
	.contact-btn:hover .line:before,
  .contact-btn:hover .line:after {
    height: 100%;
  }
  #menubar nav a.menu_line:before,
	.contact-btn:before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    bottom: 0;
    height: 2px;
    right: 0;
    width: 0;
  }
  #menubar nav a.menu_line:after,
	.contact-btn:after {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    height: 2px;
    left: 0;
    top: 0;
    width: 0;
  }
  #menubar nav a.menu_line .line:before,
	.contact-btn .line:before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    height: 0;
    right: 0;
    top: 0;
    width: 2px;
  }
  #menubar nav a.menu_line .line:after,
	.contact-btn .line:after {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    bottom: 0;
    height: 0;
    left: 0;
    width: 2px;
  }
}
/*900px以下画面でのメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	background: rgba(0,0,0,0.5);		
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}
.small-screen #menubar ul {
	margin: 3rem;	/*メニューブロックの外側に空けるスペース*/
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 15px;
	top: 15px;	
	padding: 16px 14px;	
	width: 46px;
	height: 46px;
	display: flex;		
	flex-direction: column;
	justify-content: space-between;	
}
/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}
/*メニュー内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
ul.icons i {
	font-size: 20px;	/*Font Awesomeのアイコンサイズ*/
}
/*section
---------------------------------------------------------------------------*/
/*フェード設定*/
.section::before {
	opacity: 0; /* 初期状態では非表示 */
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
}
.section.active::before {
	opacity: 1; /* フェードイン状態 */
}
.section.inactive::before {
	opacity: 0; /* フェードアウト状態 */
}
/*section要素*/
section {
	padding: 8vw 8vw 2vw 5vw;
}
/*背景画像を置く為の設定*/
#section_a::before,#section_b::before,#section_c::before {
	content: '';
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*section1の設定*/
#section_a,#section_b,#section_c {
	color: #fff;	
}
#section_a::before {
	background: url('../images/section_a.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}
#section_b::before {
	background: url('../images/section_b.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}
#section_c::before {
	background: url('../images/section_c.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}
	/*縦向き端末から見た場合に背景画像をチェンジする*/
	@media (orientation: portrait) {
	#section1::before {
		background-image: url('../images/sectionc_a_portrait.webp');
	}
	#section2::before {
		background-image: url('../images/section_b_portrait.webp');
	}
	#section3::before {
		background-image: url('../images/section_c_portrait.webp');
	}
	}/*追加指定ここまで*/

/*背景色を入れない場合（画像だけを表示したい場合）*/
.no-bgcolor {background-color: transparent !important;}
/*フッター設定
---------------------------------------------------------------------------*/
footer small {
	font-size: 100%;
	writing-mode: vertical-rl;
}
footer {
	position: fixed;
  top: 80%;
	right: 15px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0;
  margin: 0;
}
/*リンクテキスト*/
footer a {
	color: inherit;
	text-decoration: none;}
/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 20px;
}
.new dt,.new dd {
	line-height: 2;
}
	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		grid-template-columns: 1fr;	
	}

	}/*追加指定ここまで*/


/*list-grid（gallery.htmlでサムネイルを表示している部分の設定です）
---------------------------------------------------------------------------*/
/*listブロックを囲む外側のボックス*/
.list-grid-trimming {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;	/*マージン的な数値。サムネイル間を１文字分あけます。*/
}

/*ボックスを正方形にトリミングする為の指定なので変更しない。*/
.list-grid-trimming .list {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 100%;
}
.list-grid-trimming .list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list-grid-trimming .list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;	/*マウスオン時にかける時間。0.5秒。*/
}

/*マウスオン時の画像*/
.list-grid-trimming .list img:hover {
	transform: scale(1.1);	/*1.1倍に拡大*/
	filter: contrast(1.3);	/*コントラストを1.3倍*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 0.2s 0.2s both;	/*一瞬ボタンが出ちゃうのを隠す為の応急措置*/
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

/*その他
---------------------------------------------------------------------------*/
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}
	}/*画面幅900px以上の追加指定ここまで*/
	/* 英語フォント */
	.anton-regular {
		font-family: "Anton", sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	/* 丸いカーソル */
	#cursor{
		position: fixed;
		background: #fff;
		border-radius:10px;
		width: 10px;
		height: 10px;
		margin: -10px 0 0 -10px;
		z-index: 2;
		pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
		opacity: 0;
		transition: transform 0.1s;/*アニメーションの秒数指定*/
	}
	#stalker{
		position: fixed;
		background: #00f;
		width: 50px;
		height: 50px;
		border-radius:30px;
		margin: -30px 0 0 -30px;
		z-index: 1;
		pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
		transition: transform 2.0s;/*アニメーションの秒数指定*/
	}
	#cursor.active,
	#stalker.active{
		transform: scale(1.6);
	}
	#stalker.active {
		display: none;
	} 
	.live_contents {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 40px;
	}
	.live_date,.live_ttl {
		margin: 0;
		line-height: 2;
	}
	.live_date {
		color: #f7f7f7;

	}
	p.live_ttl {
    font-weight: bold;
}
	.page_ttl {
		font-family: "Anton", sans-serif;
		font-weight: 400;
		font-style: normal;
		padding-bottom: 20px;
		font-size: 46px;
	}
	.scroll {
		max-height: 100vh; /* 高さはお好みで */
		overflow-y: auto;
		padding-right: 10px;
	}
	.page_back {
		background-color: rgba(0, 0, 0, 0.8);
	}
	.page_black {
		background-color: #202020;
	}
	.live_link {
		display: inline-block;
		position: relative;
		overflow: hidden;
	}
	.circle_overlay_container {
		position: relative;
		display: inline-block;
	}
	.live_img {
		display: block;
		width: 100%;
		height: auto;
		transition: transform 0.5s ease; /* 画像も少しズーム可 */
	}
	/* 丸いエフェクト */
	.circle_overlay {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(0, 0, 255, 0.4); /* 半透明の青 */
		border-radius: 50%;
		transform: translate(-50%, -50%) scale(0);
		transition: transform 0.6s ease;
		z-index: 1;
	}
	/* checkテキスト */
	.overlay_text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0.8);
		font-size: 1.4rem;
		font-weight: bold;
		color: white;
		opacity: 0;
		transition: all 0.5s ease;
		z-index: 2;
		pointer-events: none;
		text-shadow: 0 2px 5px rgba(0,0,0,0.3);
		font-family: "Anton", sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	/* ホバーで拡大・表示 */
	.live_link:hover .circle_overlay {
		width: 250px;
		height: 250px;
		transform: translate(-50%, -50%) scale(1);
	}
	.live_link:hover .overlay_text {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	/* 画像にもズーム感 */
	.live_link:hover .live_img {
		transform: scale(1.05);
	}
	.profile-img {
		width: 95%;
	}
	.profile-name {
		margin: 0;
		font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
		font-size: 37px;
		margin-top: 35px;
	}
	.profile-text {
		border-left: 2px solid #fff;
		padding-left: 30px;
	}
	.contact-btn {
	 	padding: 0.5rem 20px;
    margin-top: 40px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    position: relative;
    width: 250px;
	}
	.fa-line {
		margin-right: 10px;
	}
	.news-link {
		text-decoration: underline;
	}
	.news-link:hover {
		text-decoration: underline;
		color: #00f;
	}
	@media screen and (max-width:899px) {
	#menubar nav a {
		text-align: end;
	}
	header {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
		padding: 10px 2vw;
  }
	header #logo {
    width: 120px;
		display: flex;
		flex-direction: column;
		align-items: center;
		}
		header #logo span {
			white-space: nowrap;
		}
		footer {
			top: 80%;
			right: 20px;
		}
		.page_ttl {
			padding-bottom: 0px;
			font-size: 30px;
	}
	.live_contents {
    display: block;
	}
	.profile-img {
		width: 100%;
	}
		.contact-btn { 
			border: 2px solid #fff;
			width: 100%;
    	text-align: center;
		}
		.profile-name {
			font-size: 30px;
			margin-top: 20px;
		}
		section {
	padding: 8vw 8vw 15vw 5vw;
}
.profile-text {
	padding-left: 20px;
}
.live_box {
	margin-bottom: 25px;
}
	.live_link {
		overflow: initial;
	}
}