
/*
Theme Name: morikubo partners
Author: YES-REFORM CO., LTD.
Version: 1.0.0
*/

:root {
/* ブランドカラー */
--color-primary: #00bda1;
--color-secondary: #00a1b6;
--color-tertiary: #ffde00;
--color-accent: #d54e44;

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

/* 境界・背景カラー */
--border-color: #e3e1dc;
--bg-grey:#b3b3b3;
--bg-lightgrey:#f8f9f9;
--bg-lightgreen:#e5f6f0;
--bg-darkgreen:#578c7b;
--bg-beige:#f1eee9;

/* フォントファミリー */
--font-primary:"Noto Sans JP", sans-serif; /* 500 700 */
--font-secondary:"Jost", sans-serif; /* 400 */

/* フォントサイズ */
--font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
--font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 1.8rem);
--font-size-heading: clamp(2.4rem, 3vw + 0.8rem, 3.2rem);
--font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2.2rem);
--font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);

/* 行間 */
--line-height-base: 1.8;
--line-height-heading: 1.3;
--line-height-caption: 1.4;

/* 装飾 */
--shadow-box:7px 7px 12px 1px rgba(69, 69, 69, 0.2);


}

/* Body
========================================== */
html{}
html, body {
	width: 100%;
	font-size: 62.5%;
	overflow-x: clip; /*sticky用*/
}
body {
	line-height: var(--line-height-base);
	background-color: #fff;
	font-size: var(--font-size-body);
	font-family: var(--font-primary);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: var(--text-primary);
}
body.is-home{
	background: url("assets/img/body_bg.jpg")center top no-repeat;
	background-size: 100% auto;
}

