@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");


@import url("animation.css");

/*splide
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/css/splide.min.css");

/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;
	height: 100%;
}
body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #ffffff;
	color: #333;
	line-height: 2;
}
html{
	visibility: hidden;
}
html.wf-active {
	visibility: visible;
}
/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 30px;	/*sectionの間に空けるスペース*/
}
section{
	overflow-x: hidden;
}
/*scrollbarの設定*/
::-webkit-scrollbar{
   width: 10px;
}
::-webkit-scrollbar-thumb{
   background-color: #C597C6;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	transition: 0.3s;
}

a:hover {
	color: #C597C6;
	text-decoration: none;
}

/*背景ありリンクテキスト
---------------------------------------------------------------------------*/
.a_link{
	text-decoration: none;
	display: inline-block;
	border-radius: 4px;
	color: #fff;
	background-color: #999;
	font-size: 0.8em;
	padding: 0.1em 0.3em;
	transition: all .3s;
}

.a_link:hover{
	color: #fff;
	background-color: #00cccc;
}
.cp_link {
	text-decoration: none;
	display: inline-block;
	padding: 0.1em 0.3em 0em 0.3em;
	background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,204,204,1) 50%);
	background-position: 0 0;
	background-size: auto 200%;
	transition: .3s;
}
.cp_link:hover {
	background-position: 0 100%;
	color: #fff;
}
/*containerブロック
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;					        /*flexボックスを使う指定*/
	flex-direction: column;			    /*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;z-index: 10000;	    /*ヘッダーを上部に固定する指定*/
	display: flex;
	width: 100%;
	height: 45px;
	align-items: center;
	padding: 5px 20px;
	background: #C597C6;
	color: #fff;
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #fff;
}

/*ロゴ画像*/
header #logo img {display: block;}
header #logo {
	margin: 0 0 0 35px;
	order: 1;		/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	width: 200px;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 10002;
	cursor: pointer;
	left: 10px;
	top: 3px;
	padding: 10px 8px;
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;			    /*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 0 0 auto;
	order: 0;			/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	background: #C597C6;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 2px solid #fff;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 26px;
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 7px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(6px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}
#menubar ul {list-style: none;margin: 0;padding: 0;}


/*小さな端末用の開閉ブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar.db {
	position: fixed;overflow: auto;z-index: 10001;
	left: 0px;top: 45px;
	width: 180px;
	height: 100%;
	padding: 70px 0 0;
	background: rgba(0,0,0,0.9);
	color: #fff;
	animation: animation1 0.2s both;
}

/*メニュー１個あたりの設定*/
#menubar.db a {
	color: #fff;
}

/*現在表示中のメニュー設定（current）*/
#menubar.db li.current a {
	background: #666;
}

#menubar h1{
	display: none;
}
/*メインメニュー（小さな端末、大きな端末共通設定）
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 30px;
	font-size: 0.8em;
	letter-spacing: 0.1em;
}
#menubar a {
	display: block;text-decoration: none;
	text-align: center;
	padding: 2px 5px;
}

/*HPタイトル
---------------------------------------------------------------------------*/
#hp_title h1 {
    position: relative;
		display:  inline;
    font-weight: bold;
    font-size: 7.5rem;
  	line-height: 1.1;
		font-family: 'Antonio';
		border-bottom: 3px solid;
		border-image: linear-gradient(to right, #00cccc 0%, #EF5B9C 100%);
		border-image-slice: 1;
}

