@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	text-align: left;
}
/* タイトル */
#header h1.title {
	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 {
		display: block;
	}
	#header h1.title {
		position: absolute;
		width: 250px;
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1;
		background: #fff;
		border-radius : 0px 0px 10px 0px;
		box-shadow: 0 0 4px rgba(38,45,67,0.15);
	}
	#header h1.title img {
		width: 196px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-red); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
		box-shadow: 0 0 4px rgba(38,45,67,0.15);
		display: block;
	}
	#header h1.title {
		width: 200px;
		height: 100%;
		padding: 10px;
	}
	#header h1.title img {
		width: 150px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu ul {
	position: relative;
	top: -50px;
	margin-left: auto;
	display: flex;
	column-gap: 30px;
	width: 1100px;
	margin: 0 auto;
	margin-bottom: -30px;
}
#menu ul li {
	width: 170px;
	height: 240px;
}
#menu ul li a {
	display: block;
	text-align: center;
	color: var(--color-font);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	background: #fff;
	width: 100%;
	height: 100%;
	padding-top: 35px;
	border-radius: 5px;
	box-shadow: 0 0 4px rgba(38,45,67,0.15);
	position: relative;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
#menu ul li a::before {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 18px;
	border: 1px solid var(--color-red);
	border-radius: 50%;
	display: inline-block;
}
#menu ul li a::after {
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	left: calc(50% - 2px);
	bottom: 36px;
	border-top: 1px solid var(--color-red);
	border-right: 1px solid var(--color-red);
	transform: translateX(-50%) rotate(45deg);
}
#menu ul li.on a,
#menu ul li a:hover {
	filter:alpha(opacity=100);
	position: relative;
	opacity: 1;
	transform: translateY(-40px);
}
#menu ul li a .ico {
	width: 58px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
#menu ul li a .en {
	color: #bdc0c6;
	font-size: 12px;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#sub_ttl.content {
	background: linear-gradient(rgba(51, 51, 51, 0.3)), url("../img/content/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.member {
	background: linear-gradient(rgba(51, 51, 51, 0.3)), url("../img/member/bg-title.jpg") no-repeat center top / cover;
}
#sub_ttl.achievement {
	background: linear-gradient(rgba(51, 51, 51, 0.3)), url("../img/achievement/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.feature {
	background: linear-gradient(rgba(51, 51, 51, 0.3)), url("../img/feature/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.news {
	background: linear-gradient(rgba(51, 51, 51, 0.3)), url("../img/info/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl span {
	color: #fff;
	letter-spacing : 16.5px;
	font-size: 33px;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 300px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 200px;
	}
	#sub_ttl span {
		letter-spacing : 5px;
		font-size: 25px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 40px;
	font-size: 33px;
	font-family: var(--font-sans);
	font-weight: 600;
	text-align: center;
	line-height: 1;
}
#container h3.sub .jp {
	font-size: 14px;
	color: #bdc0c6;
	margin-top: 10px;
	font-weight: normal;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 28px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 21px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	font-size: 14px;
	line-height: 1.6;
}
#footer #access {
	background: #f4f4f4;
	margin-bottom: 120px;
	padding: 0;
	width: 1100px;
	height: 400px;
}
#footer #access .info {
	padding: 50px 50px;
	position: relative;
	width: 50%;
}
#footer #access .info p.ttl {
	margin-bottom: 30px;
}
#footer #access .info p.ttl a {
	color: #262d43;
	font-size: 34px;
	font-weight: 500;
	line-height: 1.4;
}
#footer #access .info p.ttl a .fs {
	font-size: 18px;
	font-weight: normal;
}
#footer #access .info p.txt {
	font-size: 110%;
	line-height: 1.875;
}
#footer #access .info p.txt.address {
	margin-left: 62px;
	text-indent: -62px;
}
#footer #access .info p.txt.tel {
	margin-left: 46px;
	text-indent: -46px;
}
#footer #access iframe {
	width: 50%;
	height: 100%;
	display: block;
}
/* リンク */
#footer .link {
	background: #262d43;
}
#footer .link ul {
	padding: 14px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #9296a1;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #9296a1;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer #access {
		width: 100%;
		margin-bottom: 40px;
	}
	#footer #access .info {
		padding: 20px;
	}
	#footer #access .info p.ttl a {
		font-size: 30px;
	}
	#footer #access .info p.ttl a .fs {
		font-size: 16px;
	}
	#footer #access .info p.txt {
		font-size: 100%;
	}
	#footer #access .info p.txt.address {
		margin-left: 4.2em;
		text-indent: -4.2em;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
	#footer #access .info p.txt.tel {
		margin-left: 3em;
		text-indent: -3em;
	}
	#copyright {
		width: 100%;
		text-align: center;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer #access {
		height: auto;
		margin-bottom: 0;
	}
	#footer #access .info {
		width: 100%;
		padding-bottom: 30px;
	}
	#footer #access .info p.ttl {
		margin-bottom: 20px;
	}
	#footer #access .info p {
		text-align: center;
	}
	#footer #access .info p.txt.address, #footer #access .info p.txt.tel {
		margin-left: 0;
		text-indent: 0;
	}
	#footer #access iframe {
		width: 100%;
		height: 200px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 120px; }
.pb { padding-bottom: 120px; }
@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;
	}
}
/*------------------------------------------------*/
.btn01 a {
	width: 130px;
	line-height: 36px;
	border: 1px solid var(--color-red);
	position: relative;
	display: block;
	color: #262d43;
	padding-left: 12px;
	padding-bottom: 2px;
	border-radius: 5px;
	background: #fff;
}
.btn01 a::after {
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	right: 8px;
	top: calc(50% - 3px);
	border-top: 1px solid var(--color-red);
	border-right: 1px solid var(--color-red);
	transform: translateX(-50%) rotate(45deg);
}
.btn01 a:hover {
	background: var(--color-red);
	color: #fff;
	filter:alpha(opacity=100);
	opacity: 1;
}
.btn01 a:hover::after {
	border-color: #fff;
}
/* テーブル */
.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 {
	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; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
