@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 60px;
	padding: 10px 15px;
	background: #000;
	text-align: left;
}
/* タイトル */
#header h1.title {
	width: 170px;
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	object-position: left;
	width: 100%;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1;
	}
	#header .contact {
		display: none;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #000; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		z-index: 9997;
		justify-content: flex-start;
	}
	#header h1.title {
		width: 150px;
		height: 100%;
		padding: 10px;
	}
	/* お問い合わせ */
	#header .contact .tel a,
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title {
		width: 150px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-right: 30px;
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 35px;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
}
#menu li.on a,
#menu li a:hover {
	color: var(--color-primary);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--color-gold);
}
#menu li a span {
	color: #999;
	font-size: 12px;
	display: block;
}
#menu ul li.dsp_tbs {
	display: none;
}
#menu ul.sns {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 290px;
	color: #fff;
	font-size: 100px;
	font-family: var(--font-antonio);
	line-height: 1.2;
}
#sub_ttl .ja {
	display: block;
	font-size: 20px;
	font-family: var(--font-sans);
	font-weight: 500;
}
#sub_ttl.club {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/club/bg-title.jpg") no-repeat center top / cover;
}

#sub_ttl.team {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/team/bg-title.jpg") no-repeat center top / cover;
}
#sub_ttl.staff {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/staff/bg-title.jpg") no-repeat center top / cover;
}
#sub_ttl.featured {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/info/bg-title.jpg") no-repeat center top / cover;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 200px;
		font-size: 70px;
	}
	#sub_ttl .ja {
		font-size: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 150px;
		font-size: 40px;
	}
	#sub_ttl .ja {
		font-size: 12px;
	}
}

/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	padding-top: 60px;
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 80px;
	font-size: 80px;
	font-family: var(--font-antonio);
	font-weight: 500;
	text-align: center;
	line-height: 1;
}
#container h3.sub::first-letter {
	color: var(--color-red);
}
#container h3.sub span:not(.red) {
	color: var(--color-red);
	font-family: var(--font-sans);
	font-size: 16px;
	margin-top: 40px;
	display: block;
}
#container h4.sub02 {
	text-align: center;
	font-family: var(--font-serif);
	font-size: 55px;
	color: var(--color-red);
	letter-spacing: 0.05em;
	margin: 80px 0 50px;
}
#container h4.sub02 .small {
	font-size: 70%;
	color: var(--color-font);
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 40px;
	}
	#container h3.sub span:not(.red) {
		font-size: 14px;
		margin-top: 20px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	#container h4.sub02 {
		font-size: 35px;
		margin: 40px 0 25px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		font-size: 30px;
	}
	#container h3.sub span:not(.red) {
		font-size: 13px;
		margin-top: 10px;
	}
	#container h4.sub02 {
		font-size: 27px;
		margin: 30px 0 20px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media only screen and (max-width: 320px){
	.main {
		padding-left: 15px;
		padding-right: 15px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: #000;
	font-size: 14px;
	line-height: 1.6;
}
#footer .logo_area {
	padding-top: 80px;
}
#footer .logo_area .ttl img {
	width: 103px;
}
/* リンク */
#footer .link {
	padding-top: 50px;
	background: url("../img/bg-footer.jpg") no-repeat top / cover;
}
#footer .link .sns {
	display: flex;
	justify-content: center;
	gap: 0 30px;
	margin-bottom: 60px;
}
#footer .link .sns li {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
}
#footer .link .sns li img {
	width: 30px;
}
#footer .link .sns li.x img {
	width: 25px;
}
#footer .link .sns li.tik img {
	width: 40px;
}
#footer .link .sns li.mail img {
	width: 24px;
}
#footer .link .f_menu {
	margin-bottom: 10px;
}
#footer .link .f_menu li {
	display: inline;
	margin-right: 70px;
	list-style: none;
}
#footer .link .f_menu li:last-of-type {
	margin-right: 0;
}
#footer .link .f_menu li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link .f_menu li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	padding: 15px 0;
	color: #999;
	font-size: 12px;
	text-align: center;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .logo_area {
		padding-top: 30px;
	}
	#footer .logo_area .ttl img {
		width: 80px;
	}
	#footer .link {
		padding-top: 30px;
	}
	#footer .link .sns {
		margin-bottom: 20px;
		gap: 0 20px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .link .sns {
		flex-wrap: wrap;
		gap: 15px;
		width: 240px;
		margin: 0 auto 15px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.mt { margin-top: 110px; }
.mb { margin-bottom: 110px; }
.pt { padding-top: 110px; }
.pb { padding-bottom: 110px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 50px;
	padding-top: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
}
@media only screen and (max-width: 640px){ /* スマホ */
	.tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	.tbl th,
	.tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp,
.box_flex_htb {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.box_flex_htb {
		display: block;
	}
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
