@charset "utf-8";

:root {
/* ブランドカラー */
--color-primary: #45a97f;
--color-secondary: #223a4c;
--color-accent: #a09381;

/* テキストカラー */
--text-primary: #222222;
--text-secondary: #a09381;

/* 境界・背景カラー */
--border-color: #e5e5e5;
--bg-grey:#f3f4f5;
--bg-beige: #ded0bd;
--bg-green:#d3e7d6;

/* フォントファミリー */
--font-primary:"Zen Kaku Gothic New", sans-serif;
--font-secondary:"Jost", sans-serif;

/* フォントサイズ */
--font-size-sm: 1.4rem;
--font-size-base: 1.6rem;
--font-size-md: 1.8rem;
--font-size-lg: 2.2rem;
--font-size-xl: 2.6rem;

/* 装飾 */
--shadow-primary: 5px 5px 20px 0.4px rgba(30, 38, 30, 0.25);
--shadow-light:drop-shadow(0 0 1px #fff);
}

/* Body
========================================== */
html{}
html, body {
	width: 100%;
	font-size: 62.5%;
	overflow-x: clip; /*sticky用*/
}
body {
	line-height: 1.8;
	font-size: var(--font-size-base);
	font-family: var(--font-primary);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--text-primary);
}
@media screen and (max-width: 599px) {
	body {word-wrap: break-word;font-size: 1.5rem;}
}

/*pc*/
@media screen and (min-width: 769px) {
	.sp {display: none !important;}
}
/*sp*/
@media screen and (max-width: 768px) {
	.pc {display: none !important;}
}

/* header
========================================== */
.headerArea {
	z-index: 1200;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	transition: background-color 1s ease;
}
.headerArea.scrolled {background-color: rgba(0, 0, 0, 0.75);}
.headerArea .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.headerLogo {padding-left: 2rem;width: fit-content;}
.headerLogo a {
	line-height: 1.5;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:0 20px;
	font-size: 1.4rem;
	font-weight: 600;
	text-decoration: none;
	color:#fff;
}
.headerLogo .logo{filter: var(--shadow-light);}
.headerLogo .logo img {
	max-width: 120px;
	height: auto;
}
.headerLogo a:hover{opacity: 0.7;transition: 0.3s;}

