@charset "utf-8";

/*-------------------------------------------------------!important*/
/*----------------------------------------------------------### ↓↓↓*/
/*----------------------------------------------------------### ↑↑↑*/
/*-------------------------------------------------------------------.php ↓↓↓*/
/*-------------------------------------------------------------------.php ↑↑↑*/

body {
	text-align: center;
	margin: 0 auto;
	min-width: 1200px;
}

.pc-only {
	display: inline;
}

.sp-only {
	display: none;
}

h3.title_roboto {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 30px;
	margin-bottom: 50px;
}

.center_line {
	width: 1px;        /* 線の太さ */
	height: 50px;      /* 線の長さ */
	background-color: #000; /* 線の色 */
	margin: 100px auto;    /* div自身の中で中央に置く */
}

.btn_view {
	margin-bottom: 30px;
}

.btn_view a {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 16px;
	display: inline-block;       /* ブロック要素扱いにして padding を効かせる */
	color: #fff;                 /* 文字色を白に */
	background-color: #000;      /* 背景を黒に */
	padding: 0.75em 1.5em;       /* 上下・左右の余白（お好みで調整） */
	border-radius: 9999px;       /* 両端を丸く */
}

/*------------------------------------------------profile color ↓↓↓*/

.bg_fujimoto_ui {
	background: #33c1ff;
}

.bg_fujiki_mana {
	background: #ff0000;
}

.bg_nonosaki_miki {
	background: #e2e2e2;
}

.bg_amami_ten {
	background: #74e281;
}

.bg_uno_rinno {
	background: #c45fff;
}

.bg_sasami_hanna {
	background: #ffd140;
}

.bg_asakura_misaki {
	background: #fc77b7;
}

/*------------------------------------------------profile color ↑↑↑*/
/*-------------------------------------------------------header ↓↓↓*/

header {
	width: 100%;
	background: #000;
}

.header_wrap {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.header_wrap_logo {
	padding: 15px 0 15px;
}

#top_menu_btn {
	display: none;
}

#close_btn {
	display: none;
}

.header_wrap_menu {
	width: 800px;
	padding-top: 34px;
}

.header_wrap_menu ul {
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: space-between; /* 左端・右端に等間隔で配置 */
}

.header_wrap_menu ul li h4 {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #FFF;
}

/*-------------------------------------------------------header ↑↑↑*/
/*-------------------------------------------------------footer ↓↓↓*/

footer {
	background: #000;
	padding: 20px 0 20px;
}

.footer_sns  {
	padding-top: 50px;
	margin-bottom: 50px;
}

.footer_sns ul {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}

.footer_sns ul li {
	margin-left: 40px;
}

.footer_sns ul li a img {
	width: 50px;
}


footer h5 {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 14px;
	padding: 20px 0;
}

/*-------------------------------------------------------footer ↑↑↑*/
/*-------------------------------------------------------------------index.php ↓↓↓*/
/*-------------------------------------------------header_photo ↓↓↓*/

section.header_photo {
	width: 1200px;
	margin: 0 auto;
}

section.header_photo img {
	width: 1200px;
	height: 800px;
	padding-top: 50px;
}

/*-------------------------------------------------header_photo ↑↑↑*/
/*-------------------------------------------------header_video ↓↓↓*/

section.header_video {
	position: relative;    /* 子要素の絶対配置を可能に */
	width: 100%;
	height: 900px;         /* ご指定の高さ */
	overflow: hidden;      /* はみ出した部分を隠す */
}

section.header_video video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;       /* 横幅は最低でも100% */
	min-height: 100%;      /* 高さも最低100% */
	width: auto;           /* アスペクト比維持 */
	height: auto;          /* アスペクト比維持 */
	transform: translate(-50%, -50%);
	object-fit: cover;     /* 見切れOKの場合の拡大・切り抜き */
	z-index: -1;           /* コンテンツを前面に出す */
}

/*-------------------------------------------------header_video ↑↑↑*/
/*----------------------------------------------------index_top ↓↓↓*/

.index_top_title h3 {
	padding-top: 100px;
	margin-bottom: 100px;
}

.index_top_title h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-style: normal;
	color: #000;
	font-size: 40px;
}

.index_top_text p {
	font-family: "Zen Old Mincho", serif;
	font-weight: 300;
	font-style: normal;
	color: #000;
	font-size: 24px;
	line-height: 50px;
}

/*----------------------------------------------------index_top ↑↑↑*/
/*----------------------------------------------index_top_photo ↓↓↓*/