#hp_title h1::before {
    position: absolute;
		top:  70px;
		left: 30%;
    color: #00cccc;
    font-size: 4rem;
		transform: rotate(20deg);
    text-transform: uppercase;
    content: 'Archive';
    z-index: -1;
		font-family: 'Nothing You Could Do', cursive;
}
/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	flex: 1;
	margin-top: 30px;
	padding: 30px;
}
main h2 {
	display: inline-block;
	line-height: 1.2;
	margin: 20px 0px;
	width:        100%;
	font-size:    3rem;
	color:        #000;
	border-bottom: 4px solid;
	border-image: linear-gradient(to right, #00cccc 0%, #EF5B9C 100%);
	border-image-slice: 1;
	}
main h3 {
	font-weight: normal;
	margin: 0;
	margin-bottom: 20px;
	padding-left:  20px;
	background:    #C597C6;
	color:         #fff;
}
main h4 {
	color: #fff;
	font-size: 0.8rem;
	border-bottom: 3px solid #000;
}
main h4 span{
	background: #000;
	padding: 3.8pt 10pt;
}
/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;
}

.zen-antique-regular {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
}

/*見出し設定
---------------------------------------------------------------------------*/
.fadeIn{
	animation: fadeInAnimation 1s ;
	animation-fill-mode:forwards;
}
.fadeUp{
	animation: fadeUpAnimation 0.5s 0.5s;
	animation-fill-mode:forwards;
}
.fadeClip{
	animation: fadeClipAnimation 0.5s 0.3s;
	animation-fill-mode:forwards;
}
	/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInAnime ,.fadeUpAnime{
  opacity: 0;
}
.fadeClipAnime{
  clip-path: inset(0 100% 0 0);
}
/*main2ブロック設定
---------------------------------------------------------------------------*/
/*main2ブロックの設定*/
.main2 {
	display:   flex;
	position:  relative;        /* 要素の配置方法をと子要素の起点を指定 */
	flex-wrap: wrap;
	margin: 20px;
	height: 90%;
}
/*main2ブロックのpタグ*/
.main2 p {
	margin: 0 20px 30px;
}
#box_main {
  display:flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.box_left , .box_right{
	width: 100%;
	display: inline-block;
}
.box_disc1{
	width: 100%;
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translate(-50%,0%);
	margin-bottom: 20px;
}
.box_disc1 img{
	width: 90%;
}

.box_disc2{
	width: 100%;
	padding: 20px 0px;
	display: inline-block;
}
/*discブロック初期設定
---------------------------------------------------------------------------*/
.card-1 {
  width: 45%;
  cursor: pointer;
	display: inline-block;
  transition: 0.3s;
}
.card-1 a {
  text-decoration: none;
}
.card-1 a:hover {
	color: #333;
}

.card-1:hover {
  opacity: 0.6;
}

.content-img {
  padding: 0.1em;
  text-align: center;
}

.content-1,
.content-2 {
  padding: 1em 0.5em;
  font-size: 0.9em;
  margin: 0;
}

.content-2 {
  font-size: 0.8em;
}

.content-2 span {
	background: #00cccc;
	color: #fff;
	text-align: center;
	border-radius: 3px;
  font-size: 0.9em;
	margin: 0pt 1.2em;
	padding: 0.1em 1.2em;
}
.cd2 span {
	background: #2222cc;
}

/*playerブロック初期設定
---------------------------------------------------------------------------*/
.youtube{
	width:100%;
  margin-top: 30px;
	margin-left: -20px;
	background-color: #ffffff;
	position: relative;
	height: 0;
	padding-top: 56.25%;
	}

.youtube iframe {
	width: 100% ;
  height: 100% ;
  position: absolute;
  top: 0;
  left: 0;
}
/* 動画全体の横幅を指定 */
.video-wrap {
	width: 100% ;
	margin-left: 20px;
}
.youtube_player {
	width:100%;
	padding-bottom: 10pt;
	height: auto;
	position: fixed;
	background-color: #fff;
}
.play_list {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 80px;
  overflow: auto;
}
.play_list::-webkit-scrollbar{
   margin: 10px;
   width: 5px;
}
/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;
}
/*記事(dd)設定*/
#new dd {
	padding: 0px 0pt 8pt;
}

