/*
	Template:businesspress
	Theme Name: BusinessPress Child
	Description: BusinessPress Child Theme
	Theme URI: https://businesspress.jp/theme/
	Author: BusinessPress
	Author URI: https://businesspress.jp/
	Version: 1.0.0
*/

/* TABLE OF CONTENTS
------------------------------------------------------------
* Reset
* Global
* Layout
* Common

* Home
* Service
* Company
* Contact
* Recruit
* Info

* Privacy
* Footer

------------------------------------------------------------ */

/* Reset
------------------------------------------------------------ */
body {
	color: #444;
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 18px;
	line-height: 1.6;
	word-wrap: break-word;
}

body:lang(ja) {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

@media screen and (min-width: 782px) {
	body {
		font-size: 19px;
	}

	body:lang(ja) {
		font-size: 16px;
	}
}

@media screen and (min-width: 980px) {
	body {
		font-size: 18px;
	}

	body:lang(ja) {
		font-size: 16px;
	}
}


a,
.t-btn a {
	text-decoration: none !important;
}

ul,
li {
	list-style: none !important;
}


/* Global
------------------------------------------------------------ */

:root {
	--black: #111;
	--white: #fff;
	--red: #e24536;
	--red-hover: #ee9c94;
	--gray: #AAA;
	--gray-bg: #eee;
	--gray-border: #cccccc;
	--lightgray-bg: #f9f9f9;
}

table th,
table td {
	border-bottom: solid 1px var(--gray);
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
	clear: both;
	color: var(--black);
	font-weight: 700;
	line-height: 1.5;
}

/* Link */
a {
	color: var(--red);
	text-decoration: underline;
	transition: all .15s ease-in-out;
}

a:hover {
	color: var(--red-hover);
}

cite a,
cite a {
	text-decoration: none;
}


/* Layout
------------------------------------------------------------ */

/* Base */

.jumbotron-content {
	padding: 80px;
}

.main-header-content {
	max-width: none;
}

.site-content {
	max-width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.main-navigation {
	font-size: 100%;
}


/* flex */

.t-flex-sp {
	display: flex;
	justify-content: space-between;
}

.t-flex-pc {
	display: flex;
}

@media (max-width:500px) {
	.t-flex-pc {
		display: block;
	}

	.t-flex-sp {
		display: block;
	}
}

/* 共通レイアウト */

.site-header {
	border-bottom: none;
	margin-bottom: 0;
}

.content-area {
	margin-bottom: 0rem;
}


/* Footer */

/* Footer widget */
.footer-widget-area {
	border-top: solid 1px #eee;
	padding-bottom: 0;
	padding-top: 4rem;
}

.footer-widget-area .widget {
	margin-bottom: 1rem;
}

.site-bottom {
	display: none;
}

@media screen and (min-width: 782px) {
	.site-info {
		clear: none;
		float: none;
		text-align: center;
	}
}

/* BusinessPressのクレジット非表示 */
.site-credit {
	display: none;
}


/* Common
------------------------------------------------------------ */


/* Table */

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	margin: 0 0 1.8em;
	width: 100%;
}


/* table 共通style */
.common_table {
	width: 100%;
	text-align: left;
	margin-bottom: 100px;
}

.common_table table {
	border: none;
}

.common_table th,
.common_table td {
	border: none;
	background-color: none;
	padding: 25px 0;
	border-bottom: 0.5px solid var(--gray-border);
}

.common_table th {
	background-color: var(--white);
	width: 37%;
	vertical-align: middle;
}

.common_table td {
	line-height: 2;
}

.common_table p {
	margin: 0 0 0;
}

@media (max-width:768px) {
	.common_table {
		margin: 0 auto;
		margin-bottom: 50px;
	}

	.common_table th,
	.common_table td {
		padding: 9px 0;
		display: block;
		width: 100%;
	}

	.common_table th {
		padding-top: 1.5em;
		border-bottom: none;
	}

	.common_table td {
		padding-bottom: 1.5em;
	}

	.common_table td p {
		line-height: 1.5;
	}

	.common_table td p+p {
		padding-top: 1.5em;
	}
}



/* botton */

.t-btn a {
	display: inline-block;
	padding: 10px 30px;
	margin-top: 5px;
	color: var(--white);
	background-color: var(--red);
	border: solid 1px var(--red);
	border-radius: 100px;
	font-size: 1em;
	font-weight: 600;
}

.t-btn a:hover {
	color: var(--red);
	background-color: var(--white);
	border: solid 1px var(--red);
	transition: 0.4s;
}

.t-btn-arrow a:after {
	padding-left: 20px;
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
}

.t-btn-black a {
	background-color: var(--black);
	border: solid 1px var(--black);
}

.t-btn-black a:hover {
	border: solid 1px var(--black);
	color: var(--black);
	transition: 0.4s;
}



/* ナビゲーション */
.main-navigation a {
	color: inherit;
	display: block;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	font-weight: bold;
}

.main-navigation a:hover {
	color: var(--red);
}

/* Jumbotron（固定ページヘッダー） */

.jumbotron {
	background-color: var(--white);
	background-position: center;
	background-size: cover;
}

.jumbotron-overlay {
	background-color: rgba(0, 0, 0, 0);
}

.jumbotron-title {
	color: var(--black);
	font-size: 2.25rem;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	margin-top: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
}


/* Common
------------------------------------------------------------ */

/* margin */

.mt-40 {
	margin-top: 40px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-140 {
	margin-bottom: 140px;
}


/* Home （要整理）
------------------------------------------------------------ */

/* フロントページ メインエリア */

.home-header {
	display: none;
}

.home__wrapper {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

.home_copy__inner {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.copy_image {
	position: relative;
	right: 50px;
	width: 650px;
	height: auto;
}

.copy_text {
	position: relative;
	top: 20px;
	left: 50px;
	width: 50%;
	text-align: left;
	z-index: 2;
}

.copy_text p {
	margin: 0 0 1em;
}

.copy_main {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.4rem;
}

.copy_main .sp {
	display: none !important;
}

.copy_sub {
	font-size: 1.7rem;
}

@media (max-width: 1400px) {
	.copy_text {
		width: 60%;
	}

	.copy_main {
		font-size: 3.5vw;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 0.4rem;
	}

	.copy_sub {
		font-size: 1.4rem;
	}

	@media (max-width: 980px) {
		.home_copy__inner {
			position: relative;
			max-width: 980px;
			margin: 0 auto;
			padding: 0 30px;
			padding-bottom: 40px;
		}

		.copy_text {
			width: 80%;
		}
	}

	@media (max-width: 768px) {
		.home_copy__inner {
			display: block !important;
			padding: 30px;
		}

		.copy_image {
			width: auto;
			right: 0px;
		}

		.copy_text {
			width: 100%;
			top: 0;
			left: 0;
		}

		.copy_main {
			font-size: 6vw;
		}

		.copy_main .pc {
			display: none !important;
		}

		.copy_main .sp {
			display: block !important;
		}

		.copy_sub {
			font-size: 1.5rem;
		}
	}
}


/* フロントページ　共通見出し */
.home h4 {
	position: relative;
	color: var(--green);
	font-size: 2rem;
	margin: 0 0 20px;
}

.t_subtitle {
	display: block;
	color: var(--red);
	padding-top: 10px;
	font-size: 1rem;
}


/* フロントページ サブエリア */

.home-block-row {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

.row-bg-gray {
	background-color: var(--lightgray-bg);
}

.home-block-item {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 60px;
}

.home-block-item-images {
	padding-top: 2em;
	width: 40%;
}


.home-block-item-text {
	padding: 0 0 0 5em;
	width: 60%;
	border-radius: 20px;
}

.home-block-item-text p {
	font-size: 16px;
	margin-bottom: 1em;
	line-height: 2;
}

@media (max-width:768px) {
	.home-block-item {
		margin: 0 30px;
		padding: 30px 0;
	}

	.home-block-item-images {
		display: none;
		width: 39%;
	}

	.home-block-item-text {
		width: 100%;
		padding: 20px;
	}

	.home-block-item-text p {
		font-size: 15px;
	}

	@media (max-width:500px) {
		.home-block-item-images {
			padding: 0;
			width: 100%;
			text-align: center;
		}

		.home-block-item-images img {
			width: 60%;
			margin: 0 auto;
		}

		.home-block-item-text {
			padding: 1.5em 1.5em 2em;
			width: calc(100% - 3em);
			border-radius: 30px;
		}

		.block-reverse .home-block-item-text {
			padding: 1.5em 1.5em 2em;
		}
	}
}

/* お知らせ */
.home_info {
	padding: 80px 60px;
	width: 80vw;
	max-width: 980px;
	margin: 0 auto;
}

.home_info_list {
	width: 100%;
	margin: 40px auto 40px;
}

.home_info_list li {
	line-height: 80px;
	transition: .2s;
	border-bottom: 1px solid var(--gray-border);
}

.home_info_list li a {
	display: flex;
	color: var(--black);
}

.home_info_list li a:hover {
	color: var(--red);
}

.home_info_list_category {
	margin-right: 8em;
	color: var(--red);
	font-weight: 700;
}

.home_info_list_date {
	font-weight: 700;
}

.home_info_list_title {
	margin-left: 3em;
}

@media (max-width:768px) {
	.home_info {
		padding: 60px 0;
	}

	.home_info_list li {
		line-height: 50px;
		margin-bottom: 20px;
	}

	.home_info_list li a {
		display: block
	}

	.home_info_list_title {
		margin-left: 0;
	}
}


/* Service
------------------------------------------------------------ */

.service {
	margin: 0 auto;
	max-width: 1080px;
	padding: 60px;
	margin-bottom: 150px;
}

.service-list {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 150px;
	width: 100%;
}

.service-item {
	position: relative;
	margin-bottom: 120px;
}

@media (max-width:768px) {
	.service {
		padding: 20px;
	}

	.service-list {
		margin-bottom: 50px;
	}

	.service-item {
		margin: 0;
		margin-bottom: 60px;
	}
}

.service-item h2 {
	margin: 1em 0;
}

.service-item02 {
	flex-direction: row-reverse;
}

.service-item-images {
	padding-top: 2em;
	width: 40%;
}

@media (max-width:768px) {
	.service-item-images {
		width: 39%;
	}

	@media (max-width:500px) {
		.service-item-images {
			padding: 0;
			width: 100%;
			text-align: center;
		}
	}
}

.service-item-text {
	padding: 0 0 0 5em;
	width: 60%;
	border-radius: 20px;
}

.service-item02 .service-item-text {
	padding: 0 5em 0 0;
}

@media (max-width:768px) {
	.service-item-text {
		padding: 0 0 0 3em;
		width: calc(56% - 50px);
	}

	.service-item02 .service-item-text {
		padding: 0 3em 0 0;
	}

	@media (max-width:500px) {
		.service-item-images img {
			width: 60%;
			margin: 0 auto;
		}

		.service-item-text {
			padding: 1.5em 1.5em 4em;
			width: calc(100% - 3em);
			border-radius: 30px;
		}

		.service-item02 .service-item-text {
			padding: 1.5em 1.5em 4em;
		}
	}
}

.service-item-text p {
	margin-bottom: 1em;
	line-height: 2;
}

.service-item-tooltip {
	padding: 0;
	margin: 0;
}

.service-item-tooltip li {
	display: inline-block;
	text-align: center;
	list-style: none;
	padding: 6px 20px;
	margin: 3px;
	border: 1px solid var(--red);
	border-radius: 25px;
	color: var(--red);
	font-weight: 700;
}

@media (max-width:768px) {
	.service-item-tooltip li {
		font-size: 14px;
	}
}


/* Company
------------------------------------------------------------ */

.company {
	margin: 0 auto;
	max-width: 820px;
	text-align: center;
	margin-bottom: 150px;
}

.company-table {
	width: 100%;
	text-align: left;
}

.company-table table {
	border: none;
}

.company-table th,
.company-table td {
	border: none;
	background-color: none;
	padding: 25px 0;
	border-bottom: 0.5px solid var(--gray-border);
}

.company-table th {
	background-color: var(--white);
	width: 37%;
	vertical-align: middle;
}

.company-table td {
	line-height: 2;
	font-weight: 400;
}

.company-table p {
	margin: 0 0 0;
}

@media (max-width:768px) {
	.company-lead {
		text-align: left;
		width: 71%;
		margin: 0 auto;
	}

	.company-table {
		margin: 0 auto;
		margin-bottom: 50px;
		width: 80%;
	}

	.company-table th {
		width: 22%;
	}

	@media (max-width:500px) {
		.company-lead {
			text-align: left;
			width: 90%;
			margin: 0 auto;
			letter-spacing: 0;
			line-height: 2;
		}

		.company-table {
			width: 90%;
		}

		.company-table th,
		.company-table td {
			padding: 9px 0;
			display: block;
			width: 100%;
		}

		.company-table th {
			padding-top: 1.5em;
			border-bottom: none;
		}

		.company-table td {
			padding-bottom: 1.5em;
		}

		.company-table td p {
			line-height: 1.5;
		}

		.company-table td p+p {
			padding-top: 1.5em;
		}
	}
}

/* New Contact
------------------------------------------------------------ */

.entry-content {
	max-width: 720px;
	margin: 0 auto;
	margin-bottom: 200px;
}

@media (max-width:980px) {
	.entry-content {
		padding: 40px;
	}

}


/* Contact
------------------------------------------------------------ */

.contact7 {
	max-width: 720px;
	margin: 0 auto;
	margin-bottom: 200px;
}

@media (max-width:980px) {
	.contact7 {
		padding: 40px;
	}

}

.contact7 ul {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 2em;
}

.contact7 li {
	margin-bottom: 6px;
}

.contact7 p {
	margin: 0px;
}

.contact7 input,
.contact7 textarea {
	width: 100%;
	margin-top: 0.5em;
	margin-bottom: 0em;
	background: var(--gray-bg);
	border-radius: 5px;
}

.contact7 input[type="submit"] {
	background: var(--red);
}

.contact7 input[type="button"] {
	color: var(--black);
	background: white;
	border: solid 1px var(--black);
}

/* ラベル */
.contact7 label {
	font-weight: bold;
}

/* 必須 */
.contact7 .required:after {
	color: var(--white);
	background: var(--red);
	border-radius: 4px;
	font-size: 13px;
	margin-left: 8px;
	padding: 4px 10px;
	content: "必須"
}

/* メッセージ */
.wpcf7 form .wpcf7-response-output {
	margin: 0.5em 0.5em 6em;
	padding: 0.5em 1em;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	max-width: 680px;
	padding: 10px 20px;
	color: var(--red);
	border-color: var(--red);
	background-color: #FFF3F2;
	border-radius: 5px;
	margin: 0 auto;
	margin-bottom: 100px;
}

/* reCAPTCHA表示 */
.recapcha-text {
	max-width: 720px;
	margin: 0 auto;
	font-size: 75%;
	text-align: center;
	opacity: 0.6;
}

.recapcha-text a {
	color: var(--black);
}


/* Recruit
------------------------------------------------------------ */

.recruit {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 180px;
}

.recruit__wrapper {
	width: 80vw;
	max-width: 1080px;
	margin: 0 auto;
	margin-bottom: 150px;
}


.recruit_mv {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

@media (max-width:768px) {
	.recruit__wrapper {
		margin-bottom: 80px;
	}

	.recruit_mv {
		width: 100%;
		height: 24vh;
		object-fit: cover;
		border-radius: 20px;
		object-position: 100% 100%;
	}

}

.r_heading {
	display: flex;
	width: 100%;
	margin-top: 80px;
}

.r_copy {
	margin-right: 30px;

	h2 {
		font-size: 36px;
		margin: 0;
	}

	p {
		font-size: 18px;
		font-weight: 700;
		margin: 40px 0;
		line-height: 2.6;
		letter-spacing: 2;
	}
}

.r_copy_list {
	margin-left: auto;
	margin-right: 0;
}

.r_copy_list ul {
	margin: 0 0 10px 0;
	display: flex;
	justify-content: space-around;
}

.r_copy_list li {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--red);
	color: var(--red);
	width: 14vw;
	height: 14vw;
	max-width: 165px;
	max-height: 165px;
	border-radius: 100%;
	align-items: center;
	line-height: 1.2;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin: 0 20px 20px;
}

@media (max-width: 980px) {
	.r_heading {
		display: block;
	}

	.r_copy {
		margin-right: 18px;

		h2 {
			font-size: 36px;
			margin: 0;
		}

		p {
			font-size: 16px;
			font-weight: 700;
			margin: 40px 0;
			line-height: 2;
			letter-spacing: 2;
		}
	}

	.r_copy_list li {
		width: 165px;
		height: 165px;
		border-radius: 100%;
		align-items: center;
		line-height: 1.2;
		font-size: 18px;
		font-weight: 700;
		text-align: center;
		margin: 0 10px 10px;
	}

	@media (max-width: 768px) {
		.r_heading {
			margin-top: 40px;
		}

		.r_copy {
			margin-right: 0;

			h2 {
				font-size: 23px;
				margin: 0;
			}

			p {
				font-size: 16px;
				font-weight: 600;
				margin: 20px 0;
				line-height: 1.8;
			}
		}

		.r_copy_list li {
			width: 140px;
			height: 140px;
			border-radius: 100%;
			align-items: center;
			line-height: 1.2;
			font-size: 18px;
			font-weight: 700;
			text-align: center;
			margin: 0;
		}
	}
}

.r_menu {
	display: block;
	margin: 0 auto;
}

.r_menu ul {
	max-width: 600px;
	margin: 0 0 10px 0;
	display: flex;
	justify-content: space-around;
	background-color: var(--red);
	border-radius: 40px;
	font-weight: 700;
}

.r_menu li {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 14px;
}

.r_menu ul a {
	color: var(--white);
}

.r_menu ul li>a:after {
	content: "\f078";
	font-family: FontAwesome;
	margin-left: 10px;
}

.r_title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: var(--red);
	margin-bottom: 20px;
}


@media (max-width:768px) {
	.r_menu {
		margin-top: 50px;
	}

	.r_menu li {
		font-size: 12px;
		margin: 12px 4px;
	}

	.r_menu ul li>a:after {
		margin-left: 6px;
	}
}


/* 募集要項 */

.r_section1 {
	width: 100%;
	margin: 0 auto;
}

.r_section2__inner {
	margin: 60px;
}


@media (min-width:768px) {
	.r_section1 {
		width: 80vw;
		max-width: 980px;
		margin: 0 auto;
	}
}

/* 選考の流れ */

.r_section2 {
	width: 100%;
	background-color: #faeeec;
	text-align: center;
}

.r_section2__wrapper {
	width: 100%;
	max-width: 1080px;
	height: 480px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.r_section2__inner {
	margin: 50px;
}

.r_section2 p {
	margin: 40px;
}

.r_section2__sp {
	display: none;
}

@media (max-width:768px) {
	.r_section2__wrapper {
		height: 100%;
	}

	.r_section2 p {
		margin: 40px 0 0 0;
	}

	.r_section2__pc {
		display: none !important;
	}

	.r_section2__sp {
		width: 45svw;
		display: inline-block !important;
	}
}

/* 採用休止中 */

.notrecruiting {
	width: 100%;
	/* border: 1px solid var(--gray-border);
	border-radius: 20px; */
	padding: 1.5em;
	margin-bottom: 30px;
	text-align: center;
}

.notrecruiting h2 {
	font-size: 1.75rem;
	margin: 0;
	margin-bottom: 30px;
}

.notrecruiting p {
	font-weight: bold;
	margin: 0;
}


/* よくある質問 */

.r_section3 {
	width: 80vw;
	max-width: 1080px;
	margin: 100px auto;
}

.r_section3 h3 {
	margin: 20px 0;
}

.qa__list {
	width: 100%;
	margin: 0 0 80px 0;
}

.qa__list li {
	padding: 30px 60px;
	border: 1px solid var(--gray-border);
	border-radius: 20px;
	margin-bottom: 50px;
}

.qa__item_q,
.qa__item_a {
	display: flex;
}

.qa__item_q {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.qa__item_q::before,
.qa__item_a::before {
	display: inline-block;
	position: relative;
	height: 40px;
	font-size: 32px;
	line-height: 40px;
	margin-right: 30px;
}

.qa__item_q::before {
	content: 'Q';
}

.qa__item_a::before {
	content: 'A';
	color: var(--red);
	font-weight: 700;
}

.recruit__footer {
	text-align: center;
}

@media (max-width:768px) {
	.qa__list li {
		padding: 20px 40px;
		border: 1px solid var(--gray-border);
		border-radius: 20px;
		margin-bottom: 40px;
	}

	.qa__item_q,
	.qa__item_a {
		display: block;
	}

	.qa__item_q::before,
	.qa__item_a::before {
		font-size: 24px;
	}
}



/* Info
------------------------------------------------------------ */

/* Info
------------------------------------------------------------ */

.info_archive {
	display: flex;
	width: 100%;
	min-height: 50vh;
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.info_archive__wrapper {
	width: 100%;
	padding: 60px;
}

.info_header_category {
	position: relative;
	width: 100%;
}

.info_header_category span {
	color: var(--red);
	border: solid 1px var(--red);
	border-radius: 5px;
	padding: 6px;
}

.info_header_title {
	display: flex;
	position: relative;
	width: 100%;
	margin: 60px 0;
}

.info_header_title h2 {
	margin: 0;
	font-size: 2.2rem;
	color: var(--red);
}

.info_header_date {
	position: absolute;
	padding: 0 10px;
	right: 0;
}

@media (max-width:980px) {
	.info_header_title {
		display: block;
	}

}


/* Privacy
------------------------------------------------------------ */

.privacy__wrapper {
	width: 80vw;
	max-width: 1080px;
	margin: 0 auto;
	margin-bottom: 150px;
}

.policy h2 {
	font-size: 1.75rem;
	margin-top: 3em;
	margin-bottom: 0.85em;
}

.policy ol {
	margin: 0 0 1.8em 0;
	padding: 0;
}

.policy ol li {
	list-style-type: decimal !important;
	margin-left: 1.5em;
	padding-left: 0.5em;
}

.policy ol li::marker {
	font-size: 110%;
	font-weight: bold;
	color: var(--gray);
}

@media (max-width:768px) {
	.privacy__wrapper {
		margin-bottom: 80px;
	}
}




/* Footer
------------------------------------------------------------ */


.footer {
	position: relative;
	padding: 40px;
	border-top: 1px solid var(--gray-border);
}

.l-width-1400 {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1650px;
}

.footer_item {
	display: flex;
	position: relative;
	justify-content: space-between;
}

.footer_logo {
	margin: 0 36px 0 0;
	width: 230px;
}

.footer_box_isms {
	align-items: center;
}

.footer_box_isms img {
	margin-right: 16px;
	height: 40px;
	object-fit: contain;
}

.footer_box_isms p {
	margin: 0;
	font-size: 1rem;
}

@media (max-width:980px) {
	.footer_logo {
		margin: 0 0 20px;
	}

	.footer_item {
		display: block;
		height: auto;
	}

	.footer_box {
		display: block;
	}

	.footer_box_isms {
		display: flex;
	}

}

.footre_nav {
	display: flex;
	align-items: center;
}

.footre_nav ul {
	margin: 0;
	padding: 0;
}

.footre_nav li {
	margin-left: 20px;
	font-size: 14px;
}

.footre_nav li a::after {
	content: "\f08e";
	font-family: FontAwesome;
	margin-left: 10px;
}

.footre_nav a {
	color: var(--black);
}

.footre_nav a:hover {
	color: var(--gray);
}

@media (max-width:980px) {
	.footre_nav li {
		padding-top: 10px;
	}

	.footre_nav li {
		margin-left: 0px;
	}
}