.headerInfo{display: flex;gap: 0 15px;}
.headerNavi{
	position: relative;
	z-index: 100;
}
.headerNavi > ul{
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}
.headerNavi > ul > li {
	position: relative;
}
.headerNavi > ul > li > a {
	line-height: 1.3;
	display: block;
	padding:2rem 2rem;
	color: #fff;
	font-weight: 600;
	font-size: var(--font-size-sm);
	text-decoration: none;
	text-align: center;
}
.headerNavi > ul > li > a:hover{text-decoration: underline;}
.headerNavi .subMenu > a{
	display: flex;
	align-items: center;
	gap: 10px;
}
.headerNavi .subMenu > a::after{
	display: block;
	top: 48%;
	right:5px;
	content: "";
	width: 8px;
	border-top: 5px solid #fff;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.headerNavi .subMenu > a:hover{text-decoration: none;}
.subMenuBox{
	position: fixed;
	/*top: 70px;*/
	left: 0;
	width: 100vw;
	background: #f9f9f9;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	z-index: 3000;
	padding: 30px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
}
.headerNavi > ul .subMenu:hover .subMenuBox{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.subMenuTop{
	width: 20%;
}
.subMenuImage{margin-bottom: 10px;}
.subMenuImage img{
	width: 100%;
	height: auto;
}
.subMenuTop a{
	position: relative;
	display: block;
	padding: .3em 0 .3em .5em;
	text-decoration: none;
	font-weight: 500;
	border-left: 5px solid var(--color-primary);
}
.subMenuTop a::after{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	transform: translateY(-50%) rotate(45deg);
	transition: 0.3s;
}
.subMenuTop a:hover::after{border-color: var(--color-secondary);right:10px;}
.subMenuList{
	display: flex;
	flex-wrap: wrap;
	gap:0 2em;
	width: calc(100% - 20% - 30px);
}
.subMenuList li{
	width: calc((100% - 2em * 2)/3);
	border-bottom: 1px solid var(--color-primary);
}
.subMenuList li a{
	display: block;
	position: relative;
	padding: 1em 40px 1em 0;
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}
.subMenuList li a::after{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	transform: translateY(-50%) rotate(45deg);
	transition: 0.3s;
}
.subMenuList li:hover{border-bottom-color:var(--color-secondary);}
.subMenuList li a:hover::after{
	right: 10px;
	border-color: var(--color-secondary);
}
.headerLang{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.headerLang select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 5px 32px 5px 10px;
	color: #333;
	font-size:1.4rem;
	box-sizing: border-box;
	cursor: pointer;
}
.headerLang::after {
	content:"▼";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #666;
	pointer-events: none;
}
.headerContact{
	line-height: 1.2;
	text-align: center;}
.headerContact a{
	position: relative;
	display: block;
	padding: 2.5rem 6rem;
	background-color: var(--color-primary);
	color:#fff;
	font-family: var(--font-secondary);
	letter-spacing: 2px;
	text-decoration: none;
}
.headerContact a::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	background: url(images/icn_arrow_white.svg) right top/contain no-repeat;
	transform: translateY(-50%);
	width:14px;
	height:12px;
	transition: .3s;
}
.headerContact a:hover{
	background-color: var(--color-secondary);
	transition: .3s;
}
.headerContact a:hover::after{right:15px;}

.spMenuWrap{display: none;}
.spBtn,
.spMenu,
.overlay {
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width: 1200px) {
	.headerLogo .logo img {max-width: 100px;}
	.headerInfo{display: flex;gap: 0 1em;}
	.headerNavi > ul > li > a {padding: 2rem 1rem;}
	.headerContact a{padding: 2.5rem 3rem;}
	.headerContact a::after{display: none;}
}

@media screen and (max-width:840px){
	.headerArea{position: absolute;background: none;z-index: 10;}
	.headerArea .inner{
		padding: 0 10px;
		height: 50px;
	}
	.headerLogo{padding:0;}
	.headerLogo img{width: 45px;height: auto;}
	.headerLogo a {font-size: 1.2rem;gap: 1em;}
	.headerNavi,
	.headerLang,
	.headerInfo{display: none;}

	.spMenuWrap{display: block;}
	.spBtn{
		opacity: 1;
		pointer-events: auto;
		position:fixed;
		top: 5px;
		right: 5px;
		display: inline-block;
		width: 50px;
		height:50px;
		padding: 20px 13px 15px;
		background-color: var(--color-primary);
		cursor: pointer;
		z-index: 2000;
	}
	.spBtn::after{
		position: absolute;
		left: 0;
		top: 3px;
		content: "MENU";
		text-align: center;
		width: 50px;
		font-size: 8px;
		color: #fff;
	}
	.spBtn.active::after{content: "CLOSE";}
	.spBtn div {position: relative;}
	.spBtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background:#fff;
		left: 0;
		transition: .3s ease;
	}
	.spBtn span:nth-child(1) {top: 0;}
	.spBtn span:nth-child(2) {top: 8px;}
	.spBtn span:nth-child(3) {top: 16px;}
	.spBtn.active span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.spBtn.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.spBtn.active span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.overlay {
		position: fixed;
		top: 0; left: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}
	.overlay.active {
		opacity: 1;
		pointer-events: auto;
	}
	.spLang{
		position: absolute;
		top: 13px;
		right: 70px;
	}
	.spLang select {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		background-color: #fff;
		border: 1px solid #ccc;
		border-radius: 4px;
		padding: 5px 32px 5px 10px;
		color: #333;
		font-size:1.2rem;
		box-sizing: border-box;
		cursor: pointer;
	}
	.spLang::after {
		content:"▼";
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 10px;
		color: #666;
		pointer-events: none;
	}
	.spMenu{
		overflow-y: auto;
		-webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
		position: fixed;
		top: 0; right: 0;
		width: 100%;
		height: 100vh;
		z-index: 1000;
		transition: transform 0.3s ease;
		padding: 80px 2em 0;
	}
	.spMenu.active{
		opacity: 1;
		pointer-events: auto;
	}
	.spMenu::-webkit-scrollbar{width: 10px;}
	.spMenu::-webkit-scrollbar-track{background: var(--main-color);}
	.spMenu::-webkit-scrollbar-thumb {background: var(--main-color);}

	.spNavi{
		margin-bottom: 3em;
		border-top: 1px solid #aaa;}

	.spNavi li{border-bottom: 1px solid #aaa;}
	.spNavi li a{
		display: block;
		padding: 1em 1em;
		font-optical-sizing: auto;
		font-size: 1.5rem;
		font-weight: 500;
		color: #fff;
		text-decoration: none;
	}
	.spNavi li.externalLink{
		position: relative;
	}
	.spNavi li.externalLink::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		background: url(images/icn_external_white.svg) left top/contain no-repeat;
		width:20px;
		height:20px;
	}
	.spInfo{
		margin-bottom: 30px;
		text-align: center;
		color: #fff;
		font-size: 1.4rem;
	}
	.spInfo .logo{
		margin-bottom: 20px;
		filter: var(--shadow-light);
	}
	.spInfo .logo a{display: block;}
	.spInfo .spTel{font-family: var(--font-secondary);}
	.spInfo .spTel a{
		line-height: 1.3;
		display: block;
		letter-spacing: 2px;
		width: fit-content;
		margin: 0 auto;
		text-decoration: none;
		font-size:3rem;
		color: var(--color-primary);
	}
	.spNaviSub{
		margin-bottom: 3em;}
	.spNaviSub li{
		position: relative;
		padding-left: 18px;
	}
	.spNaviSub li::before{
		position: absolute;
		left: 0;
		top: .6em;
		content: "";
		width: 6px;
		height: 6px;
		border-top: 1px solid #aaa;
		border-right: 1px solid #aaa;
		transform: rotate(45deg);
	}
	.spNaviSub li a{
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
		color: #fff;
		text-decoration: none;
	}
}

/* contents
========================================== */
/*.wrap{overflow: hidden;}*/
.contents {
	margin: 0 auto;
	width: 100%;
}
.contents p+p {margin-top: 1.5em;}
.contentsInner {
	margin: 0 auto;
	padding: 30px 0 60px;
	width: 1200px;
}

@media screen and (max-width:1200px) {
	.contentsInner {
		width: 100%;
		padding: 30px 30px 60px;
	}
}

@media screen and (max-width:599px) {
	.contentsInner {
		padding: 50px 20px;
	}
}

/* mv
========================================== */
.mvArea {
	position: relative;
	width: 100%;
}
.mvArea img{
	width: 100%;
	height: auto;
}

.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 16:9比率 */
	overflow: hidden;
}