.index_top_photo {
	width: 100%;
	margin-bottom: 50px
}

.slider-wrapper {
	width: 100%;       /* 親要素に合わせて横幅100% */
	height: 350px;     /* 高さ固定 */
	overflow: hidden;  /* はみ出し部分を隠す */
}

.slider-track {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 20px;                       /* 画像間の隙間を20pxに */
	animation: scroll-left 30s linear infinite;
}

.slider-track li {
	flex: 0 0 auto;                 /* 幅は内容（画像）に合わせる */
}

.slider-track img {
	display: block;
	width: 600px;                    /* 元画像サイズに固定 */
	height: 350px;
	object-fit: cover;               /* はみ出しはトリミング */
}

@keyframes scroll-left {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
  
/*----------------------------------------------index_top_photo ↑↑↑*/
/*-----------------------------------------------index_schedule ↓↓↓*/

.index_schedule {
	margin-bottom: 120px;
}

.index_schedule_timetree iframe {
	width: 1100px;
	aspect-ratio: 680/450;
	border: none;
}

.index_schedule_timetree {
	margin-bottom: 50px;
}

/*-----------------------------------------------index_schedule ↑↑↑*/
/*--------------------------------------------------index_video ↓↓↓*/

.index_video {
	margin-bottom: 100px;
}

.index_video_content {
	width: 100%;
	margin: 0 auto 50px;
	display: flex;
	overflow-x: hidden;
}

.index_video_box {
	width: 900px;
}

.index_video_box iframe {
	width: 900px;
	height: 506px;
}

/* コンテナは幅100%。overflow:visible で覗かせる */
.mySwiper {
	position: relative;
	width: 100%;
	overflow: visible;
	margin-bottom: 50px;
}

/* ---- スライド本体 ---- */
.mySwiper .swiper-slide {
	width: 900px;                    /* ← 900px 固定幅 */
	height: 506px;                   /* ← 506px 固定高さ */
	flex-shrink: 0;                  /* 幅を勝手に縮めさせない */
	border-radius: 12px;
	background: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

/* ---- モバイル対応 ---- */
@media (max-width: 960px) {
	/* 幅900px入らないときだけ、画面幅から余白を引いた分にリサイズ */
	.mySwiper .swiper-slide {
		width: calc(100% - 64px);      /* → 左右 32px ずつ覗かせる */
		height: auto;                  /* 高さは比率で計算 */
		aspect-ratio: 900 / 506;       /* 900:506 を保持 */
	}
}

/* ナビボタン位置などはお好みで */
.swiper-button-prev,
.swiper-button-next {
	color: #000;
}

/* ナビ用透明領域をセンターに */
.nav-container {
	position: absolute;
	/* スライドサイズに合わせる（固定幅なら px、レスポンシブなら %） */
	z-index: 9999 !important; 
	width: 1050px;             
	height: 506px;            
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;     /* 背景へのクリックを透過 */
}

/* ボタン共通 */
.nav-container .swiper-button-prev,
.nav-container .swiper-button-next {
	position: absolute;
	top: 50%;
	width: 48px;
	height: 48px;
	transform: translateY(-50%);
	pointer-events: auto;     /* ボタンのみクリック可能 */
	z-index: 10;
}

/* 左右端に寄せる */
.nav-container .swiper-button-prev {
	left: 0;
}
.nav-container .swiper-button-next {
	right: 0;
}

/* ボタンを常に最前面に */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;      /* すでに設定済みだとしても */
	z-index: 9999 !important; 
	pointer-events: all !important;
	cursor: pointer !important;
}

/* スライダー本体に余白を確保 */
.swiper.mySwiper {
	position: relative;
	padding-bottom: 30px; /* pagination 高さ分＋余裕 */
}

/* pagination をコンテナの下端に */
.swiper.mySwiper .swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

/*--------------------------------------------------index_video ↑↑↑*/
/*------------------------------------------------index_youtube ↓↓↓*/

.index_youtube {
	margin-bottom: 100px;
}

.index_youtube_content {
	width: 1200px;
	margin: 0 auto 50px;
	display: flex;
	align-items: center;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: space-between; /* 左端・右端に等間隔で配置 */
}

.index_youtube_box {
	width: 560px;
}

.index_youtube_box iframe {
	width: 560px;
	height: 315px;
}

/*------------------------------------------------index_youtube ↑↑↑*/
/*-------------------------------------------index_subscription ↓↓↓*/

.index_subscription_wrap_circle {
	width: 800px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: space-between; /* 左端・右端に等間隔で配置 */
}

.index_subscription_circle_box h5 {
	font-size: 14px;
	line-height: 18px;
}

.index_subscription_circle_box {
	position: relative;
}

.index_subscription_circle_box a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	/* 透明なので子要素は下に見える */
	background: transparent;
	/* クリックを確実に拾うために z-index を上げる */
	z-index: 1;
}

