@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;300;400;500;700;900&display=swap');
@import url("https://use.typekit.net/aij5hgl.css");



*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.6em;}


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: 700;
	color: #60b212;
}

ul {
}
ul li {
	list-style:none;	
}
.text__mincho {
	font-family: "Noto Serif JP";
	font-weight: 600;
	font-size: 1.8rem;
}

iframe {
	width: 100%;
}


img {
	width: 100%;
	height: auto;
}


/* float解除 */
.release { 
}
* html .release {
	zoom: 100%;
}
*:first-child+html .release {
	display: inline-block;
}
.release:after {
	content: "."; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}

input[type="button"],input[type="text"],input[type="submit"],input[type="image"],area__text{
    -webkit-appearance: none;
    border-radius: 0;
}

/* box-sizing */ 
* {
	box-sizing: border-box;
}




/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #60b212;
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
a:hover {
	opacity: 0.5;
}
a.jump_point {
	height: 1px;
	display: block;
	margin-top: -50px;
	padding-top: 50px;
}
.cap {
	font-size: 1.4rem;
}
.right {
	text-align: right;
}
#Main strong {
	color: #5f889f;
	font-size: 1.8rem;
}




/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */


.pc {
	display: block;
}
.sp {
	display: none;
}
table {
	margin: 10px 0;
	width: 100%;
	border-collapse: collapse;
	border-top: solid 1px #d9e4ec;
}
	table th {
		text-align: left;
		color: #60b212;
		padding: 20px 0;
		font-weight: 500;
		border-bottom: solid 1px #d9e4ec;
		width: 15%;
	}
	table td {
		text-align: left;
		border-bottom: solid 1px #d9e4ec;
		padding: 20px 0;
		font-size: 1.4rem;
	}
	table td p {
		margin-bottom: 0 !important;
	}


main p {
	margin-bottom: 20px;
}
.text__center {
	text-align: center;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	position: relative;
	font-family: "Noto Sans JP";
	font-weight: 500;
	color: #3a3a3a;
	padding: 0;
	margin: 0;
	letter-spacing: 0.1em;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	/*text-align: justify;*/
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}







/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
header {
	position: fixed !important;
	width: 100%;
	top: 0;
	z-index: 10000;
	font-weight: 500;
	background: #FFF;
	
}
header #logo {
	padding: 10px;
	float: left;
	width: 220px;
}
header nav {
	float: right;
}
header nav li {
	font-size: 1.4rem;
	margin-right: 10px;
}
header nav a {
	color: #000;
	font-weight: 700;
	line-height: 60px;
}
header .contact {
	float: right;
	margin: 10px;
}
header .contact a {
	display: block;
	color: #FFF;
	background: #60b212;
	font-size: 1.4rem;
	line-height: 40px;
	padding: 0 40px;
	
	border-radius: 20px;
}

/* グローバルナビ基本 */
.global-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
}

.global-nav > li {
	position: relative;
}

/* サブメニュー非表示状態 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	background: #fff;
	border: 1px solid #ddd;
	min-width: 180px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: opacity .2s ease, transform .2s ease;
	z-index: 100;
}

/* サブメニューのアイテム */
.sub-menu li {
	padding: 0;
}

.sub-menu li a {
	display: block;
	padding: 0 16px;
	text-decoration: none;
	color: #333;
	white-space: nowrap;
}

/* ホバーで表示 */
.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 親リンクに矢印（任意） */
.has-sub > a::after {
	content: " ▼";
	font-size: 0.6em;
	margin-left: 4px;
}









/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

.inner {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}
.cell {
	margin-top: 40px;
}

.section__title {
	padding: 150px 0;
	position: relative;
}
.section__title h1 {
	font-size: 7.5rem;
	line-height: 1.4;
	
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
}
.section__title h1 span {
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-size: 1.6rem;
	display: block;
}





.section__area {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: 100px;
}
.section__area--gray {
	background: #f5f5f5;
	padding-bottom: 100px;
}
.section__area--full {
	margin-bottom: 100px;
}
.section__area--image {
	margin-bottom: 40px;
}

#tab {
	background: #60b212;
	padding: 10px 0;
	margin: 0;
}
#tab li {
	background: #FFF;
	text-align: center;
	display: block;
	padding: 10px 0;
	cursor: pointer;
}
#tab li.tab.active {
	color: #60b212;
}

#tab.lay03 li {
	width: 33%;
	margin-right: 0.5%;
}
#tab.lay05 li {
	width: 19.5%;
	margin-right: 0.6%;
}
#tab li:last-child {
	margin-right: 0%;
}
.content {
  display: none;
}
.content.show {
  display: block;
}