/*日付(dt)設定*/
#new dt {
	padding: 5px 0pt 2pt;
	width: 14em;
	display: flex;
	float: left;
	justify-content: space-between;
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 8em;
	padding: 3px 0px;
	background: #00cccc;
	color: #fff;
	font-size: 0.8em;
	text-align: center;
	border-radius: 3px;
	margin-right: 1.2em;
	align-self: flex-start;	         /*高さを間延びさせない指定*/
	line-height: 1.5;		             /*行間を少し狭く*/
	position: relative;top: 0.2em;	/*上下の配置バランスの微調整*/
}

/*記事(dd)設定*/
#new dd {
	width: 100%;
}
#new dd span {
	width: 100%;
	background:linear-gradient(transparent 60%, #ff6 60%);
}

/*最新動画の設定
---------------------------------------------------------------------------*/
.new_stream {
  position: relative;
  background-color: black;
}
.new_stream img {
	opacity: 0.5;
}
.stream_title {
  position: absolute;
  top: 10%;
	color: #fff;
	font-size: 0.7rem;
}
/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	border-radius: 3px;
	padding: 10px 40px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	font-size: 1rem;
	background: #C597C6;
	letter-spacing: 0.1em;
	color: #fff;
	transition: 0.3s;
}

/*ボタンのマウスオン時（inputタグ使用時）*/
.btn input:hover {
	cursor: pointer;
	opacity: 0.6;	/*冒頭のリンクテキストのhoverと合わせました*/
}

a.btn-disc {
  border: 1px solid #000;
	padding: 2pt 7pt;
	border-radius: 100vh;
  background: #fff;
	text-decoration: none;
  cursor: pointer;
}

a.btn-disc:hover {
	color: #fff;
  background: #00cccc;
  border: 1px solid #00cccc;
}
/*テーブル
---------------------------------------------------------------------------*/
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin-left: auto;
}
.ta1 td{
	border-bottom: 1px solid #DCDDDD;
	line-height: 1.4rem;
	padding: 8pt 0pt;
	text-overflow:ellipsis;
	overflow: hidden;
}

.tr_icon {
	width: 10%;
	text-align: center;
}
.title_main {
	font-size: 13px;
	text-align: left;
	padding: 0px 20px;
	white-space: nowrap;
  overflow: hidden;                  /* オーバーした要素を非表示*/
	text-overflow:ellipsis;            /* 文字数オーバー… */
}
.title_sub {
	font-size: 11px;
	color: #9FA0A0 ;
	text-align: left;
	padding: 0px 20px;
	white-space: nowrap;
  overflow: hidden;                  /* オーバーした要素を非表示*/
	text-overflow:ellipsis;            /* 文字数オーバー… */
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.3);
	width: 2em;
	line-height: 2em;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);
}