.video-container iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 採用バナー
========================================== */
.sideRecruit{
	z-index: 1000;
	position: fixed;
	top: 30%;
	right: 0;
}
.sideRecruit a{
	display: block;
}
.sideRecruit a:hover{
	opacity: 0.8;
	transition: .3s;
}

.sideRecruit a img{width: 100%;height: auto;}

@media screen and (max-width:1200px) {
	.sideRecruit{width: 50px;}
}

@media screen and (max-width:840px) {
	.sideRecruit{display: none;}
}

/* 事業案内
========================================== */
.businessArea{
	padding: 100px 0 0;
	background:url(images/business_bg.jpg) left top/cover no-repeat;
	width: 100%;

}
.businessArea .catchTitle,
.businessArea .catchText{
	color: #fff;
	text-align: center;
}

.businessArea .catchTitle .text-block,
.businessArea .catchText .text-block{display: inline-block;}

.businessArea .sliderArea{
	position: relative;
	padding:60px 0 80px;
}

.businessArea .sliderArea::after{
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 50%;
	background-color: #fff;
}
.businessArea .sliderArea .inner{
	position: relative;
	z-index: 1;
}

@media screen and (max-width:599px) {
	.businessArea{padding:20px 0 0;}
	.businessArea .sliderArea{padding:30px 0 80px;}
}