.list_news {
	padding-top: 60px;
}
.list_news dl {
	border-bottom: solid 1px #cccccc;
	padding: 20px 0;
}
.list_news dl:last-child {
	border-bottom: none;
	padding: 20px 0;
}
.list_news dt {
	float: left;
	width: 100px;
	margin-right: 30px;
}
.list_news dd {
}
.list_news .cat {
	background: #60b212;
	text-align: center;
	color: #FFF;
	padding: 5px 10px;
	font-size: 1.2rem;
	margin-right: 10px;
}




.box {
	background: #FFF;
	padding: 50px;
}


.area__flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: left;

	-webkit-flex-wrap: wrap; 
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}



.area__text {
	float: left;
	width: 48%;
}
.area__photo {
	float: right;
	width: 45%;
}
.area__gray {
	background: #f8fafa;
	padding: 30px;
}
.area__border {
	border: solid 3px #edf1f3;
	padding: 30px;
	background: #FFF;
}
.area__image {
	border: solid 3px #e0e0e0;
	padding: 50px;
}
.area__image img {
	display: block;
	width: 50%;
	margin: 0 auto;
}






.btn__list {
}
.btn__list li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%;
}
.btn__list li a {
	display: block;
	background: #f5f5f5;
	padding: 20px;
}
.btn__list li:nth-child(2n) {
	margin-right: 0%;
}









.anchor {
	background: #f5f5f5;
}
.anchor li {
	text-align: center;
	border-right: solid 1px #cccccc;
	font-size: 1.4rem;
}
.anchor li:last-child {
	border-right: none;
}
.anchor li a {
	color: #3a3a3a;
	display: block;
	padding: 20px 0;
}
.anchor.lay06 li {
	width: 14.2857%;
}
.anchor.lay04 li {
	width: 25%;
}
.anchor.lay03 li {
	width: 33.3333333%;
}










/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.title__headline {
}
.title__headline h2 {
	font-size: 3.4rem;
	font-family: "Noto Serif JP";
	font-weight: 500;
	color: #60b212;
	margin-bottom: 40px;
}

h3.title__subheadline {
	background: #f8fafa;
	padding: 15px;
	color: #60b212;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}


h3 {
	color: #60b212;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}








ul.dot {
}
	ul.dot li {
		margin-bottom: 5px;
	}
	ul.dot li:last-child {
		margin-bottom: 0;
	}
	ul.dot li::before {
		display: inline-block;
		content: "";
		margin-top: 12px;
		margin-right: 7px;
		width: 6px;
		height: 6px;
		vertical-align: top;
		border-radius: 5px;
		background-color: #60b212;
	}



.btn {
	width: 300px;
	margin: 0 auto;
	margin-top: 30px;
	position: relative;
	display: block;

	color: #FFF;
	text-align: center;
	
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
.btn a,
.btn span {
	display: block;
	padding: 10px 15px;
	color: #FFF;
	
	background: #000000;
	border-radius: 30px;
	
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
.btn a:hover,
.btn span:hover {
	background: #60b212;

}


.btn__color {
	width: 300px;
	margin: 30px auto;
	margin-top: 30px;
	position: relative;
	display: block;

	color: #FFF;
	text-align: center;
	
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
.btn__color a,
.btn__color span {
	display: block;
	padding: 10px 15px;
	color: #FFF;
	
	background: #60b212;
	border-radius: 30px;
	
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
.btn__color a:hover,
.btn__color span:hover {
	background: #000;

}


.btn__back {
	margin-top: 60px;
	text-align: center;
}
.btn__back a {
	background: #ebebeb;
	border-radius: 30px;
	display: inline-block;
	color: #000;
	padding: 15px 60px;
	font-size: 1.4rem;
}








.accordion-006 {
    margin-bottom: 7px;
    background-color: #f7f8fa;
    border-radius: 5px;
	padding: 15px 0 20px 0;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-weight: 600;
    cursor: pointer;
	text-align: left;
	
	color: #60b212;
	font-family: "Oswald";
	font-size: 1.8rem;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 1px;
    height: .9em;
    border-radius: 5px;
    background-color: #000000;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-006 summary::after {
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    margin: 0px 20px;
	padding: 15px;
    color: #333333;
    transition: transform .5s, opacity .5s;
	background: #FFF;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}



.flow {
	margin-top: 60px;
	margin-bottom: 10px;
}
.flow img.arrow {
	display: block;
	width: 100px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.flowBox {
	background: #FFF;
	padding: 30px;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .2);
	position: relative;
}
	.flowBox dt {
	}
	.flowBox .no {
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: #60b212;
		text-align: center;
		line-height: 30px;
		color: #FFF;
		position: absolute;
		top: -10px;
		left: -10px;
	}






/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#entry {
	position: relative;
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: -250px;
	
	z-index: 100;
}
#entry a {
	display: block;
	background: #60b212 url("../image/arrow_w.svg") no-repeat 95% center;
	background-size: 18px;
	border-radius: 3px;
	height: 300px;
	color: #fff;
	padding: 80px 50px;
}
#entry a:hover {
	background: #60b212 url("../image/arrow_w.svg") no-repeat 97% center;
	background-size: 18px;
}
#entry h3 {
	color: #FFF;
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 7rem;
	line-height: 1.4;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター(採用) */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#entry-recruit {
	position: relative;
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
	margin-bottom: -250px;
	
	z-index: 100;
}
#entry-recruit a {
	display: block;
	background: #12B29A url("../image/arrow_w.svg") no-repeat 95% center;
	background-size: 18px;
	border-radius: 3px;
	height: 300px;
	color: #fff;
	padding: 80px 50px;
}
#entry-recruit a:hover {
	background: #12B29A url("../image/arrow_w.svg") no-repeat 97% center;
	background-size: 18px;
}
#entry-recruit h3 {
	color: #FFF;
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 7rem;
	line-height: 1.4;
}



