@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Oswald:wght@300;700&display=swap');
@import url("menu.css");
/* CSS Document */
/*-------------------------
共通のCSS
-------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 1px;
}
a{
	color:#1E55B1;
	text-decoration: none;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
p.section-sub-header{
	color: #222;
}
p.section-sub-header span{
	color: #e41a23;
}

h2.section-header{
	font-size:18px;
	color: #222;
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
h2.section-header::after{
	content: "";
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	z-index: 2;
	background-color: #e41a23;
}

main{
	padding-top: 53px;
	padding-bottom: 5rem;
}
#page-top{
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1000;
	opacity: 0;
}
#page-top a.page-top-btn{
	background-color: rgba(0,0,0,0.5);;
	text-decoration: none;
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 55px;
	padding: 0;
	display: block;
	color: #fff;
}
#page-top a:hover.page-top-btn{
	background-color: rgba(0,0,0,01);
	transition: .5s;
}
#page-top a.page-top-btn::after{
	content: "\f077";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

/*-------------------------
Footer
-------------------------*/
#footer .footer-inner{
	margin-bottom: 2rem;
}
#footer .footer-title{
	font-size: 1.25rem;
	text-align: center;
	margin-bottom: 1rem;
}
#footer ul.footer-nav{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0;
}
#footer ul.footer-nav li{
	margin-left: 1rem;
}
#footer ul.footer-nav li:first-child{
	margin-left: 0;
}
#footer .footer-nav a{
	color: #fff;
	font-size: 14px;
}
#footer .footer-nav a:hover{
	opacity: 0.5;
	transition: 0.3s;
}
.copySection{
	text-align: center;
}
/*-------------------------
その他
-------------------------*/
.oswald{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0;
}
.fs-sm{
	font-size: 14px;
}
.fs-xs{
	font-size: 12px;
}

/*-------------------------
動くボタン
-------------------------*/
.custom-btn {
  width: 150px;
  height: 40px;
  border: 2px solid #e41a23;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.btn-anime {
  background: #e41a23;
  color: #fff;
  line-height: 40px;
  padding:0;
  border: none;
}
.btn-anime span {
  position: relative;
  display: block;
  height: 100%;
}
.btn-anime::before,
.btn-anime::after {
  position: absolute;
  content: "";
  height: 0%;
  width: 2px;
  background: #222;
}
.btn-anime::before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-anime::after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-anime:hover{
  color: #222;
  background: transparent;
}
.btn-anime:hover::before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-anime:hover::after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-anime span::before,
.btn-anime span::after {
  position: absolute;
  content: "";
  background: #222;
}
.btn-anime span::before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-anime span::after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-anime span:hover::before {
  width: 100%;
}
.btn-anime span:hover::after {
  width: 100%;
}

@media(min-width:992px){
	.page-header {
		height: 300px;
	}
	.pageNav_container{
		padding: 2.5rem 2.5rem 1.5rem;
		margin-top: -5rem;
	}
}/*end*/

@media (min-width:576px){
	main{
		padding-top: 58px;
	}
	/*-----------------
	フッター
	-------------------*/
	#footer .footer-inner{
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	}
	#footer .footer-title{
		text-align: left;
		margin-bottom: 0;
	}
	#footer ul.footer-nav li{
		margin-left: 2rem;
	}
	.copySection{
		text-align: left;
	}
}/*end*/