/* 会社案内
========================================== */
.companyArea{
	display: flex;
	background:url(images/company_bg.jpg) right top/cover no-repeat;
}

.companyArea .companyTitleBox{
	padding:6em;
	width: 40%;
	background-color: rgba(30,38,30,0.7);
	text-align: center;
	color: #fff;
}
.companyContents{display: flex;width: 60%;}
.companyContents .companyBtn{
	background-color: rgba(30,38,30,0.7);
	outline: 1px solid #fff;
	outline-offset: -5px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	color: #fff;
	text-align: center;
	padding: 1em;
	cursor: pointer;
	transition: 0.3s;
}
.companyContents .companyBtn span{
	position: relative;
	padding-top: 50px;
}
.companyContents .companyBtn span::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(images/icn_arrow_white.svg)left top/contain no-repeat;
	width:14px;
	height:12px;
	transition: 0.3s;
}

.companyContents:hover .companyBtn{outline-color: var(--color-primary);}
.companyContents:hover .companyBtn span::before{background-image: url(images/icn_arrow_green.svg);}

.companyContents .companyMenu {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	background-color: rgba(30,38,30,0.7);
	padding: 6%;
	width: 100%;
}

.companyContents .companyMenu .link{
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, 1fr);
	gap:1.5em 5em;
}
.companyContents .companyMenu .link li{
	position: relative;
	padding-left: 20px;
}
.companyContents .companyMenu .link li::before{
	content: "";
	position: absolute;
	top: 1em;
	left: 0;
	width: 10px;
	height: 1px;
	background-color: #fff;
}
.companyContents .companyMenu .link li a{
	color: #fff;
	text-decoration: none;
}
.companyContents .companyMenu .link li a:hover{text-decoration: underline;}

.companyContents:hover .companyMenu {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width:1024px) {
	.companyArea .companyTitleBox{
		padding:6em 3em;
		width: 50%;
	}
	.companyContents .companyMenu .link{
		display: flex;
		flex-direction: column;
		gap:1em 2em;
	}
}

@media screen and (max-width: 840px) {
	.companyArea{
		display: block;
		background-image: url(images/company_bg_sp.jpg);
	}
	.companyArea .companyTitleBox{
		padding:4em;
		width: 100%;
		background-color: rgba(30,38,30,0.7);
		text-align: center;
		color: #fff;
	}
	.companyContents{display: none;}
}

/* リンク
========================================== */
.linkArea{
	margin: 0 auto;
	padding: 100px 0 60px;
	max-width: 1200px;
}
.linkList{
	display: flex;
	gap: 60px;
}
.linkList li{
	width: calc((100% - 60px)/2);
	box-shadow: var(--shadow-primary);
}
.linkList li a{display: block;}
.linkList li a img{width: 100%;height: auto;}
.linkList li a:hover img{opacity: .7;transition: .3s;}

@media screen and (max-width:1200px) {
	.linkArea{padding: 80px 30px;}
	.linkList{gap: 30px;}
	.linkList li{width: calc((100% - 30px)/2);}
}

@media screen and (max-width:599px) {
	.linkArea{padding: 50px 20px;}
	.linkList{flex-direction: column;}
	.linkList li{width:100%;}
}

/* 新着情報
========================================== */
.newsArea{
	margin: 0 auto;
	padding: 80px 0 100px;
	max-width: 1200px;
}
.newsArea .inner{
	display: grid;
	grid-template-columns: fit-content(100%) 1fr;
	gap: 3em;
}
.newsArea .inner .titleBox{width: fit-content;padding: 0 2em;}
.newsArea .inner .textBox{}
.newsList li{
	line-height: 1.3;
	display: flex;
	align-items: flex-start;
	gap:1em 2em;
	padding: 1em;
	border-bottom: 1px solid var(--border-color);
}
.newsList li .date{
	width: 6em;
	color: var(--text-secondary);
	font-family: var(--font-secondary);
}
.newsList li .category{
	line-height: 1;
	padding: .3em .5em;
	width: 9em;
	font-size: 1.4rem;
	text-align: center;
	background-color: var(--bg-beige);}