.footerLinks {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footerLinks dl {
	width: 25%;
	border-left: solid 1px #878787;
	padding-left: 20px;
	padding-right: 20px;
}
.footerLinks dl dt {
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}
.footerLinks dl dd {
	font-size: 1.2rem;
	margin-bottom: 30px;
}
.footerLinks dl li {
	margin-bottom: 10px;
}
.footerLinks dl li a {
	display: block;
	color: #FFF;
}
.footerLinks dl .set li {
	width: 100%;
}


footer {
	background: url("../image/bg_iron.webp") no-repeat center top;
	background-size: cover;
	font-size: 1.4rem;
	position: relative;
	padding: 300px 0 40px 0;
	color: #FFF;
}
footer .inner {
	position: relative;
	text-align: center;
}
footer .inner ul {
	margin-bottom: 40px;
}
footer .inner a {
	color: #FFF;
}


footer .inner img {
	width: 235px;
	margin-bottom: 20px;
}
footer .privacy {
	position: absolute;
	bottom: 0;
	right: 0;
}
footer .area__copy {
	font-size: 1.2rem;
	margin-top: 60px;
}










/* max 1023px */
@media screen and (max-width: 1023px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
table {
	margin: 10px 0;
	width: 100%;
	border-collapse: collapse;
	border-top: solid 1px #d9e4ec;
}
	table th {
		display: block;
		width: 100%;
		text-align: left;
		color: #60b212;
		padding: 20px 0 0 0;
		font-weight: 500;
		border-bottom: none;
	}
	table td {
		display: block;
		width: 100%;
		text-align: left;
		border-bottom: solid 1px #d9e4ec;
		padding: 0 0 20px 0;
		font-size: 1.4rem;
	}
	
	
body {
	font-size: 1.2rem;
}
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
header {
	position: fixed !important;
	width: 100%;
	top: 0;
	z-index: 10000;
	font-weight: 500;
	background: #FFF;
	
}
header #logo {
	padding: 5px;
	float: left;
	width: 175px;
}
header nav {
	display: none;
}
header .contact {
	float: right;
	margin: 5px 60px 5px 5px;
}
header .contact a {
	display: block;
	color: #FFF;
	background: #60b212;
	font-size: 1.4rem;
	line-height: 40px;
	padding: 0 20px;
	
	border-radius: 20px;
}
	

	

	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

.article {
	margin-bottom: 15%;
}
.cell {
	margin-top: 20px;
}

.section__title {
	padding: 20% 0 15% 0;
	position: relative;
}
.section__title h1 {
	font-size: 5rem;
	line-height: 1.4;
	
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
}
.section__title h1 span {
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-size: 1.4rem;
	display: block;
}





.section__area {
	margin-bottom: 15%;
}
.section__area--gray {
	margin-bottom: 15%;
}
.section__area--full {
	margin-bottom: 15%;
}


.box {
	background: #FFF;
	padding: 5%;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.title__headline {
}
.title__headline h2 {
	font-size: 2.4rem;
	font-family: "Noto Serif JP";
	font-weight: 500;
	color: #60b212;
	margin-bottom: 20px;
}

h3.title__subheadline {
	background: #f8fafa;
	padding: 15px;
	color: #60b212;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}


h3 {
	color: #60b212;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}
	
	
	
ul.dot {
}
	ul.dot li {
		margin-bottom: 10px;
	}
	ul.dot li::before {
		display: inline-block;
		content: "";
		margin-top: 8px;
		margin-right: 7px;
	}
	

.area__text {
	float: none;
	width: 100%;
}
.area__photo {
	float: none;
	width: 100%;
	margin-top: 5%;
}

	
.btn {
	position: relative;
	display: block;
	width: 100%;
}
	

	
	
	
.list_news {
	padding-top: 20px;
}
.list_news dl {
	border-bottom: solid 1px #cccccc;
	padding: 20px 0;
}
.list_news dl:last-child {
	border-bottom: none;
	padding: 20px 0;
}
.list_news dt {
	float: none;
	width: 100px;
	margin-right: 30px;
	margin-bottom: 10px;
}
.list_news dd {
}
.list_news .cat {
	display: inline-block;
	background: #60b212;
	text-align: center;
	color: #FFF;
	padding: 5px 10px;
	font-size: 1.2rem;
	margin-right: 10px;
}

	
	
	
.anchor {
	border-top: solid 1px #cccccc;
	background: #f5f5f5;
}
.anchor li {
	text-align: center;
	border-right: solid 1px #cccccc;
	border-bottom: solid 1px #cccccc;
	font-size: 1.4rem;
}
.anchor li:nth-child(2n) {
	border-right: none;
}
.anchor li:last-child {
	border-right: none;
	width: 100% !important;
}
.anchor li a {
	color: #3a3a3a;
	display: block;
	padding: 20px 0;
}
.anchor.lay06 li {
	width: 50%;
}
.anchor.lay04 li {
	width: 100%;
}
.anchor.lay03 li {
	width: 50%;
}
	
	
	
#tab {
	background: #60b212;
	padding: 10px 0;
	margin: 0;
}
#tab li {
	background: #FFF;
	text-align: center;
	display: block;
	padding: 10px 0;
}
#tab.lay03 li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%;
}
#tab.lay05 li {
	width: 49.5%;
	margin-right: 1%;
	margin-bottom: 1%;
}
#tab li:nth-child(2n) {
	margin-right: 0%;
}
	
	
	