.index_subscription_circle {
	/* コンテナのサイズ */
	width: 80px;
	height: 80px;
	margin-bottom: 5px;
}
  
/*-------------------------------------------index_subscription ↑↑↑*/
/*------------------------------------------------------index_x ↓↓↓*/

.index_x_timeline {
	width: 800px;             /* お好みで */
	margin: 0 auto 50px;           /* 中央寄せ */
	height: 600px;            /* 表示領域の高さを固定 */
	overflow-y: auto;         /* はみ出したらスクロール */
	border: 1px solid #ccc;   /* スクロールエリアを囲む枠線 */
}
  
/* iframe 自体は親コンテナがスクロールを制御するので auto に */
.index_x_timeline iframe {
	width: 800px !important;
	border: none !important;
}

/*------------------------------------------------------index_x ↑↑↑*/
/*--------------------------------------------------index_store ↓↓↓*/

.index_store {
	width: 100%;
	background: #000;
	padding: 90px 0 70px;
}

.index_store img {
	margin-bottom: 20px;
}

.index_store h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 60px;
	color: #FFF;
	margin-bottom: 60px;
}

.index_store_btn a{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 36px;
	display: inline-block;       /* ブロック要素扱いにして padding を効かせる */
	color: #000;                 /* 文字色を白に */
	background-color: #fff;      /* 背景を黒に */
	padding: 0.3em 2em;       /* 上下・左右の余白（お好みで調整） */
	border-radius: 9999px;       /* 両端を丸く */
}

/*--------------------------------------------------index_store ↑↑↑*/
/*-------------------------------------------------------------------index.php ↑↑↑*/
/*-------------------------------------------------------------------profile.php ↓↓↓*/
/*--------------------------------------------------profile_top ↓↓↓*/

.profile_top {
	padding-top: 50px;
	margin-bottom: 100px;
}

.profile_top img {
	margin-bottom: 50px;
}

.profile_top p {
	font-family: "Zen Old Mincho", serif;
	font-weight: 300;
	font-style: normal;
	color: #000;
	font-size: 24px;
	line-height: 50px;
}


/*--------------------------------------------------profile_top ↑↑↑*/
/*---------------------------------------------member_container ↓↓↓*/

.profile_container {
	width: 1200px;
	margin: 60px auto;
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: space-evenly; /* 左端・右端に等間隔で配置 */
	flex-wrap: wrap;
}

.profile_box {
	position: relative;
	width: 240px;
	margin: 0 20px;
	padding-bottom: 50px;
}



/* aタグをボックス全面に広げる */
.profile_box > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;    /* ブラウザによっては必要 */
	z-index: 200;       /* 他の要素より手前にくるように */
	/* リンクテキストがない場合の対策としてテキストインデント */
	text-indent: -9999px;
	overflow: hidden;
}

.profile_box_img_container {
	z-index: 100;
	position: relative;
}

/* 親コンテナ */
.profile_box_img_container {
	position: relative;  /* 子要素の絶対配置の基準 */
	width: 240px;
	height: 340px;
	margin-bottom: 30px;
}

/* 画像を包む要素 */
.profile_box_img {
	position: relative;  /* 背景より前面に表示 */
	z-index: 50;
	width: 100%;
	height: 100%;
}

/* img 要素 */
.profile_box_img img {
	display: block;      /* 下の余白を消す */
	width: 100%;
	height: 100%;
	object-fit: cover;   /* アスペクト比を保って領域にフィット */
}

/* 背景の黒い四角 */
.profile_box_img_bg {
	position: absolute;  /* コンテナ基準で自由に配置 */
	top: 10px;           /* 上から20px下げる */
	left: 10px;          /* 左から20px右へずらす */
	width: 240px;
	height: 340px;
	z-index: 10;          /* 画像より背面に */
}

.profile_box h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 300;
	font-style: normal;
	color: #000;
	font-size: 22px;
	line-height: 20px;
}

/*---------------------------------------------member_container ↑↑↑*/
/*-------------------------------------------------------------------profile.php ↑↑↑*/
/*-------------------------------------------------------------------profile member.php ↓↓↓*/
/*--------------------------------------------member_individual ↓↓↓*/