/*検索フォーム 設定
---------------------------------------------------------------------------*/
.search-form{
	padding        : 5pt 10pt 5pt 10pt;
}
/*リセット */
input[type="checkbox"]  {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* チェックボックスデザイン */
input[type="checkbox"] {
    cursor: pointer;
    padding-left: 24px;
    vertical-align: middle;
    position: relative;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border: 1px solid #666464;
  width: 15px;/*チェックボックスの横幅*/
  height: 15px;/*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
input[type="checkbox"]::after {
  border-bottom: 3px solid #666464;/*チェックの太さ*/
  border-left: 3px solid #666464;/*チェックの太さ*/
  opacity: 0;/*チェック前は非表示*/
  height: 6px;/*チェックの高さ*/
  width: 11px;/*チェックの横幅*/
  transform: rotate(-45deg);
  top:  -5px;/*チェック時の位置調整*/
  left: 7px;/*チェック時の位置調整*/
}
input[type="checkbox"]:checked::after {
  opacity: 1;/*チェック後表示*/
}
.search-form input[type="text"]{
  font-size: 1rem;
	color: #333;
}
.search-form input[type="submit"]{
  cursor: pointer;
	text-align: center;
  font-family: FontAwesome;
  font-size: 1.3rem;
	border: none;
  color: #000;
	background: #fff;
  outline : none;
}
/* Safari */
_::-webkit-full-page-media, _:future, :root input[type="checkbox"]::after{
  top:  5px;
}
/* アコーディオンデザイン */
.accordion-002 {
    width: 90%;
    margin-top: 10px;
    border: 2px solid #000;
    border-radius: 5px;
}

.accordion-002 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.2em 1em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%2300c7c4%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #fff;
		background: #000;
    font-weight: 600;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {/* Safariで表示されるデフォルトの三角形アイコン */
    display: none;
}

.accordion-002 summary::before,
.accordion-002 summary::after {
    position: absolute;
    right: calc(2em + 2.5px);
    width: 3px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.accordion-002 summary::before {
    rotate: 90deg;
}

.accordion-002 summary::after {
    transition: rotate .3s;
}

.accordion-002[open] summary::after {
    rotate: 90deg;
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
}
/*再生用メニュー設定
---------------------------------------------------------------------------*/
.menu-player {
	display: flex;
	position: fixed;
	margin-left: -20px;
	padding: 5px 10px 20px 10px;
	bottom: 0;                       /* 下部固定 */
	background-color: #fff;
	box-shadow: 0px -10px 10px -10px #DCDDDD;
}
.menu-player td{
  border-bottom: 0px !important;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.look cite {
    display: block;
    color: #737373;
    font-size: .8em;
    text-align: right;
}
.ofx {overflow-x: hidden;}


/*---------------------------------------------------------------------------
ここから下は画面幅800px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;
}
/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
header #logo {
	margin: 0;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}
#hp_title {display: none;}
header {display: none;}

/*menubarブロック設定
---------------------------------------------------------------------------*/
#menubar {
	width: 180px;				    /*メニューブロックの幅*/
	left: 0px;top: 50px;		/*左から、上からの配置場所指定*/
	height: calc(100% - 50px);
	position: fixed;			  /*スクロールしても固定表示させる設定*/
}
/*マウスオン時*/
#menubar:hover {
	overflow: auto;
}

/*現在表示中のメニュー設定（current）*/
#menubar li.current a {
	background: #777;
	color: #fff;
}
#menubar h1 {
	-webkit-backface-visibility:hidden;
	backface-visibility: hidden;
  position: relative;
	display:  inline;
  font-size: 1.5rem;
	font-family: 'Antonio';
	line-height: 1.2;
}

#menubar h1::before {
    position: absolute;
		top:  15px;
		left: 50%;
    color: #00cccc;
    font-size: 0.8rem;
		transform: rotate(20deg);
    content: 'ARCHIVE';
    z-index: -1;
		font-family: 'Nothing You Could Do', cursive;
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*main,main2ブロックの設定*/
main {
	margin: 0px 0px 100px 230px;
	padding: 50px;
}
.main2 {
	margin: 70px 30px 100px 230px;
	height: 80%;
}
#box_main {
	padding: 0px;
}
.box_left , .box_right{
	width: 50%;
	padding: 10px;
}
.box_disc1{
	width:   40%;
	padding: 10px;
	left: 0;
  transform: translate(0%,0%);
}
.box_disc2{
	width:   60%;
	padding: 10px;
}
.card-1 {
  width: 25%;
}
/*youtube_playerブロック設定
---------------------------------------------------------------------------*/
.youtube {
	display: flex;
	margin: 0;
}
.video-wrap {
	margin: 20px;
	margin-left: 0px;
}
.menu-player {
	margin: 0;
	padding: 5px 10px;
}
.youtube_player {
	position:relative;
	width: 40%;
	float: left;
	margin: 0;
}
/*play_listブロック設定
---------------------------------------------------------------------------*/
.play_list {
	width: 60%;
	height: 90%;
	float: right;
	padding: 0px 20px;
}
.search-form{
	margin-right   : 0pt;
}
.search-form label {
  font-size: 0.9rem;
}
input[type="checkbox"]::after {
  top: -5px;/*チェック時の位置調整*/
}
.accordion-002 {
    width: 100%;
}

/*見出し関連設定
---------------------------------------------------------------------------*/
main h2 {
	font-size:    4rem;
	width:        60%;
}
/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}