@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: 1000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height:100px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.headerArea::before{
	position: absolute;
	left: 0;
	bottom: -1px;
	content: "";
	width: 100%;
	height: 1px;
	background-color:#b1cabb;
}
.headerLogo{
	margin-left: 20px;
	max-width: 280px;
}
.headerLogo a{
	display: block;
	text-decoration: none;
}
.headerLogo a img{
	width: 100%;
	height: auto;
}
.headerNaviWrap{
	display: flex;
	align-items: center;
	height:100px;
}
.headerNavi{margin:0 20px;}
.headerNavi ul{
	display: flex;
	flex-wrap: wrap;
	gap: .6em 0;
	justify-content:flex-end;
	list-style: none;
}
.headerNavi ul li a {
	line-height: 1.3;
	display: block;
	padding:0 1em;
	color: var(--text-primary);
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}
.headerNavi ul li a:hover{color: var(--color-primary);}
.headerAbout a{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 1em 1.5em;
	height:100px;
	text-decoration: none;
	color: var(--color-primary);
	white-space:nowrap;
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	box-sizing: border-box;
	background-color: #fff;
	transition: 0.3s;
}
.headerAbout a::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	mask-image: url("assets/img/icon_what.svg");
	-webkit-mask-image: url("assets/img/icon_what.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.headerAbout a:hover{
	background-color: #12b6cb;
	color: #fff;
}
.headerMember{padding:0 20px;}
.headerMember .membership,
.headerMember .mypage{margin-bottom:5px;}
.headerMember .membership a,
.headerMember .login a,
.headerMember .mypage a,
.headerMember .logout a{
	line-height: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding:5px 20px 5px 10px;
	width: 100%;
	gap:0 10px;
	background-color:var(--color-primary);
	box-sizing: border-box;
	border-radius: 4px;
	border:1px solid var(--color-primary);
	text-align: center;
	text-decoration: none;
	font-size: var(--font-size-caption);
	white-space:nowrap;
	color: #fff;
	transition: 0.3s;
}
.headerMember .mypage a{
	background-color: var(--color-tertiary);
	border-color: var(--color-tertiary);
	color: var(--text-primary);
}
.headerMember .membership a::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	mask-image: url("assets/img/icon_membership.svg");
	-webkit-mask-image: url("assets/img/icon_membership.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.headerMember .mypage a::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	mask-image: url("assets/img/icon_mypage.svg");
	-webkit-mask-image: url("assets/img/icon_mypage.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.headerMember .logout a::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	mask-image: url("assets/img/icon_logout.svg");
	-webkit-mask-image: url("assets/img/icon_logout.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.headerMember a::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	mask-image: url("assets/img/icon_login.svg");
	-webkit-mask-image: url("assets/img/icon_login.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.headerMember .membership a:hover,
.headerMember .login a:hover,
.headerMember .mypage a:hover,
.headerMember .logout a:hover{
	background-color: #fff;
	color: var(--text-primary);
}


.spMenuWrap{display: none;}
.spBtn,
.spMenu,
.overlay {
	opacity: 0;
	pointer-events: none;
}
@media screen and (max-width:1200px){
	.headerAbout a{padding: 1em 1em;}
	.headerMember .membership a,
	.headerMember .login a,
	.headerMember .mypage a,
	.headerMember .logout a{
		font-size: 1.2rem;
	}
}
@media screen and (max-width:1024px){
	.headerArea{
		z-index: 3000;
		height: 60px;
	}
	.headerArea.active::before{
		display: none;
	}
	.headerLogo {margin-left: 10px;width: auto;}
	.headerLogo a img{width: auto;height: 45px;}
	.headerNaviWrap{height:60px;padding-right: 60px;}
	.headerNavi{display: none;}
    .headerAbout a {
		border: none;
		height: 60px;
    }
	.headerAbout a:hover{
		text-decoration: underline;
		background-color: transparent;
		color: var(--color-primary);
	}
	.headerMember{padding: 0 10px;}
	.headerMember .membership,
	.headerMember .mypage{margin-bottom: 0;}
	.headerMember .membership a,
	.headerMember .login a,
	.headerMember .mypage a,
	.headerMember .logout a {width: 8em;padding: 0.3em .5em;}
	.headerMember .membership a::before,
	.headerMember .login a::before,
	.headerMember .mypage a::before,
	.headerMember .logout a::before {display: none;}


	.headerArea .linkWrap{display: block;padding: 0;}
	.spMenuWrap{display: block;}
	.spBtn{
		opacity: 1;
		pointer-events: auto;
		position:fixed;
		top: 5px;
		right: 5px;
		display: inline-block;
		width: 50px;
		height:50px;
		padding: 12px 15px 20px;
		border-radius: 5px;
		background-color: var(--color-primary);
		cursor: pointer;
		z-index: 3001;
	}
	.spBtn::after{
		position: absolute;
		left: 0;
		bottom: 3px;
		content: "MENU";
		text-align: center;
		width: 50px;
		font-size: 9px;
		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: #fff;
		z-index: 100;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}
	.overlay.active {
		opacity: 1;
		pointer-events: auto;
	}
	.spMenu{
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		position: fixed;
		top: 0; right: 0;
		width: 100%;
		height: 100%;
		z-index: 2000;
		transition: transform 0.3s ease;
		padding: 80px 2em 60px;
	}
	.spMenu.active{
		opacity: 1;
		pointer-events: auto;
	}
	.spMenu::-webkit-scrollbar{width: 10px;}
	.spMenu::-webkit-scrollbar-track{background: transparent;}
	.spMenu::-webkit-scrollbar-thumb {background: transparent;}

	.spNaviWrap{}
	.spNavi{
		margin-bottom: 3em;
		border-top: 1px solid var(--border-color);}

	.spNavi > li{border-bottom: 1px solid var(--border-color);}
	.spNavi > li > a{
		display: block;
		padding: 1em .5em;
		font-optical-sizing: auto;
		font-size: 1.5rem;
		font-weight: 500;
		color: var(--font-primary);
		text-decoration: none;
	}
	.spNavi > li > a:hover{text-decoration: underline;}

	.spInfo{
		margin-bottom: 30px;
		text-align: center;
		font-size: 1.4rem;
	}
	.spInfo .logo{margin-bottom: 20px;}
	.spInfo .logo img{max-width: 160px;height: auto;}
	.spInfo .logo a{display: block;}
	.spInfo .spCompany{margin-top: 30px;}
	.spInfo .spCompany dt{
		line-height: 1;
		width: fit-content;
		margin:0 auto .5em;
		padding: .2em;
		background-color: var(--color-tertiary);
	}
	.spInfo .spCompany dd a{
		position: relative;
		color: var(--color-primary);
		text-underline-offset: 7px
	}
	.spInfo .spCompany dd a::after{
		display: inline-block;
		content: "";
		width: 15px;
		height: 15px;
		margin-left: 10px;
		mask-image: url("assets/img/icon_link.svg");
		-webkit-mask-image: url("assets/img/icon_link.svg");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: contain;
		-webkit-mask-size: contain;
		background-color: currentColor;
		vertical-align:middle;
	}
}
@media screen and (max-width:599px) {
	.headerAbout{display: none;}
}
@media screen and (max-width:380px){
    .headerNaviWrap {
        padding-right: 50px;
    }
	.headerLogo a img{width: auto;height: 35px;}
}

.sideBanner{
	z-index: 100;
	position: fixed;
	top: 180px;
	right: 10px;
}
.sideBanner a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
	padding: 0 1em;
	min-height: 14em;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}
.sideBanner .btnBlue a{
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: #fff;
}
.sideBanner .btnYellow a{
	border-color: var(--color-tertiary);
	background-color: var(--color-tertiary);
	color: var(--text-primary);
}
.sideBanner .btnBlue a:hover,.sideBanner .btnYellow a:hover{background-color:#fff;color: var(--text-primary);}

@media screen and (max-width:1024px) {
	.sideBanner{
		z-index: 2000;
		top: auto;
		right: auto;
		left: 0;
		bottom:0;
		display: flex;
		width: 100%;
	}
	.sideBanner a {
		flex-direction: column;
		gap: 0;
		padding: 0 1em;
		min-height: 50px;
		-ms-writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		-o-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		border-radius: 0;
		border: 1px solid;
	}
	.sideBanner > div{width: 100%;}
	.sideBanner .iconContact a::before,
	.sideBanner .iconDocument a::before {
		display: none;
	}
}


/* contents
========================================== */
.contents {
	margin: 0 auto;
	width: 100%;
}
.contents p+p {margin-top: 1.5em;}
.contentsInner {
	margin: 0 auto;
	width: 1200px;
}
.contentsInner.flex{
	display: flex;
}

@media screen and (max-width:1200px) {
	.contentsInner {
		width: 100%;
		padding:0 clamp(20px, 5vw, 30px);
	}
}

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

/* mv
========================================== */
.mvArea {
	position: relative;
	width: 100%;
	padding-bottom:100px;
}

.mvArea .textWrap{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width:1200px;
}
.mvArea .textBlock{
	max-width: 55%;
}
.mvArea .textBlock .catch{
	line-height: 1.8;
	margin-bottom: 1em;
	font-size:min(3.125vw,5rem);
	text-shadow: 3px 3px 5px #fff, -3px 3px 5px #fff, 3px -3px 5px #fff, -3px -3px 5px #fff, 0 0 8px #fff, 0 0 10px #fff;
}
.mvArea .textBlock .text{
	line-height: 1.8;
	margin-bottom: 2em;
	text-shadow: 3px 3px 5px #fff, -3px 3px 5px #fff, 3px -3px 5px #fff, -3px -3px 5px #fff, 0 0 8px #fff, 0 0 10px #fff;
}
.mvArea .textBlock .btnLink{
	text-align: left;
	font-size:clamp(1.7rem, 1.5vw + 0.5rem, 2rem);
}
.mvArea .imageBlock{
	margin:100px 0 0 auto;
	width: 62.5%;
}
.mvArea .imageBlock img{
	width: 100%;
	height: auto;
}

.mvLinkWrap{
	display: flex;
	flex-wrap: wrap;
	gap:15px 60px;
	justify-content: center;
	margin-bottom:60px;
	padding: 0 clamp(20px, 5vw, 30px);
}
.mvLinkWrap .linkItem{
	text-align: center;
}
.mvLinkWrap .linkItem p{margin-bottom: 1em;}
.mvLinkWrap .linkItem a{
	font-size:clamp(1.7rem, 1.5vw + 0.5rem, 2rem);
}
@media screen and (max-width:1200px) {
	.mvArea .textWrap{
		width:100%;
		padding: 0 clamp(20px, 5vw, 30px);
	}
}
@media screen and (max-width:1024px){
	.mvArea {padding-top: 80px;}
	.mvArea .imageBlock {margin-top: 0;}
}
@media screen and (max-width:840px) {
	.mvArea{padding-bottom: 30px;}
	.mvArea .textWrap {
		position: relative;
		z-index: 2;
		top: 0;
		left: 0;
		transform: translate(0);
		padding-top: 20px;
		width: 100%;
	}
	.mvArea .textBlock {max-width: 100%;}
	.mvArea .imageBlock {
		position: absolute;
		top: 60px;
		right: 0;
		width: 65%;
	}
	.mvLinkWrap{margin-bottom:30px;}
}
@media screen and (max-width:599px) {
	.mvArea .textBlock .catch{font-size:2.4rem;}
	.mvArea .textBlock .text{font-size: 1.4rem;}
	.mvArea .textBlock .btnLink{text-align: center;}
	.mvLinkWrap .linkItem a{
		max-width: 40%;
	}
}

/* 課題から探す
========================================== */
.searchArea{
	background: url("assets/img/service_bg.jpg")center top no-repeat;
	padding:120px 0 30px;
}
.searchAreaInner{
	margin: 0 auto;
	max-width: 1200px;
	padding: 100px 5% 60px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: var(--shadow-box);
}

.searchArea .tabs{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1em;
	padding: 0 5%;
}

.searchArea .tabs li{
	width: calc((100% - 2em)/3);
}
.searchArea .tabs li a{
	line-height: var(--line-height-heading);
	display:block;
	padding: 1em 1em;
	text-decoration: none;
	background-color: var(--bg-darkgreen);
	border-radius: 4px 4px 0 0;
	color: #fff;
	text-align: center;
	font-size:clamp(1.6rem, 1.5vw + 0.5rem, 2rem);
	transition: 0.3s;
}
.searchArea .tabs li a small{
	display: block;
}

.searchArea .tabs li a:hover,
.searchArea .tabs li a.active{
	background-color: var(--color-primary);
}

.searchArea .panels > .panel{display: none;}
.searchArea .panels > .panel.active{
	display: block;
	padding:3% 3%;
	border-radius:4px;
	background-color: var(--color-primary);
	color: #fff;
}

.searchArea .panels > .panel .issueTitle{
	margin:1em 0 1em;
	text-align: center;
	font-weight: 700;
	font-size: var(--font-size-subheading);
	color:#fff;
}
.searchArea .panels > .panel .issueText{
	width: fit-content;
	margin: 0 auto 2em;
}


.issueMenu{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
	margin-top: 30px;
}

.issueMenu li a{
	position: relative;
	line-height: 1.3;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 1.5em 25px 1.5em 1em;
	background-color: var(--color-tertiary);
	border-radius: 3px;
	text-decoration: none;
	font-size: var(--font-size-subheading);
	font-weight: 700;
	color: var(--text-primary);
	transition: 0.3s;
}

.issueMenu li a::after {
	content: "";
    position: absolute;
    top: 50%;
    right:10px;
    transform: translateY(-50%) rotate(-90deg);
    width: 12px;
    height: 12px;
	mask-image: url("assets/img/icon_arrow.svg");
	-webkit-mask-image: url("assets/img/icon_arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
}
.issueMenu li a:hover{
	background-color: #fff;
}
@media screen and (max-width:1200px) {
	.searchArea .tabs{padding:0;}
}
@media screen and (max-width:840px) {
	.searchArea{
		padding:90px 0 30px;
	}
	.searchAreaInner{
		padding: 60px 5% 0;
		background-color: #fff;
		box-shadow: none;
	}
	.issueMenu li a{font-size: var(--font-size-accent);}
}
@media screen and (max-width:599px) {
	.searchArea .tabs{
		flex-wrap: wrap;
		margin-bottom: 1em;
		padding: 0 2em;
		gap: .6em;
	}

	.searchArea .tabs li{
		width: 100%;
	}
	.searchArea .tabs li a{
		padding: 1em 1em;
		border-radius: 4px;
	}
	.issueMenu{grid-template-columns: repeat(1,1fr);}
	.issueMenu li a{
		height: 100%;
		padding: 1em 25px 1em 1em;
	}
}


/* 事例
========================================== */
.caseArea{
	padding: 100px 0;
}
.caseList{
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:30px 5%;
}

.caseList > li{
	line-height: 1.2;
	background-color: #fff;
}
.caseList .imageBlock{margin-bottom: 20px;}
.caseList .imageBlock a{
	overflow: hidden;
	position: relative;
	display: block;
	aspect-ratio: 4/3;
}
.caseList .imageBlock a::before{
	content: "";
	display: block;
}
.caseList .imageBlock a img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
	transform: scale(1);
	transition: 0.5s;
}

.caseList .imageBlock a:hover img{transform: scale(1.2);}
.caseList li .title{
	margin-bottom: 1em;
}
.caseList li .title a{text-decoration: none;}
.caseList li .title a:hover{text-decoration: underline;color: var(--color-primary);}
.caseList li .tag{
	display: flex;
	flex-wrap: wrap;
	gap:.4em 1em;
}
.caseList li .tag a{
	text-decoration: none;
	color: var(--text-secondary);
	line-height: 1.4;
}
.caseList li .tag a:hover{
	text-decoration: underline;
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:840px) {
	.caseList.scrollInner{
		display: flex;
		overflow-x: auto;
		padding-right: 20px;
		padding-bottom: 30px;
		scroll-snap-type: x mandatory;
		gap: 20px 20px;
	}
	.caseList.scrollInner  li{
		flex: 0 0 250px;
		scroll-snap-align: start;
	}
	.caseList::-webkit-scrollbar{height: 10px;}
	.caseList::-webkit-scrollbar-track{background: var(--bg-lightgrey);}
	.caseList::-webkit-scrollbar-thumb {background: var(--color-secondary);}
	.caseList.sub{
		display: grid;
		gap: 30px;
		grid-template-columns: repeat(2,1fr);
	}
}
@media screen and (max-width:599px) {
	.caseList.sub{grid-template-columns: repeat(1,1fr);gap: 20px;}
	.caseList.sub > li{
		display: flex;
		align-items: self-start;
		gap: 20px;
		padding: 0 0 20px;
		border-radius: 0;
		box-shadow: none;
		border-bottom: 1px solid var(--border-color);
	}

	.caseList.sub li .imageBlock{width:20%;margin: 0;}
	.caseList.sub li .imageBlock a{aspect-ratio: 1/1;}
	.caseList.sub li .textBlock{width:80%;display: flex;flex-wrap: wrap;align-items: center;}
	.caseList.sub li .textBlock .title{width: 100%;margin-top: .6em;}
	.caseList.sub li .tag a{font-size: var(--font-size-caption);}
}



/* サービス
========================================== */
.serviceArea{
	padding: 120px 0 60px;
	/* background: url("assets/img/service_bg.jpg")center top no-repeat; */
	background-size: 100% auto;
}

/* メニュー */
.serviceMenu {
	counter-reset: serviceNum;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	margin-bottom: 60px;
}
.serviceMenu li { counter-increment: serviceNum; }
.serviceMenu .number {
	position: absolute;
	left: .8em;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
}
.serviceMenu li .number::before { content: counter(serviceNum, decimal-leading-zero) ".";}
.serviceMenu li a{
	line-height: 1.3;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	gap:1em;
	padding:1.5em 1em 1.5em 4em;
	background: #fff;
	border: 1px solid var(--color-primary);
	box-sizing: border-box;
	text-decoration: none;
	font-weight: 700;
	font-size: var(--font-size-accent);
	color: var(--text-primary);
	transition: 0.3s;
}
.serviceMenu li a::after{
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	mask-image: url("assets/img/icon_arrow.svg");
	-webkit-mask-image: url("assets/img/icon_arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: var(--color-primary);
}
.serviceMenu li a:hover .number{color: #fff;transition: 0.3s;}
.serviceMenu li a:hover::after{background-color: #fff;}

.serviceMenu .number {
	padding-top: 0.1em;
	font-weight: 400;
	font-family: var(--font-secondary);
	font-size: var(--font-size-subheading);
	color: var(--color-primary);
	flex-shrink: 0;
}
.serviceMenu li a:hover{
	background-color: var(--color-primary);
	color: #fff;
}
.serviceMenu .name {
	flex: 1;
}
@media screen and (max-width:840px){
	.serviceArea{
		padding: 80px 0 40px;
	}
	.serviceMenu {grid-template-columns: repeat(2, 1fr);}
	.serviceMenu li a {padding:1em 0.8em 1em 3.5em;}
}

@media screen and (max-width:599px){
	.serviceMenu li a{padding:.6em 1em .6em 3em;font-size: 1.5rem;}
	.serviceMenu li a::after{display: none;}
}
@media screen and (max-width:380px){
	.serviceMenu {grid-template-columns: 1fr;gap: 6px;}
	.serviceMenu li a {
		padding: 0.8em 0.8em 0.8em 3em;
	}
	.serviceMenu .number{padding-top: 0.2em;}
}



/* サービスグループ */
.serviceGroupWrap{
	counter-reset: serviceGroupNum;
	padding: 60px 5%;
	background-color: #fff;
}

.serviceGroup{
	margin-bottom: 60px;
}
.serviceGroup .serviceName{
	counter-increment: serviceGroupNum;
	display: flex;
	align-items: center;
	gap:1em;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	font-weight: 700;
	font-size: var(--font-size-subheading);
	color: var(--text-primary);
	border-bottom: 3px solid var(--color-primary);
}
.serviceGroup .serviceName .number::before { content: counter(serviceGroupNum, decimal-leading-zero) ".";}
.serviceGroup .serviceName .number {
	padding-top: 0.1em;
	font-weight: 400;
	font-family: var(--font-secondary);
	font-size: var(--font-size-heading);
	color: var(--color-primary);
	flex-shrink: 0;
}
.serviceGroup .serviceName .name {
	flex: 1;
}

.serviceList{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:30px 20px;
}
.serviceItem {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.serviceList .serviceItem > a{
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.serviceList .serviceItem .imageBlock{
	flex: 1;
	margin-bottom: 10px;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding:10px 20px;
}
.serviceList .serviceItem .imageBlock .name{
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}
.serviceList .serviceItem > a:hover .imageBlock .name{
	color: var(--color-primary);
	transition: 0.3s;
}
.serviceList .serviceItem > a:hover img{
	opacity: 0.6;
	transition: 0.3s;
}
.serviceItem .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	margin-bottom: 15px;
}

.serviceItem .logo img {
	max-height: 100%;
	max-width: 100%; 
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
@media screen and (max-width:1200px){
	.serviceGroupWrap{
		padding: 30px 0;
	}
}
@media screen and (max-width:1024px){
	.serviceGroup .serviceList{
		display: flex;
		overflow-x: auto;
		padding-bottom: 30px;
		scroll-snap-type: x mandatory;
	}
	.serviceGroup .serviceList .serviceItem{
		flex: 0 0 250px;
		scroll-snap-align: start;
	}
	.serviceGroup .serviceList::-webkit-scrollbar{height: 10px;}
	.serviceGroup .serviceList::-webkit-scrollbar-track{background: var(--bg-lightgrey);}
	.serviceGroup .serviceList::-webkit-scrollbar-thumb {background: var(--color-secondary);}

	.serviceList.sub{
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}
	.serviceList.sub .serviceItem{width: calc((100% - 30px)/2);}
}

@media screen and (max-width:599px){
	.serviceList .serviceItem{width:100%;}
	.serviceList.sub{
		gap:30px 20px;
	}
	.serviceList.sub .serviceItem{width: calc((100% - 20px)/2);}
}


/* 資料請求
========================================== */
.requestArea{
	padding: 100px 0;
	background-color: var(--color-primary);
}
.requestArea .catchTitle,
.requestArea .catchText{
	color: #fff;
}
.requestStepWrap{
	display: flex;
	align-items: center;
	gap: 90px;
	margin: 60px 0;
}

.requestStepItem{
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding:50px 30px;
	width: calc((100% - 90px * 2)/3);
	background-color: #fff;
	border-radius: 4px;
}
.requestStepItem::after{
	content: "";
	position: absolute;
	right: -110px;
	background: url(assets/img/icon_arrow.svg) left top/contain no-repeat;
	width: 60px;
	height: 60px;
	transform: rotate(-90deg) translateY(-50%);
}
.requestStepItem:last-of-type::after{display: none;}

.requestStepItem .imageBlock{width: 30%;text-align: center;}
.requestStepItem .imageBlock img{
	max-width: 100%;
	height: auto;
}
.requestStepItem .textBlock{
	line-height: 1.3;
	font-size:clamp(2rem, 2vw + 0.6rem, 3rem);
}
.requestStepItem .textBlock .number{
	margin-bottom: 10px;
	font-size: var(--font-size-subheading);
	font-family: var(--font-secondary);
	color: var(--color-primary);
}
@media screen and (max-width:1024px) {
	.requestStepItem .textBlock{text-align: center;}
	.requestStepItem .textBlock .number{font-size: 2rem;}
	.requestStepItem{
		flex-direction: column;
		gap: 20px;
		padding:1.5em 1.5em;
		width: calc((100% - 60px * 2)/3);
	}
}
@media screen and (max-width:840px) {
	.requestArea{
		padding: 80px 0;
	}
	.requestStepWrap{gap:30px 60px;}
	.requestStepItem .textBlock{text-align: center;}
	.requestStepItem .textBlock .number{font-size: 2rem;}
	.requestStepItem::after{
		top: 50%;
		right: -75px;
		width: 40px;
		height: 40px;
		transform: rotate(-90deg) translate(50%,-50%);
	}
}
@media screen and (max-width:599px){
	.requestStepWrap{
		flex-direction: column;
	}
	.requestStepItem{
		flex-direction: row;
		width: 100%;}
	.requestStepItem::after{
		right: auto;
		left: 50%;
		width: 30px;
		height: 30px;
		transform: rotate(0) translate(-50%,53px);
	}
	.requestStepItem .textBlock{text-align: left;}
}

/* Webセミナー
========================================== */
.webinarArea{
	padding: 120px 0;
	background: url("assets/img/service_bg.jpg")center top no-repeat;
	background-size: 100% auto;
}

.webinarCatchText{
	line-height: var(--line-height-heading);
	margin-bottom: 2em;
	font-size: var(--font-size-subheading);
	text-align: center;
	color: var(--color-secondary);
}

.webinarList{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px 3%;
	margin-bottom: 60px;
}

.webinarList li{
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.webinarList li > a.webinarList_link{
	display: block;
	flex: 1 1 auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: var(--shadow-box);
	border-radius: 4px;
	box-sizing: border-box;
	color: inherit;
	text-decoration: none;
	height: 100%;
}
.webinarList li > a.webinarList_link:focus-visible{
	outline: 2px solid var(--color-secondary);
	outline-offset: 2px;
}
.webinarList .movieBlock{margin-bottom: 20px;}
.webinarList .movieBlock img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: top;
	aspect-ratio: 160/90;
}
.webinarList li > a.webinarList_link:hover .movieBlock img{
	opacity: 0.7;
	transition: 0.3s;
}

.webinarList .date{
	font-family: var(--font-secondary);
	color: var(--text-tertiary);
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:840px) {
	.webinarArea{
		padding: 80px 0;
	}
	.scrollInner.webinarList {
		display: flex;
		overflow-x: auto;
		padding-right: 20px;
		padding-bottom: 30px;
		scroll-snap-type: x mandatory;
		gap: 20px 20px;
	}
	.scrollInner.webinarList li{
		flex: 0 0 250px;
		scroll-snap-align: start;
		display: flex;
		flex-direction: column;
	}
	.webinarList::-webkit-scrollbar{height: 10px;}
	.webinarList::-webkit-scrollbar-track{background: var(--bg-lightgrey);}
	.webinarList::-webkit-scrollbar-thumb {background: var(--color-secondary);}

}
@media screen and (max-width:599px) {
	.webinarList.sub{grid-template-columns: repeat(2,1fr);gap:30px 20px;}
}

@media screen and (max-width:380px) {
	.webinarList.sub{grid-template-columns: repeat(1,1fr);gap:30px 20px;}
}



/* イベント
========================================== */
.eventArea{
	padding: 100px 0;
}
.eventTabWrap{margin-bottom: 50px;}
.eventTabWrap .tabs{
	display:grid;
	gap: 10px;
	grid-template-columns: repeat(3,1fr);
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}
.eventTabWrap .tabs li a{
	display:block;
	padding: 20px 20px;
	border-radius: 4px 4px 0 0;
	background-color: var(--bg-grey);
	color:var(--text-primary);
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}

.eventTabWrap .tabs li a:hover,
.eventTabWrap .tabs li a.active{
	background-color: var(--color-secondary);
	color:#fff;
}

.eventTabWrap .panel{
	display: none;}

.eventTabWrap .panel.active{
	display: block;
	padding: 4%;
	background-color:#e3e1dc;
	border-radius: 4px;
}

.eventPanelWrap{
	display: flex;
	align-items: stretch;
	gap:20px 40px;
	padding: 30px;
	background-color: #fff;
	border-radius: 4px;
}
.eventPanelWrap + .eventPanelWrap{margin-top: 30px;}

.eventPanelWrap .categoryBlock,
.eventPanelWrap .detailBlock,
.eventPanelWrap .linkBlock{
	display: flex;
	flex-direction: column;
	justify-content: center;}

.eventPanelWrap .categoryBlock{
	align-items: center;
	width: 8em;
	border: 1px solid;
	box-sizing: border-box;}
.eventPanelWrap .detailBlock{width: calc(100% - 22em);}
.eventPanelWrap .linkBlock{width: 14em;align-items: center;}

.eventPanelWrap .categoryBlock.event{color: #458bdb;border-color: #458bdb;}
.eventPanelWrap .categoryBlock.seminar{color: #b69a00;border-color: #b69a00;}

.eventPanelWrap .title{
	line-height: var(--line-height-heading);
	margin-bottom: 1em;
	padding: 0 0 1em;
	border-bottom: 1px solid var(--border-color);
}

.eventPanelWrap dl{
	display: flex;
	align-items: flex-start;
	gap: 1em;
}
.eventPanelWrap dl:not(:last-of-type){margin-bottom: .5em;}
.eventPanelWrap dt{
	width: 4em;
	background-color: var(--color-primary);
	text-align: center;
	color: #fff;
}
.eventPanelWrap dd{width: calc(100% - 4em);}

.eventPanelWrap .btnMore,
.eventPanelWrap .btnEntry{
	display: block;
	width: 100%;
	text-align: center;
}

.eventPanelWrap .btnEntry{
	margin-top: 20px;
}

.eventPanelWrap .btnMore a,
.eventPanelWrap .btnEntry a{
	line-height: var(--line-height-heading);
	display:block;
	padding: 15px 1em;
	box-shadow: var(--shadow-box);
	box-sizing: border-box;
	border-radius: 4px;
	border:1px solid;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}
.eventPanelWrap .btnMore a{
	border-color: var(--color-primary);
	background-color:#fff;
	color:var(--color-primary);
}
.eventPanelWrap .btnEntry a{
	border-color: var(--color-primary);
	background-color:var(--color-primary);
}
.eventPanelWrap .btnEntry.closing a{
	border-color: var(--color-accent);
	background-color: var(--color-accent);
}
.eventPanelWrap .btnEntry.close{
	padding: 15px 1em;
	background-color: var(--bg-grey);
	border-radius: 4px;
	color: #fff;
}

.eventPanelWrap .btnMore a:hover{
	background-color: var(--color-primary);
	color: #fff;
}
.eventPanelWrap .btnEntry a:hover{
	background-color:#fff;
	color:var(--color-primary);
}
.eventPanelWrap .btnEntry.closing a:hover{
	background-color:#fff;
	color:var(--color-accent);
}

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

}

@media screen and (max-width: 840px) {
	.eventArea{
		padding: 80px 0;
	}
	.eventPanelWrap {
		flex-direction: column;
	}
	.eventPanelWrap .detailBlock{width: 100%;}
	.eventPanelWrap .linkBlock{margin: 0 auto;}
}
@media screen and (max-width: 599px) {
	.eventTabWrap .tabs li a{
		padding: .6em 1em;
	}
}





/* サービス提供企業様
========================================== */
.for-companiesArea{
	padding: 100px 0;
	background-color: var(--bg-lightgrey);
}

.for-companiesArea .contentsInner{
	gap: 30px;
}

.for-companiesArea .titleBlock,
.for-companiesArea .textBlock{width: 50%;}

.for-companiesArea .titleBlock .title{

}
.for-companiesArea .titleBlock .title .marker{
	line-height: 1;
	display: block;
	margin-bottom: .6em;
	padding: .2em .3em;
	width: fit-content;
	background-color: var(--color-tertiary);
	font-size:var(--font-size-subheading);
	font-weight: 700;
}
.for-companiesArea .titleBlock .title .ja{
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	font-size:clamp(2.2rem, 3vw + 0.625rem, 3rem);
	font-weight: 700;
	color: var(--color-secondary);
}
.for-companiesArea .titleBlock .title .en{
	line-height: 1;
	display: block;
	margin-top: 1.5em;
	font-family: var(--font-secondary);
	font-weight: 400;
	color:var(--text-tertiary);
}
.for-companiesArea .textBlock .linkWrap{
	display: flex;
	flex-wrap: wrap;
	gap:0 20px;
	margin-top: 30px;
}
@media screen and (max-width:840px) {
	.for-companiesArea{
		padding:80px 0;
	}

	.for-companiesArea .contentsInner{
		flex-direction: column;
		gap:30px;
	}
	.for-companiesArea .titleBlock,
	.for-companiesArea .textBlock{width: 100%;}
	.for-companiesArea .textBlock .linkWrap{justify-content: center;}
}


/* お役立ち情報
========================================== */
.columnArea{
	padding: 120px 0;
	background: url("assets/img/column_bg.jpg")center top /cover no-repeat;
	background-size: 100% 100%;
}

#columnSlider{
	position: relative;
}
.columnList{}
.columnList.sub{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}
.columnList > li{
	line-height: 1.2;
	padding: 20px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: var(--shadow-box);
}
.columnList .imageBlock{margin-bottom: 20px;}
.columnList .imageBlock a{
	overflow: hidden;
	position: relative;
	display: block;
	aspect-ratio: 4/3;
}
.columnList .imageBlock a::before{
	content: "";
	display: block;
}
.columnList .imageBlock a img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: 0.5s;
}

.columnList .imageBlock a:hover img{transform: scale(1.2);}
.columnList li .category{
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid var(--border-color);
}
.columnList li .category a{
	color: var(--text-secondary);
	font-size: var(--font-size-caption);
}
.columnList li .date{
	padding-bottom: 0.5em;
	color: var(--text-tertiary);
	font-family: var(--font-secondary);
	font-size: var(--font-size-caption);
}

.columnList li .category a{
	line-height: 1;
	text-decoration: none;}

.columnList li .category a:hover{
	text-decoration: underline;
	transition: 0.3s;
}
.columnList li .title{line-height: 1.5;}
.columnList li .title a{text-decoration: none;}
.columnList li .title a:hover{text-decoration: underline;color: var(--color-primary);}

#columnSlider{padding-bottom: 100px;}
#columnSlider .swiper-pagination{bottom: 30px;}
#columnSlider .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	border-radius: 0;
	background-color: #fff;
	border: 1px solid var(--color-primary);
	border-radius: 9999px;
	opacity: 1;
	margin: 0 5px;
}
#columnSlider  .swiper-pagination-bullet-active {background-color:var(--color-primary);}

@media screen and (max-width:840px){
	.columnList.sub{grid-template-columns: repeat(2,1fr);}
}

@media screen and (max-width:599px) {
	.columnArea{
		padding: 80px 0;
	}
	.columnList.sub{grid-template-columns: repeat(1,1fr);gap: 20px;}
	.columnList.sub > li{
		display: flex;
		align-items: self-start;
		gap: 20px;
		padding: 0 0 20px;
		border-radius: 0;
		box-shadow: none;
		border-bottom: 1px solid var(--border-color);
	}

	.columnList.sub li .imageBlock{width:20%;margin: 0;}
	.columnList.sub li .imageBlock a{aspect-ratio: 1/1;}
	.columnList.sub li .textBlock{width:80%;display: flex;flex-wrap: wrap;align-items: center;gap: 1em;}
	.columnList.sub li .category{border-bottom: none;margin-bottom: 0;order: 2;}
	.columnList.sub li .textBlock .title{width: 100%;order: 3;}

}


/* 新着情報
========================================== */
.newsArea{
	padding: 100px 0;
}
.newsArea .contentsInner{
	gap:0 5%;
	align-items: center;
}
.newsArea .titleBlock{
	width: fit-content;
	padding: 0 1em;
}
.newsArea .textBlock{
	flex: 1;
}
.newsList{}
.newsList li{
	line-height: 1.3;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:1em;
	padding: 1.3em;
	border-bottom: 1px solid #b1cabb;
}
.newsList.sub li{padding: 0 1em;}
.newsList li .date{
	width: 6em;
	padding-top: .3em;
	color: var(--text-tertiary);
	font-family: var(--font-secondary);
}
.newsList li .category a{
	text-decoration: none;
	color: var(--color-secondary);
}
.newsList li .category a:hover{text-decoration: underline;}
.newsList li .title{width:100%;}
.newsList li .title a{text-decoration: none;}
.newsList li .title a:hover{text-decoration: underline;color: var(--color-primary);}
@media screen and (max-width:1200px) {

}

@media screen and (max-width:840px){
	.newsArea .contentsInner{
		flex-direction: column;
	}
	.newsList{margin-bottom: 30px;width: 100%;}
	.newsList li{
		align-items: flex-start;
		width: 100%;
	}
	.newsArea .textBlock{
		width: 100%;
	}
}

@media screen and (max-width:599px){
	.newsArea{
		padding: 80px 0;
	}
	.newsList{width: 100%;}

}

/* トップコラム
========================================== */
.topColumnArea{
	padding: 100px 0;
	background: url(assets/img/column_bg.jpg) center top / cover no-repeat;
	background-size: 100% 100%;
}
.topColumnArea .contentsInner{
	gap:0 5%;
	align-items: center;
}
.topColumnArea .titleBlock{
	width: fit-content;
	padding: 0 1em;
}
.topColumnArea .textBlock{
	flex: 1;
	background: #fff;
	padding: 30px;
	border-radius: 4px;
}
.topColumnList{}
.topColumnList li{
	line-height: 1.3;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:1em;
	padding: 1.3em;
	border-bottom: 1px solid #b1cabb;
}
.topColumnList.sub li{padding: 0 1em;}
.topColumnList li .date{
	width: 6em;
	padding-top: .3em;
	color: var(--text-tertiary);
	font-family: var(--font-secondary);
}
.topColumnList li .category a{
	text-decoration: none;
	color: var(--text-secondary);
}
.topColumnList li .category a:hover{text-decoration: underline;}
.topColumnList li .title{width:100%;}
.topColumnList li .title a{text-decoration: none;}
.topColumnList li .title a:hover{text-decoration: underline;color: var(--color-primary);}
@media screen and (max-width:1200px) {

}

@media screen and (max-width:840px){
	.topColumnArea .contentsInner{
		flex-direction: column;
	}
	.topColumnList{margin-bottom: 30px;width: 100%;}
	.topColumnList li{
		align-items: flex-start;
		width: 100%;
	}
	.topColumnArea .textBlock{
		width: 100%;
	}
}

@media screen and (max-width:599px){
	.topColumnArea{
		padding: 80px 0;
	}
	.topColumnList{width: 100%;}

}


/* リンク
========================================== */
.linkArea{
	padding:30px 0;
	background-color: var(--color-secondary);
}

.linkWrap{
	display: grid;
	gap: 60px;
	grid-template-columns: repeat(3, 1fr);
}

.linkWrap .linkItem{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 30px;
	color: #fff;
}
.linkWrap .linkItem .title{
	line-height: var(--line-height-heading);
	margin-bottom: 1.5em;
	font-weight: 700;
	font-size: var(--font-size-subheading);
	text-align: center;
}
.linkWrap .linkItem .text{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
.linkWrap .linkItem .title .break,
.linkWrap .linkItem .text .break{
	flex-basis: 100%;
	height: 0;
}


.linkWrap .linkItem::after {
	content: "";
	position: absolute;
	top: 0;
	right: -30px;
	width: 1px;
	height: 100%;
	background: #12b6cb;
}
.linkWrap .linkItem::before {
	display: none;
}
.linkWrap .linkItem:nth-child(3n)::after { display: none; }
.linkWrap .linkItem .btnLink {margin-top: auto;}

@media screen and (max-width:1200px){
	.linkWrap{
		grid-template-columns: repeat(2, 1fr);
	}
	.linkWrap .linkItem::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -30px;
		height: 1px;
		width: 100%;
		background: #12b6cb;
		display: block;
	}
	.linkWrap .linkItem:nth-child(2n)::after { display: none; }
	.linkWrap .linkItem:last-child{
		grid-column: 1 / -1;
	}
	.linkWrap .linkItem:last-child::before { display: none; }
	.linkWrap .linkItem:last-child::after { display: none; }
}
@media screen and (max-width:840px){
	.linkWrap{
		display: grid;
		gap:20px 0;
		grid-template-columns: repeat(1,1fr);
	}
	.linkWrap .linkItem::after,
	.linkWrap .linkItem::before {
		display: none;
	}
	.linkWrap .linkItem:not(:last-of-type){
		border-bottom: 1px solid #12b6cb;
	}
	.linkWrap .linkItem{
		padding: 30px 20px;
	}
	.linkWrap .linkItem .text{
		display:block;
	}
	.linkWrap .linkItem .text .break {display: block;height: auto; }
	.linkWrap .linkItem .btnLink a{min-width: auto;}
}

@media screen and (max-width:599px){
	.linkWrap .linkItem .btnLink a{min-width: 260px;}
}


/* footer
========================================== */
footer {
	padding-top: 80px;
	width: 100%;
}
.footerWrap{
	margin: 0 auto;
	max-width: 1200px;
}
.footerWrap .inner{
	display: flex;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 60px;
}
.footerInfo{margin-top: 50px;}
.footerInfo .footerLogo{margin-bottom: 20px;}
.footerInfo .footerLogo img{
	width: 100%;
	max-width: 250px;
	height: auto;
	margin-bottom: 10px;
}
.footerInfo .footerLogo a{display: block;}
.footerInfo .footerCompany{
	margin-top:20px;
}
.footerInfo .footerCompany dt{
	line-height: 1;
	width: fit-content;
	margin-bottom: .5em;
	padding: .2em;
	background-color: var(--color-tertiary);
}
.footerInfo .footerCompany dd a{
	position: relative;
	color: var(--color-primary);
	text-underline-offset: 7px
}
.footerInfo .footerCompany dd a::after{
	display: inline-block;
	content: "";
	width: 15px;
	height: 15px;
	margin-left: 10px;
	mask-image: url("assets/img/icon_link.svg");
	-webkit-mask-image: url("assets/img/icon_link.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
	vertical-align:middle;
}

.footerMember{margin-top: 40px;}
.footerMember .btnLink a{width: 100%;padding:20px 34px 20px 20px;}

.footerNaviWrap{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}
.footerNaviWrap .groupTitle{
	margin-bottom: 1em;
	padding: 1em;
	border-bottom: 3px solid var(--color-primary);
	font-size: var(--font-size-accent);
	font-weight: 700;
}
.footerNaviWrap .subTitle{
	margin-bottom: 1em;
	padding: 0 1em;
	color: var(--color-primary);
}
.footerNavi ul{
	margin-bottom: 2em;
	padding: 0 1em;
}
.footerNavi ul li{
	position: relative;
	padding-left: 20px;
}
.footerNavi ul li::before{
	content: "";
	position: absolute;
	top: .5em;
	left: 0;
	transform: rotate(-90deg);
	width: 12px;
	height: 12px;
	mask-image: url("assets/img/icon_arrow.svg");
	-webkit-mask-image: url("assets/img/icon_arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: var(--color-primary);
}
.footerNavi ul li + li{margin-top: 1em;}
.footerNavi ul li a{
	line-height: 1.2;
	text-decoration: none;
	color: #8c8c8c;
}
.footerNavi ul li a:hover{
	text-decoration: underline;
}
.footerLink{
	display:grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3,auto);
	align-items: start;
	gap: .5em 0;
	margin-bottom: 60px;
}
.footerLink li{
	position: relative;
	padding-left: 20px;
}
.footerLink li::before{
	content: "";
	position: absolute;
	top: .5em;
	left: 0;
	transform: rotate(-90deg);
	width: 12px;
	height: 12px;
	mask-image: url("assets/img/icon_arrow.svg");
	-webkit-mask-image: url("assets/img/icon_arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: var(--color-primary);
}
.footerLink li a{
	line-height: 1.2;
	text-decoration: none;
	color: #8c8c8c;
}
.footerLink li a:hover{
	text-decoration: underline;
}
.footerLink li.externalLink{
	position: relative;
}
.footerLink li.externalLink::after{
	display: inline-block;
	content: "";
	margin-left:10px;
	background: url(assets/img/icon_link.svg) left bottom/contain no-repeat;
	width:14px;
	height:14px;
}

.copyright{
	padding: 1.5em 0;
	font-family: var(--font-secondary);
	font-weight: 500;
	text-align:center;
	color:var(--color-primary);
}

@media screen and (max-width: 1200px) {
	footer{padding-top: 60px;}
	.footerWrap{padding:0 clamp(20px, 5vw, 30px);}
	.footerNaviWrap{
		gap: 30px;
	}
}

@media screen and (max-width: 1024px) {
	footer{padding-bottom: 60px;}
}


@media screen and (max-width: 840px) {
	.footerWrap .inner{
		flex-direction: column;
		gap: 30px;
	}
	.footerInfo{width: fit-content;margin: 0 auto;}
	.footerInfo .footerLogo{text-align: center;}
	.footerLink{
		grid-template-rows: repeat(4,auto);
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 599px) {
	.footerLink{
		grid-template-rows: repeat(6,auto);
		gap:.6em 30px;
	}
	/* .footerInfo .footerLogo img{max-width: 160px;height: auto;} */
}

@media screen and (max-width: 380px) {
	.footerWrap .inner{margin-bottom: 30px;border-bottom: 1px solid var(--border-color);}
	.footerNaviWrap{
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}
	.footerLink{
		display: flex;
		flex-direction: column;
	}
	.footerNavi ul li a{font-size: 1.4rem;}
	.footerLink li a{font-size: 1.4rem;}
}


/* pageTop
========================================== */
#pageTop{
	position:fixed;
	line-height: 1;
	right:0;
	bottom:20px;
	z-index: 100;
	width: 70px;
}
#pageTop a{
	display: block;
}
#pageTop img{
	max-width:100%;
	height: auto;
}
#pageTop:hover{
	bottom:30px;
	transition: 0.3s;
}

@media screen and (max-width: 1200px) {
	#pageTop{width: 60px;}
}
@media screen and (max-width: 1024px) {
	#pageTop{display: none!important;}
}
