@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
	font-size: 15px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	color: #243757;
	transition: .4s;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0 100px;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 37px 0 50px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.4em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
.fbold {
	font-weight: 500;
	letter-spacing: 0.14em;
	margin-left: 2px;
	margin-right: 2px;
}
/*見出し01*/
.maintitle {
	margin-bottom: 35px;
	display: block;
	text-align: center;
	line-height: 1.5;
}
.maintitle .mf {
	font-size: 75%;
	color: #243757;
}
.maintitle .sf {
	text-align: center;
	font-size: clamp(1.5rem, 1.02rem + 1.7067vw, 2.3rem);
	margin-bottom: 10px;
}
@media (max-width: 550px) {
	.maintitle {
		margin-bottom: 25px;
	}
	.maintitle .mf {
		font-size: 55%;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 600;
	position: relative;
	margin-bottom: 23px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 1rem + 0.5333vw, 1.4rem);
	line-height: 1.5;
}
.mtitle span {
	font-size: 75%;
	color: #243757;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 600;
	position: relative;
	font-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 13px;
	padding-bottom: 5px;
	padding-left: 2px;
	color: #333;
}
.stitle span {
	font-size: 80%;
	margin-left: 7px;
}
.stitle::before {
	content: '';
	position: absolute;
	bottom: -1px;
	width: 100px;
	height: 1px;
	background: #243757;
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #243757;
	transition: .4s;
	display: inline-block;
	width: 16.5rem;
	text-align: center;
	color: #fff;
	background: #243757;
	z-index: 1;
	overflow: hidden;
	font-size: 1rem;
}
.mainbtn a:hover {
	color: #243757;
	background: #fff;
	transition: .4s;
}
.mainbtn a::after {
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .7em;
	transition: .1s;
}
.whitebtn a {
	border: 1px solid #fff;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 60%;
		padding: 5px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 10px;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
.aic {
	align-items: center;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.w63 {
	width: 63%;
}
.w55 {
	width: 55%;
}
.w50 {
	width: 50%;
}
.w48 {
	width: 48.5%;
}
.w32 {
	width: 32%;
}
.w24 {
	width: 24%;
}
/* 背景 */
.bg_grey::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #f7f7f7;
	z-index: -20;
}
/*=== 共通部分ここまで ===*/
/* ハンバーガーメニュー */
/* ハンバーガーメニュー ボタン */
#toggle {
	position: absolute;
	top: 20px;
	right: 30px;
}
.is-open #toggle {
	position: fixed;
}
#toggle-box {
	position: relative;
	width: 33px;
	height: 19px;
	cursor: pointer;
}
#toggle-box > span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: #000;
	position: absolute;
	transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}