.newsList li .title{width: calc(100% - 15em);}
.newsList li .title a{text-decoration: none;}
.newsList li .title a:hover{text-decoration: underline;color: var(--color-primary);}

.newsCategory{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap:1em 2em;
	margin-bottom: 3em;
}
.newsCategory dt{font-weight: 400;width: 6em;}
.newsCategory dd ul{
	display: flex;
	flex-wrap: wrap;
	gap:.6em 1em;
}
.newsCategory dd ul li a{
	line-height: 1.2;
	display: block;
	padding:.3em 1em;
	border: 1px solid var(--bg-beige);
	text-decoration: none;
	transition: .3s;
}
.newsCategory dd ul li a:hover,
.newsCategory dd ul li.current a{background-color: var(--bg-beige);}

@media screen and (max-width:1200px) {
	.newsArea .inner{gap: 2em;padding: 0 30px;}
	.newsArea .inner .titleBox{padding: 0 1em;}
}
@media screen and (max-width:840px) {
	.newsArea .inner .titleBox{margin: 0 auto;}
	.newsArea .inner{display: block;}
	.newsList li{display: block;}
	.newsList li .date,
	.newsList li .category{display: inline-block;}
	.newsList li .title{width: 100%;margin-top: 1em;}
}
@media screen and (max-width:599px) {
	.newsArea{padding: 50px 0;}
	.newsArea .inner{padding: 0 20px;}
}


/* お問い合わせ
========================================== */
.contactArea{
	padding: 30px 0;
	background:url(images/contact_bg.jpg) left top/cover no-repeat;

}
.contactArea .inner{
	margin: 0 auto;
	padding:5% 6% 3%;
	max-width: 1200px;
	border: 1px solid #fff;
	box-sizing: border-box;
}