.member_individual {
	width: 1200px;
	margin: 0 auto 100px;
	padding-top: 100px;
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: space-evenly; /* 左端・右端に等間隔で配置 */
}

.member_individual_text {
	text-align: left;
	position: relative;
	padding-top: 30px;
}

.member_individual_text h1 {
	position: relative;
	z-index: 100;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-style: normal;
	color: #000;
	font-size: 40px;
	margin: 0 0 10px 40px;
}

.member_individual_text h2 {
	position: relative;
	z-index: 100;
	font-family: 'Roboto', sans-serif;
	font-weight: 800;
	font-size: 18px;
	margin: 0 0 70px 40px;
}

.member_individual_text ul {
	position: relative;
	z-index: 100;
	margin: 0 0 60px 40px;
}

.member_individual_text ul li {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 16px;
}

.member_individual_text ul li h3 {
	display: inline-block;
}

.member_individual_text_bg {
	position: absolute;
	top: 45px;
	left: 0;
	z-index: 10;
	display: block;           /* ブロック要素にしたくない場合は inline-block に */
	width: 80px;             /* 円の直径 */
	height: 80px;            /* 幅と高さは同じにする */
	border-radius: 50%;       /* 丸くする */
}

.member_sns_circle_box {
	width: 450px;
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: flex-end;
}

.member_sns_circle {
	margin: 0 10px
}

/*--------------------------------------------member_individual ↑↑↑*/
/*-------------------------------------------------other_member ↓↓↓*/

.other_member_box {
	position: relative;
	width: 160px;
	margin: 0 20px;
}

/* aタグをボックス全面に広げる */
.other_member_box > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;    /* ブラウザによっては必要 */
	z-index: 200;       /* 他の要素より手前にくるように */
	/* リンクテキストがない場合の対策としてテキストインデント */
	text-indent: -9999px;
	overflow: hidden;
}

.other_member_box_img {
	position: relative;
	width: 170px;
	padding-bottom: 20px
}

.other_member_box_img img{
	width: 160px;
	z-index: 100;
	position: relative;
}

.other_member_box_bg {
	z-index: 10;
	position: absolute;
	width: 160px;
	height: 227px;
	top: 5px;
	right: 0;
}

.other_member_box h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 16px;
}

.other_member_line {
	display: flex;
	width: 1200px;
	margin: 0 auto 50px;
}

/*-------------------------------------------------other_member ↑↑↑*/
/*-------------------------------------------------------------------profile member.php ↑↑↑*/
/*-------------------------------------------------------------------history.php ↓↓↓*/
/*--------------------------------------------------history_top ↓↓↓*/

.history_top {
	margin-bottom: 100px;
}

/*--------------------------------------------------history_top ↑↑↑*/
/*-----------------------------------------------history_middle ↓↓↓*/

.timeline_continer {
	list-style: none;
	width: 1000px;
	margin: 0 auto 80px;
}

.timeline_continer > li {
	overflow: hidden;
	margin: 0;
	position: relative;
	display: flex;
}

.timeline_year {
	width: 150px;
	font-family: 'Roboto', sans-serif;
	font-weight: 800;
	font-size: 40px;
	color: #bbb;
}

.timeline_month {
	width: 40px;
	text-align: right;
}

.timeline_content {
	text-align: left;
	border-left: 2px #000 solid;
	padding:  0 0 40px 20px;
	margin: 0 0 0 0;
}

.timeline_content:before {
	content: '';
	width: 10px;
	height: 10px;
	background: #000;
	position: absolute;
	left: 146px;
	top: 12px;
	border-radius: 100%;
}

.timeline_content {
	display: flex;
	align-items: flex-start;            /* 垂直方向の中央揃え（必要に応じて） */
	justify-content: flex-start;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
}

.timeline_text_box {
	margin: 0 0 0 15px
}

.timeline_badge {
	display: inline-block;
	margin-left: 10px;
	padding: 0 1em;
	border-radius: 9999px;
	background-color: #000;
	color: #fff;
	font-size: 0.8rem;
}

/*-----------------------------------------------history_middle ↑↑↑*/
/*------------------------------------------history_achievement ↓↓↓*/

.history_achievement {
	width: 100%;
	background: #000;
	padding: 30px 0 30px;
}

.history_achievement > h2 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 50px;
	color: #FFF;
}

/*------------------------------------------history_achievement ↑↑↑*/
/*-----------------------------------------------history_others ↓↓↓*/

