footer {
	border-top: 2px solid #C11F24;
	background: #EDEFF2;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;

}
footer::before {
	content: '';
	display: block;
	background: #C11F24;
	position: absolute;
	top: -6px;
	left: 0;
	height: 6px;
	min-width: 406px;
	width: calc(calc(calc(100vw - 1200px) * 0.5) + 406px);	
}
.footer_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 20px 40px;
	display: flex;
	justify-content: space-between; 
}
.footer_logo {
	width: 205px;
	margin: 0 0 25px;
}
.footer_logo img {
	width: 100%;
	height: auto;	
}
.footer_address p {
	font-size: 14px;
	margin: 0 0 1.5em;
	line-height: 1.6;
	letter-spacing: .03em;
}
.footer_address p.footer_tel {
	margin: 0 0 1em;
}
.footer_tel a {
	color: #000;
	text-decoration: none;
}

.footer_contact {
	font-size: 14px;	
}

.footer_contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 34px;
	background: #000;
	border: 1px solid #000;
	color: #fff;
	text-decoration: none;
}
.footer_contact a:hover {
	background: #fff;
	color: #000;	
}


.footer_nav {
	min-width: 540px;
	display: flex;
}
.footer_col {
	width: 30%;
	box-sizing: border-box;
	padding-right: 30px;	
}
.footer_nav .footer_col:first-child {
	width: 40%;	
}

.footer_col a {
	color: #333;
	text-decoration: none;
}
.footer_col a:hover {
	color: #E30C14;
}


.footer_col h5 {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 20px;
}
.footer_col h5.single {
	margin: 0 0 40px;	
}
.footer_col h5 a {
	position: relative;
}
.footer_col h5 a::before {
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: #C11F24;
	position: absolute;
	left: -20px;
	top: 50%; 	
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer_col h5 a:hover::before {
	width: 17px;
}

.footer_col li {
	list-style: none;
	margin: 0 0 10px;
	font-size: 14px;	
}
.footer_col ul {
	margin: 0 0 30px;	
}


.footer_terms {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 30px;
}
.footer_terms ul {
	display: flex;
}
.footer_terms li {
	list-style: none;
	margin-right: 15px;
	font-size: 14px;
	line-height: 1;
}
.footer_terms li a {
	color: #333;
	text-decoration: none;
	padding-right: 15px;
	position: relative;
}
.footer_terms li a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    top: 6px;
    right: 0;
    background: #333;
}
.footer_terms li a:hover {
	color: #E30C14;
}
.footer_terms li:last-child a::after {
	display: none;
}
.footer_sdgs {
	background: #fff;
	padding: 40px 20px 25px;	
}
.footer_sdgs p {
	text-align: center;
	font-size: 14px;	
}

.footer_sdgs_flex {
	margin: 0 0 25px;
	display: flex;
	justify-content: center;
	padding: 0 20px;
}
.footer_sdgs_flex img {
	width: 100%;
	height: auto;	
}
.sdgs_left {
	width: 180px;
	padding-right: 30px;
}
.sdgs_right {
	width: 330px;
	padding-left: 30px;
	border-left: 1px solid #333;	
}

.footer_copy {
	background: #333;
	color: #fff;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 10px;
}


@media(max-width: 768px) {
	
footer::before {
    top: -5px;
    height: 5px;
    min-width: inherit;
    width: 36%;
}
.footer_inner {
    padding: 30px 30px 40px;
	display: flex;
	flex-direction: column-reverse;
}
.footer_nav {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between; 
	min-width: inherit;
	width: 100%;
	margin: 0 20px;
}
.footer_col {
	width: 60%;
	padding-right: 0;
}
.footer_col:nth-child(2) {
	width: 40%;
}
.footer_col h5 {
	font-size: 15px;
	margin: 0 0 15px;	
}
.footer_col li {
	font-size: 13px;	
}

.footer_address {
	text-align: center;
	margin-top: 20px;
	padding-top: 40px;
	border-top: 1px solid #fff;
}

.footer_logo {
	width: 42vw;
	margin: 0 auto 20px;	
}
.footer_contact {
	display: flex;
	justify-content: center;
}
.footer_terms ul {
  display: flex;
  justify-content: center;
}
.footer_terms ul li {
	font-size: 11px;	
}
.footer_terms li a {
	padding: 0 5px;	
}
.footer_terms li a::after {
    top: 4px;
	right: -5px;
}
.footer_sdgs {
	padding: 30px 20px;
}
.footer_sdgs_flex {
	margin: 0 0 15px;
	padding: 0;
}
.sdgs_left {
	width: calc(33% - 15px);
	padding-right: 15px;
}
.sdgs_right {
	width: calc(67% - 15px);
	padding-left: 15px;
}
.footer_sdgs p {
	font-size: 12px;
	text-align: left	;
}


}


@media(max-width: 320px) {

.footer_inner {
    padding: 30px 20px 40px;
}


.footer_col h5 {
	font-size: 14px;
}
.footer_col li {
	font-size: 12px;	
}
.footer_terms ul li {
	font-size: 10px;	
}
.footer_terms li a {
	padding: 0 3px;	
}
.footer_terms li a::after {
	right: -7px;
}

	
	
}


@media(min-width: 1024px) {
.sp_obj {
	display: none;	
}
.spbr {
	display: none;	
}
}
@media(max-width: 1023px) {
.pc_obj {
	display: none;	
}
.pcbr {
	display: none;	
}
}

.f-red {
	color: #C11F24;	
}