.accordion-006 {
    margin-bottom: 7px;
    background-color: #f7f8fa;
    border-radius: 5px;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-weight: 600;
    cursor: pointer;
	font-size: 1.4rem;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 1px;
    height: .9em;
    border-radius: 5px;
    background-color: #0f4aa2;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-006 summary::after {
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
	margin: 0 20px;
}
	
	
	
.flow {
	width: 100%;
	margin: 0 auto;
	margin-top: 60px;
}
.flow img.arrow {
	display: block;
	width: 100px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.flowBox {
	background: #FFF;
	padding: 30px;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .2);
	position: relative;
}
	.flowBox dt {
	}
	.flowBox .no {
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: #60b212;
		text-align: center;
		line-height: 30px;
		color: #FFF;
		position: absolute;
		top: -10px;
		left: -10px;
	}
	
	
	
	

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#entry {
	position: relative;
	max-width: 96%;
	margin: 0 auto;
	margin-bottom: -120px;
	
	z-index: 100;
	text-align: center;
}
#entry a {
	display: block;
	background: #60b212 url("../image/arrow_w.svg") no-repeat 95% center;
	background-size: 18px;
	border-radius: 3px;
	height: 150px;
	color: #fff;
	padding: 25px 50px;
}
#entry a:hover {
	background: #60b212 url("../image/arrow_w.svg") no-repeat 97% center;
	background-size: 18px;
}
#entry h3 {
	color: #FFF;
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4rem;
	line-height: 1.4;
}

	
.footerLinks {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footerLinks dl {
	width: 50%;
	border-left: solid 1px #878787;
	padding-left: 20px;
	padding-right: 20px;
}
.footerLinks dl dt {
	color: #FFF;
	font-size: 1.8rem;
	margin-bottom: 15px;
}
.footerLinks dl dd {
	font-size: 1.2rem;
	margin-bottom: 30px;
}
.footerLinks dl li {
	margin-bottom: 10px;
}
.footerLinks dl li a {
	display: block;
	color: #FFF;
}
.footerLinks dl .set li {
	width: 100%;
}
	
	
	

footer {
	background: url("../image/bg_iron.webp") no-repeat center top;
	background-size: cover;
	font-size: 1.4rem;
	position: relative;
	padding: 150px 0 40px 0;
	color: #FFF;
}
footer .inner {
	position: relative;
	text-align: center;
}
footer .inner ul {
	margin-bottom: 40px;
}
footer .inner a {
	color: #FFF;
}


footer .inner img {
	width: 70%;
	margin-bottom: 20px;
}
footer .privacy {
	position: relative;
	bottom: 0;
	right: 0;
	margin-top: 30px;
}
footer .area__copy {
	margin-top: 30px;
}
	
	
	
}