.history_others {
	width: 700px;
	margin: 0 auto;
	text-align: left;
	padding-top: 70px;
	margin-bottom: 50px;
}

.history_others h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 50px;
}

.history_others_list {
	border-left: 2px solid #000;
	padding-left: 30px;
	margin-left: 15px;
}

.history_others_list li {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 18px;
	margin: 20px 0;
	padding: 10px 0;
}

.history_others_list ul li::marker {
	content: "・"; 
}

/*-----------------------------------------------history_others ↑↑↑*/
/*---------------------------------------------history_vertical ↓↓↓*/

.history_vertical {
	position: relative;
	width: 100%;
	height: 1000px;
	overflow: hidden; /* はみ出してもスクロールさせない */
	background: #fff;
	padding: 50px 0;
}

.history_vertical h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	/* 横・縦中央寄せ */
	transform: translate(-50%, -50%);
	/* 縦書き指定 */
	writing-mode: vertical-rl;       /* 上から下へ・行方向は右から左 */
	text-orientation: upright;      /* 文字は立て向き */
	white-space: nowrap;            /* 一行を改行させない */
	z-index: 100;
}

.history_vertical img {
	position: absolute;
	object-fit: cover;
}

.history_vertical_001 {
	left: calc(50% - 800px);
	top: 70px;
}

.history_vertical_002 {
	left: calc(50% - 600px);
	top: 450px;
}

.history_vertical_003 {
	left: calc(50% - 850px);
	top: 730px;
}

.history_vertical_004 {
	left: calc(50% +  160px);
	top: 40px;
}

.history_vertical_005 {
	left: calc(50% + 250px);
	top: 370px;
}

.history_vertical_006 {
	left: calc(50% + 200px);
	top: 760px;
}

/*---------------------------------------------history_vertical ↑↑↑*/
/*-------------------------------------------------------------------history.php ↑↑↑*/
/*-------------------------------------------------------------------regulation.php ↓↓↓*/
/*------------------------------------------------regulation_top ↓↓↓*/

.regulation_top {
	width: 100%;
	background: #000;
	color: #FFF;
	padding: 40px 0 40px;
}

.regulation_top h2 {
	font-family: 'Roboto', sans-serif;
	font-style: italic;
	font-weight: 800;
	font-size: 50px;
	margin-bottom: 5px;
}

.regulation_top p {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 28px;
}

/*------------------------------------------------regulation_top ↑↑↑*/
/*--------------------------------------------regulation_picture ↓↓↓*/

.regulation_picture {
	width: 100%;
	padding-top: 50px;
	border-bottom: 1px solid #000;
}

.regulation_picture h3 {
	position: relative;      /* 疑似要素位置の基準に */
	display: block;   /* 内容幅に合わせつつ幅指定可能に */
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 28px;
	margin-bottom: 50px;
}

.regulation_picture h3::after {
	content: "";
	position: absolute;
	/* 線を文字中央に合わせる */
	left: 50%;
	transform: translateX(-50%);
	/* テキストからの垂直距離 */
	bottom: -12px;
	/* 線の長さ・太さ */
	width: 180px;    /* お好みで調整 */
	height: 3px;    /* お好みで調整 */
	background-color: #000;
}

.regulation_picture img {
	padding-bottom: 100px;
}

/*--------------------------------------------regulation_picture ↑↑↑*/
/*-----------------------------------------------regulation_text ↓↓↓*/

.regulation_text {
	padding: 50px 0 50px;
}

.regulation_text_box {
	margin: 0 auto 30px;
	width: 900px;
	text-align: left;
}

.regulation_text_box h4 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-size: 18px;
	display: inline-block;       /* ブロック要素扱いにして padding を効かせる */
	color: #fff;                 /* 文字色を白に */
	background-color: #000;      /* 背景を黒に */
	padding: 0.6em 1.2em;       /* 上下・左右の余白（お好みで調整） */
	border-radius: 9999px;       /* 両端を丸く */
	margin-bottom: 20px;
}

.regulation_text_box ul li {
	position: relative;
	padding-left: 1.2em;  /* “・”＋テキスト間のスペース分 */
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 12px;
	line-height: 22px;
}

.regulation_text_box ul li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.regulation_text_box ul li.regulation_text_box_square::before {
	content: "■";
}

/*-----------------------------------------------regulation_text ↑↑↑*/
/*---------------------------------------------regulation_bottom ↓↓↓*/

.regulation_bottom {
	width: 100%;
	background: #000;
	color: #FFF;
	padding: 40px 0 40px;
}