.top_toggle #toggle-box > span {
	background: #fff;
}
#toggle-box > span:nth-child(1) {
	top: 0;
}
#toggle-box > span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
	bottom: 0;
}
#toggle {
	z-index: 1000;
}
/* ハンバーガーメニュークリック ボタン */
.is-open #toggle-box > span {
	background: #fff;
}
.is-open #toggle-box > span:nth-child(1) {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
	width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
	top: 50%;
	transform: rotate(-45deg) translatey(-50%);
}
.is-open #nav-content {
	z-index: 999;
	transform: translateX(0);
}
/* ハンバーガーメニュー nav-content */
#nav-content {
	z-index: 900;
	overflow: auto;
	width: 335px;
	height: 100%;
	background: #000;
	color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	text-align: center;
	transform: translateX(100%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-content nav {
	height: fit-content;
	position: relative;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 0 30px;
}
#nav-content ul {
	list-style: none;
	text-align: left;
	margin-bottom: 17px;
}
#nav-content li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 15px 0;
	transition: opacity .6s ease;
	font-size: 0.95rem;
	line-height: 1.65;
}
#nav-content li a span {
	font-size: 80%;
}
.hmini a {
	position: relative;
	font-size: 80%;
	padding-top: 0 !important;
}
.hmini a::before {
	content: "∟";
	display: inline-block;
	font-weight: bold;
	margin-right: 5px;
	margin-left: 5px;
	color: #fff;
	font-size: 0.8rem;
	transform: translateY(-1px);
	opacity: 0.7;
}
#nav-content a:hover {
	opacity: 0.6;
}
/* nav-content mainbtn */
#nav-content .mainbtn {
	text-align: left;
	margin-bottom: 7px;
}
#nav-content .mainbtn a {
	padding: 6px 0;
	width: 250px;
	border: 1px solid #ffd700;
}
#nav-content .mainbtn a:after {
	content: none;
}
@media (max-width: 650px) {
	#nav-content .mainbtn a {
		width: 100%;
		font-size: 0.85rem;
	}
}
/* nav-content address */
.haddress {
	text-align: left;
	font-size: 0.8rem;
	margin-top: 13px;
}
.haddress p {
	margin-bottom: 0;
}
/* ハンバーガーメニュー ロゴ */
.hmlogo img {
	width: 190px;
}
@media (max-width:915px) {
	#nav-content {
		width: 50%;
	}
}
@media (max-width: 500px) {
	#toggle {
		top: 20px;
		right: 23px;
	}
	#toggle-box {
		width: 29px;
		height: 16px;
	}
	#page_container {
		transition: 0.6s;
	}
	#nav-content li a {
		padding: 10px 0;
		font-size: 0.75rem;
		line-height: 1.55;
	}
	#nav-content .mainbtn a {
		font-size: 0.75rem;
	}
	#nav-content nav {
		padding: 0 20px;
	}
}
/* footer */
.fbr {
	display: none;
}
@media (max-width:830px) {
	.cts {
		display: inline-block;
		text-align: center;
		width: 100%;
	}
	.fbr {
		display: block;
	}
}
@media (max-width:345px) {
	.cts {
		text-align: left;
	}
}
.fpmgb {
	margin-bottom: 0 !important;
}
.footer_address_wrap {
	position: relative;
	/*background: #243757;*/
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 30%;
}
.footer_address_wrap::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.6;
}
.footer_address {
	padding: 95px 30px 135px;
	position: relative;
}
.footer_address .flexbox .mainbtn a {
	padding: 7.5px;
}
.footer_address a {
	display: inline-block;
}
.footer_address .flogo {
	filter: brightness(0) invert(1);
}
.footer_address .flogo a {
	width: 215px;
	margin-bottom: 7px;
}
.flogo {
	margin-bottom: 0 !important;
}
.fmgb {
	margin-bottom: 15px !important;
}
.footer_links .mainbtn a {
	width: 270px;
}
.footer_links .mainbtn a:after {
	content: none;
}
@media (max-width:950px) {
	.footer_links .mainbtn a {
		width: 100%;
		font-size: 0.85rem;
	}
}
@media (max-width:750px) {
	.footer_links .mainbtn a {
		width: 270px;
	}
	.fmgb {
		margin-bottom: 10px !important;
	}
}
.footer_address p {
	color: #fff;
	margin-bottom: 0;
}
.footer_address a {
	color: #fff;
}
.abr {
	display: none;
}
.footer_address .flexbox {
	max-width: 1170px;
	margin: auto;
}
.ficon {
	max-width: 80px !important;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.ficon div {
	margin-bottom: 0 !important;
}
.ficon .iconbtn {
	height: fit-content;
}
.ficon i {
	font-size: 1.5rem;
	color: #fff;
}
/*
.footer_links a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
*/
@media (max-width:750px) {
	.footer_address .kmgl {
		margin-left: 0;
	}
	.footer_address {
		text-align: center;
	}
	.footer_address .flexbox {
		display: block;
	}
	.footer_address div {
		width: 100%;
		margin-bottom: 20px;
	}
	.footer_address div:last-child {
		margin-bottom: 0;
	}
	.footer_address img {
		width: 100%;
		margin-bottom: 0 !important;
	}
	.footer_address img {
		max-width: 200px;
	}
	.footer_address .flogo a {
		margin-bottom: 17px !important;
	}
	.faddress {
		margin-bottom: 40px !important;
	}
}
@media (max-width: 535px) {
	.abr {
		display: block;
	}
	.asp {
		display: none;
	}
	.fpmgb {
		margin-bottom: 13px !important;
	}
}
@media (max-width: 550px) {
	.footer_address img {
		max-width: 185px;
	}
	.footer_address .flogo a {
		margin-bottom: 7px !important;
	}
	.footer_address {
		padding: 37px 15px 35px;
	}
}
@media (max-width: 390px) {
	.footer_address .flogo a {
		width: 80%;
	}
}
/* コピーライト上 追加文章 */
.footer_text {
	margin-bottom: 45px;
	padding: 0 15px;
}
.footer_text p {
	color: #fff;
	margin-bottom: 0;
}
@media (max-width: 550px) {
	.footer_address {
		padding-bottom: 25px;
	}
	.footer_text {
		margin-bottom: 27px;
	}
	.footer_text p {
		font-size: 90%;
		margin-bottom: 3px;
	}
}
.copyright {
	color: #fff;
	margin: 0;
	text-align: center;
	padding: 0 0 15px;
	background: transparent;
}
@media (max-width:750px) {
	.copyright {
		font-size: 0.8rem;
		padding: 0 0 13px;
	}
}
/*ページ上に戻るボタン*/
.tfade {
	position: relative;
	z-index: 79;
}
.go_top {
	display: block;
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	border: 1px solid #fff;
	background: #243757;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border-radius: 50px;
	transition: 0.3s;
	z-index: 79;
	opacity: 0.8;
}
.go_top::before {
	content: "";
	display: block;
	border-top: 3.5px solid #fff;
	border-right: 3.5px solid #fff;
	width: 37%;
	height: 37%;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
.go_top:hover {
	opacity: 1;
}
@media(max-width:450px) {
	.go_top {
		width: 55px;
		height: 55px;
		text-indent: -9999px;
		bottom: 10px;
		right: 10px;
		opacity: 0.9;
	}
	.go_top::before {
		bottom: 18px;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.37;
	z-index: 1;
}
/*
.topslide:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background: radial-gradient(#333 20%, transparent 20%), radial-gradient(#333 20%, transparent 20%);
	background-size: 3px 3px;
	background-position: 0 0, 1.5px 1.5px;
}
*/
.slide_items {
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 650px;
	object-fit: cover;
	z-index: -2;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 3.2rem;
	letter-spacing: 0.2em;
	font-weight: 600;
	z-index: 2;
	line-height: 1.4;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	color: #fff;
	top: 48.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}
.slide_text p {
	animation: fadeIn 1s ease 0.3s 1 normal backwards;
	margin-bottom: 0;
}
.slide_text span {
	font-size: 160%;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 1200px) {
	.slide_items img {
		height: calc(100vh - 100px);
	}
}
@media (max-width: 985px) {
	.slide_items img {
		min-height: auto;
		height: 550px;
	}
	.slide_text {
		top: 49.5%;
		font-size: 2.5rem;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 360px;
	}
	.slide_text {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.slide_items img {
		height: 270px;
	}
	.slide_text {
		top: 53.5%;
		font-size: 6.1vw;
	}
	.topslide::before {
		opacity: 0.45;
	}
}
@media (max-width: 985px) {
	.scrolldown {
		display: none;
	}
}
.pdb0 {
	padding-bottom: 0 !important;
}
.center {
	text-align: center;
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 30px;
	}
}
/* 零 設立の背景 */
.welcome {
	margin-top: 50px;
	position: relative;
	z-index: 1;
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-position: 50% 10%;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .welcome {
	background-attachment: scroll;
}
@media (max-width: 450px) {
	.welcome {
		background-attachment: scroll;
	}
}
.welcome::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.7;
	z-index: -1;
}
.welcome .inner {
	max-width: 1030px;
}
.welcome .maintitle {
	color: #fff;
}
.welcome .maintitle .mf {
	color: #fff;
}
.welcome p {
	margin-bottom: 15px;
}
@media (max-width: 925px) {
	.welcome p {
		text-align: left;
	}
}
@media (max-width: 550px) {
	.welcome {
		margin-top: 25px;
	}
}
/*Buddy Field 零*/
.awhite {
	color: #fff !important;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
}
.about_top {
	position: relative;
	z-index: 1;
	background: url(../img/about.jpg);
	background-size: cover;
	background-position: 50% 10%;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .about_top {
	background-attachment: scroll;
}
.about_top::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.13;
	z-index: -1;
}
.peace {
	max-width: 390px;
	width: 100%;
	margin: 40px auto 0;
}
.about .flexbox img {
	margin-bottom: 5px;
}
.about .flexbox div {
	background-color: #f7f7f7;
	padding: 13px 20px;
	box-shadow: rgba(0, 0, 0, 0.01) 0px 6px 24px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
@media (max-width: 750px) {
	.about .flexbox div {
		margin-bottom: 15px;
	}
	.about .flexbox div:last-child {
		margin-bottom: 0;
	}
}
@media (max-width: 550px) {
	.about_top {
		background-attachment: scroll;
	}
	.about .flexbox div {
		padding: 10px 13px;
		margin-bottom: 13px;
	}
	.peace {
		max-width: 80%;
		margin: 23px auto 0;
	}
}
/*零が拓く近い未来*/
.futures {
	position: relative;
	z-index: 1;
	background: url(../img/future.jpg);
	background-size: cover;
	background-position: 50% 10%;
	color: #fff;
	background-attachment: fixed;
}
.futures .inner {
	max-width: 1000px;
}
.futures .maintitle {
	color: #fff;
	margin-bottom: 45px;
}
.futures .maintitle .mf {
	color: #fff;
}
.futures::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.7;
	z-index: -1;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .futures {
	background-attachment: scroll;
}
.future {
	max-width: 620px;
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
.future p {
	margin-top: 5px;
	font-size: 115%;
}
@media (max-width: 750px) {
	.future p {
		font-size: 107%;
	}
	.future {
		margin-bottom: 20px;
	}
	.futures .maintitle {
		margin-bottom: 30px;
	}
}
@media (max-width: 550px) {
	.futures {
		background-attachment: scroll;
	}
}
.news .maintitle {
	margin-bottom: 50px;
}
@media (max-width:750px) {
	.news .maintitle {
		margin-bottom: 30px;
	}
}
/* 下層ページトップ ==================================================================*/
.fv {
	height: 360px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 45%;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #333;
	opacity: 0.55;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	margin-bottom: 0 !important;
	z-index: 1;
	position: relative;
	color: #fff;
}
.fv h2 .mf {
	color: #fff;
}
@media (max-width: 1205px) {
	.fv {
		height: 320px;
	}
}
@media(max-width:1155px) {
	.fv {
		height: 255px;
	}
	.fv .inner {
		max-width: 90%;
	}
}
@media(max-width:650px) {
	.fv {
		height: 210px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 180px;
	}
	.fv h2 {
		line-height: 1.3;
	}
}
.aic {
	align-items: center;
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #243757;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
.spbr{
	display: none;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
	.nd {
		margin-bottom: 20px;
	}
	.spbr{
		display: block;
	}
}


.staff{
	
}
.staff .flexbox .w32{
	padding-bottom: 50px;
}
.staff .flexbox img{
	padding-bottom: 10px;
}
.stitle .yaku{
	background-color: #137fd3;
	color:white;
	border-radius: 10px;
	padding: 5px;
	font-size: 0.7rem;
}

/* flex-schedul */
.flex-schedule_wrap{
	width: 90%
}
.flex-schedule {
  min-width: 300px;
  max-width: 400px;
  list-style: none;
  margin: auto;
  box-sizing: border-box;
}

.flex-schedule li {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;

}

.flex-schedule .area {
  padding: 10px;
  display: block;
  width: 100%;
  border-left: 6px solid #284787;
}

.flex-schedule li .time {
  display: inline-flex;
  justify-content: flex-end;
  flex-basis: 5em;
  margin-right: 1em;
  margin-top: 30px;
	
}

.flex-schedule .sch_box {
  position: relative;
  min-height: 1em;
  padding: 1em;
  background: #788eba;
  border-radius: 6px;
}

.flex-schedule .sch_box::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 20px;
  background: #284787;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.flex-schedule .sch_title {
  font-weight: 700;
color: white;
}

.flex-schedule .sch_tx {
  font-size: 14px;
  font-weight: normal;
	color: white;
}