.contactArea .ttlMain{margin-bottom: 1.5em;}
.contactList{
	display: flex;
	align-self: center;
	gap: 60px;
	border-top: 1px solid #fff;
	padding-top: 40px;
}
.contactList .contactTel,
.contactList .contactLink{
	width: calc((100% - 60px)/2);
	text-align: center;
}
.contactList .contactTel{
	font-size: var(--font-size-lg);
	font-family: var(--font-secondary);
	color: #fff;}
.contactList .contactTel a{
	line-height: 1.3;
    display: block;
    letter-spacing: 2px;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    font-size: clamp(3rem, 4.762vw, 4.4rem);
    color: var(--color-primary);
}
.contactList .contactLink a{
	display: inline-block;
	padding:.5em 1.5em;
	box-sizing: border-box;
	border: 1px solid var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	color:#fff;
}
.contactList .contactLink a span{
	line-height: 1.3;
	position: relative;
	display: block;
	padding: 1.2em 5em 1.2em 1em;
	border-bottom: 1px solid var(--color-primary);
}
.contactList .contactLink a span::before{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "";
	background: url(images/icn_arrow_green.svg) right top/contain no-repeat;
	width:14px;
	height:12px;
}
.contactList .contactLink a:hover{
	background-color: var(--color-primary);
	transition: .3s;
}
.contactList .contactLink a:hover span{border-color: #fff;transition: .3s;}
.contactList .contactLink a:hover span::before{background-image: url(images/icn_arrow_white.svg);transition: .3s;}

@media screen and (max-width:1200px) {
	.contactArea{padding:30px;}
}

@media screen and (max-width:840px) {
	.contactList{flex-direction: column;gap: 20px;padding:30px 0 20px;}
	.contactList .contactTel,
	.contactList .contactLink{
		width: 100%;
	}
}
@media screen and (max-width:840px) {
	.contactArea{padding:20px;}
	.contactList .contactLink a span{padding: 1em 3em 1em 1em;}
}
@media screen and (max-width:599px) {
.contactArea .inner {padding: 40px 20px 0;}
}
@media screen and (max-width:380px) {
	.contactList .contactLink a span{padding: 1em 2em 1em 1em;}
	.contactList .contactLink a{
		padding:.5em 1em;}
}

/* footer
========================================== */
footer {width: 100%;}
.footerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding:100px 30px;
	max-width: 1200px;
}
.footerWrap a:hover img{
	opacity: .6;
	transition: .3s;
}
.footerInfo{width: 30%;text-align: center;}
.footerInfo .logo {margin-bottom: 20px;}
.footerInfo .logo a{display: block;}
.footerSns{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:1em;
	margin: 1.5em 0;
}
.footerSns li{line-height: 1;}

.footerNaviWrap{
	display: flex;
	justify-content:space-between;
	gap:1em 3em;
	width: 60%;
}
.footerNavi li + li{margin-top: 1.2em;}
.footerNavi li a{
	line-height: 1.2;
	text-decoration: none;
	font-weight: 600;
	color: var(--text-secondary);
}
.footerNavi li a:hover{
	text-decoration: underline;
}
.footerNavi li ul{margin-top: 1.2em;}
.footerNavi li ul li{
	position: relative;
	padding-left: 30px;
}
.footerNavi li ul li::before{
	content: "";
	position: absolute;
	top: 1em;
	left: 0;
	width: 12px;
	height: 1px;
	background-color: var(--color-accent);
}
.footerNavi li ul li a{
	font-weight: 400;
	color: var(--text-primary);
}

.footerNavi li.externalLink{
	position: relative;
}
.footerNavi li.externalLink::after{
	display: inline-block;
	content: "";
	padding-left:20px;
	background: url(images/icn_external_brown.svg) right top/contain no-repeat;
	width:14px;
	height:14px;
}
.footerTel{
	margin: 1em auto 30px;
	font-family: var(--font-secondary);
	color: var(--color-accent);
}
.footerTel a{
	line-height: 1.3;
	display:block;
	letter-spacing: 2px;
	width: fit-content;
	margin: 0 auto;
	text-decoration: none;
	font-size: clamp(3rem, 4.762vw,4rem);
	color: var(--color-primary);
}
.copyright {
	margin: 0 auto;
	padding:2rem 1rem;
	text-align: center;
	font-size: 1.2rem;
	background-color: var(--bg-beige);
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 840px) {
	.footerWrap {
		flex-direction: column;
		padding:60px 30px;
		gap: 30px;
	}
	.footerInfo{width: 100%;}
	.footerNaviWrap{width: 100%;}
}

@media screen and (max-width: 599px) {
	.footerWrap {padding:60px 20px 30px;}
	.footerNaviWrap {flex-wrap: wrap;gap:2em 1em;margin-bottom: 30px;}
	.footerNavi{width: calc((100% - 1em)/2);}
	.footerNavi li ul{margin-top:.6em;}
	.footerNavi li a{font-size: 1.4rem;}
	.footerNavi li + li{margin-top: .6em;}
	.footerNavi:last-child{display: flex;flex-wrap: wrap;gap:.6em 1em;width: 100%;}
	.footerNavi:last-child li{width: calc((100% - 1em)/2);}
	.footerNavi:last-child li + li{margin: 0;}
	.footerNavi li ul li{padding-left: 1em;}
	.footerNavi li ul li::before{display: none;}
}


/* pageTop
========================================== */
#pageTop{
	position:fixed;
	line-height: 1;
	right:10px;
	bottom:20px;
	z-index: 100;}
#pageTop a{
	display: block;
	position:relative;
	box-sizing: border-box;
	font-size: 1.2rem;
	text-decoration: none;
	transition: all .3s;
	width: 48px;
	height: 48px;
	background: var(--color-primary) url(images/icn_pagetop.svg) no-repeat center;
	background-size:30%;
}

#pageTop:hover a{background-color: var(--color-secondary);}

@media screen and (max-width: 599px) {
	#pageTop{display: none!important}
}