.regulation_bottom p {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 34px;
}

/*---------------------------------------------regulation_bottom ↑↑↑*/
/*-------------------------------------------------------------------regulation.php ↑↑↑*/
/*-------------------------------------------------------------------music.php ↓↓↓*/
/*--------------------------------------------------music_video ↓↓↓*/

.music_video {
	padding-top: 100px;
}

.music_video_list {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly; /* 左端・右端に等間隔で配置 */
	flex-wrap: wrap;
}

.music_video_list_box {
	margin-bottom: 70px;
}

.music_video_list_box iframe {
	width: 453px;
	height: 253px;
	margin-bottom: 10px;
}

.music_video_list_box_text h2 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 34px;
}

/*--------------------------------------------------music_video ↑↑↑*/
/*-------------------------------------------------------------------music.php ↑↑↑*/
/*-------------------------------------------------------------------contact.php ↓↓↓*/
/*------------------------------------------------contact_error ↓↓↓*/

.contact_error {
	padding-top: 80px;
}

.contact_error p {
	color: #F36;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

/*------------------------------------------------contact_error ↑↑↑*/
/*----------------------------------------------contact_message ↓↓↓*/

.contact_message {
	padding-top: 80px;
}

.contact_message p {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

/*----------------------------------------------contact_message ↑↑↑*/
/*------------------------------------------contact_message_end ↓↓↓*/

.contact_message_end {
	padding-top: 200px;
	margin-bottom: 50px;
}

.contact_message_end p {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 50px;
}

/*------------------------------------------contact_message_end ↑↑↑*/
/*-------------------------------------------------contact_form ↓↓↓*/

.contact_form {
	padding-top: 100px;
	margin-bottom: 200px;
}

.contact_form_content_row {
	margin: 0 auto 50px;
	width: 800px;
	text-align: left;
}

.contact_form_content_row_title {
	margin-bottom: 15px;
}

.contact_form_content_row_title p {
	font-size: 16px;
	font-weight: 900;
}


.contact_form_content_row_input_text input {
	width: 764px;
	padding: 15px 15px;
	font-size: 16px;
	border: 3px solid #000;
}

.contact_form_content_row_input_text textarea {
	width: 764px;
	padding: 15px 15px;
	font-size: 16px;
	border: 3px solid #000;
}

.input_btn {
	border: 3px solid #000;
	background: none;
	padding: 0.7em 2em;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 30px;
	cursor: pointer;
}

/*-------------------------------------------------contact_form ↑↑↑*/
/*-------------------------------------------------------------------contact.php ↑↑↑*/
/*-------------------------------------------------------------------news.php ↓↓↓*/
/*-----------------------------------------------------news_top ↓↓↓*/

.news_top {
	padding-top: 100px;
	margin-bottom: 50px;
}

/*-----------------------------------------------------news_top ↑↑↑*/
/*----------------------------------------------------news_list ↓↓↓*/

.news_list {
	width: 1200px;
	margin: 0 auto;
}

.news_list ul {
	margin-bottom: 100px;
}

.news_list ul li {
	position: relative;
	z-index: 100;
	width: 900px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 20px;
	border-bottom: 1px solid #000;
	display: flex;
	margin: 0 auto;
	padding: 50px 50px 50px;
}

.news_list ul li a {
	position: absolute;
	z-index: 500;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news_date {
	position: relative;
	z-index: 200;
	line-height: 1.5em;
}

.news_title {
	position: relative;
	z-index: 200;
	margin-left: 40px;
	text-align: left;
	line-height: 1.5em;
}

/*----------------------------------------------------news_list ↑↑↑*/
/*-------------------------------------------------------------------news.php ↑↑↑*/
/*-------------------------------------------------------------------news_0000.php ↓↓↓*/
/*-------------------------------------------------news_content ↓↓↓*/

.news_content {
	width: 1000px;
	margin: 100px auto 100px;
	font-family: 'Roboto', sans-serif;
}

.news_content_date {
	text-align: left;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 20px;
}

.news_content_title {
	text-align: left;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5em;
	margin-bottom: 50px;
}

.news_content_text {
	text-align: left;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.8em;
}

/*-------------------------------------------------news_content ↑↑↑*/
/*-------------------------------------------------------------------news_0000.php ↑↑↑*/
/*-------------------------------------------------------------------.php ↓↓↓*/
/*-------------------------------------------------------------------.php ↑↑↑*/
/*----------------------------------------------------------### ↓↓↓*/
/*----------------------------------------------------------### ↑↑↑*/