@charset "UTF-8";

/* ------------------------------------------------
                    下層ページ
--------------------------------------------------- */

/*---------- 共通 ----------*/
.sec-page-ttl {
	width: 100%;
	padding: 80px 0 50px;
}
.page-ttl-wrap {
	width: 100%;
	padding-top: 47px;
	text-align: center;
	position: relative;
}
.page-ttl-wrap::before {
	content: '';
	width: 22px;
	height: 22px;
	background: var(--color-light-green);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: calc(50% - 11px);
	z-index: 1;
}
.page-ttl-wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: calc(50% - 5px);
	z-index: 1;
}
.page-ttl-ja {
	margin-bottom: 10px;
	color: var(--color-txt-gray);
	font-size: 1.8rem;
    font-weight: 500;
	line-height: 1;
}
.page-ttl-en {
	color: var(--color-txt-black);
	font-size: 5.7rem;
	line-height: 1;
}

@media (max-width: 768px) {
	.sec-page-ttl {
		width: 100%;
		padding: 14vw 0 12vw;
	}
	.page-ttl-wrap {
		width: 100%;
		padding-top: 8vw;
		text-align: center;
		position: relative;
	}
	.page-ttl-wrap::before {
		content: '';
		width: 4vw;
		height: 4vw;
		top: 0;
		left: calc(50% - 2vw);
		z-index: 1;
	}
	.page-ttl-wrap::after {
		content: '';
		width: 2vw;
		height: 2vw;
		top: 1vw;
		left: calc(50% - 1vw);
		z-index: 1;
	}
	.page-ttl-ja {
		margin-bottom: 2vw;
		font-size: 3.4vw;
	}
	.page-ttl-en {
		font-size: 8.66vw;
	}
	
}



/*---------- Our Three Services ----------*/
.sec-introduction {
	width: 100%;
	position: relative;
}

/* 見出し */
.introduction-ttl-wrap {
	width: 100%;
	margin-bottom: 80px;
	align-items: flex-end;
	color: var(--color-txt-gray);
}
.introduction-ttl-en {
	display: inline-block;
	margin-right: 30px;
	font-size: 5.7rem;
	line-height: 1;
}
.introduction-ttl-ja {
	font-size: 1.6rem;
    font-weight: 500;
	line-height: 2;
}

/* アンカーリンク */
.introduction-item-wrap {
	width: 100%;
	margin-bottom: 100px;
	justify-content: space-between;
}
.introduction-item {
	width: 26%;
	display: flex;
	flex-direction: column;
}
.introduction-item-img-wrap {
	width: 80%;
	max-width: 140px;
	margin: 0 auto 20px;
	border-radius: 40px;
	overflow: hidden;
}

.introduction-item-num {
	margin-bottom: 10px;
	color: var(--color-txt-gray);
	font-size: 2.4rem;
	line-height: 2;
}
.introduction-item-ttl {
	margin-bottom: 25px;
	font-size: 2.7rem;
	font-weight: 500;
	line-height: 1.8;
}
.introduction-item-txt {
	margin-bottom: 10px;
	font-size: 1.6rem;
	line-height: 1.8;
}
.introduction-item-detail-list {
	width: 100%;
	margin-bottom: 10px;
}
.introduction-item-detail-list li {
	width: 100%;
	margin-bottom: 10px;
	padding-left: 17px;
	font-size: 1.6rem;
	line-height: 1.8;
	position: relative;
}
.introduction-item-detail-list li::after {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 0.6em;
	left: 0;
}

a.btn-icon-anchorlink {
	width: 44px;
	height: 44px;
	margin: auto auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transform: rotate(90deg);
}
a.btn-icon-anchorlink::before {
	content: '';
	width: 44px;
	height: 44px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 22px);
	right: 0;
	z-index: 1;
	transition: 0.3s ease-in-out;
}
a.btn-icon-anchorlink img {
	width: 19px;
	position: relative;
	z-index: 2;
}

@media (min-width: 769px) {
	a.btn-icon-anchorlink:hover::before {
		content: '';
		width: 34px;
		height: 34px;
		top: calc(50% - 17px);
		right: 5px;
		z-index: 1;
		transition: 0.3s ease-in-out;
	}
}

@media (max-width: 1000px) {

	/* アンカーリンク */
	.introduction-item {
		width: 30%;
		display: flex;
		flex-direction: column;
	}

	.introduction-item-ttl {
		margin-bottom: 20px;
		font-size: 2.4rem;
	}
	.introduction-item-detail-list {
		width: 100%;
		margin-bottom: 10px;
	}
	.introduction-item-detail-list li {
		font-size: 1.4rem;
	}
	
}

@media (max-width: 768px) {
	.sec-introduction {
		width: 100%;
		position: relative;
	}

	/* 見出し */
	.introduction-ttl-wrap {
		width: 100%;
		margin-bottom: 12vw;
		flex-direction: column;
		align-items: flex-start;
	}
	.introduction-ttl-en {
		display: block;
		margin-right: 0;
		margin-bottom: 2vw;
		font-size: 8.66vw;
	}
	.introduction-ttl-ja {
		display: block;
		font-size: 3.6vw;
	}

	/* アンカーリンク */
	.introduction-item-wrap {
		width: 100%;
		margin-bottom: 4vw;
		justify-content: flex-start;
		flex-direction: column;
	}
	.introduction-item {
		width: 100%;
		margin-bottom: 10vw;
		padding: 0;
		display: flex;
		flex-direction: column;
		position: relative;
	}
	.introduction-item-img-wrap {
		width: 20vw;
		max-width: 140px;
		margin: 0 auto;
		border-radius: 6vw;
		overflow: hidden;
		position: absolute;
		top: 1vw;
		left: 0;
	}

	.introduction-item-num {
		margin-bottom: 1vw;
		padding: 0 0 0 25vw;
		font-size: 4.8vw;
	}
	.introduction-item-ttl {
		margin-bottom: 5vw;
		padding: 0 0 0 25vw;
		font-size: 5.2vw;
	}
	.introduction-item-txt {
		margin-bottom: 2vw;
		font-size: 3.2vw;
	}
	.introduction-item-detail-list {
		width: 100%;
		margin-bottom: 1vw;
	}
	.introduction-item-detail-list li {
		width: 100%;
		margin-bottom: 2vw;
		padding-left: 3.2vw;
		font-size: 3.2vw;
	}
	.introduction-item-detail-list li::after {
		content: '';
		width: 2.2vw;
		height: 2.2vw;
		background: var(--color-green);
		border-radius: 50%;
		position: absolute;
		top: 0.6em;
		left: 0;
	}

	a.btn-icon-anchorlink {
		width: 9vw;
		height: 9vw;
	}
	a.btn-icon-anchorlink::before {
		content: '';
		width: 9vw;
		height: 9vw;
		top: calc(50% - 4.5vw);
	}
	a.btn-icon-anchorlink img {
		width: 4vw;
	}
	
}



/*---------- Service 詳細 ----------*/
.sec-service-detail {
	width: 100%;
	margin-bottom: 150px;
	position: relative;
}

/* セクション見出し */
.service-detail-ttl-wrap {
	width: 100%;
	margin-bottom: 70px;
	position: relative;
}
.service-detail-ttl-wrap::before {
	content: '';
	width: 100%;
	height: 1px;
	background: var(--color-txt-black);
	position: absolute;
	bottom: 1.4em;
	left: 0;
	z-index: 1;
}
.service-detail-ttl-num {
	width: 100%;
	margin-bottom: 15px;
	padding-left: 42px;
	color: var(--color-txt-gray);
	font-size: 1.5rem;
	line-height: 2;
}
.service-detail-ttl {
	display: inline-block;
	padding:0 50px 0 42px;
	background: var(--color-light-gray);
	font-size: 4.0rem;
	font-weight: 500;
	line-height: 1;
	position: relative;
	z-index: 2;
}
.service-detail-ttl::before {
	content: '';
	width: 22px;
	height: 22px;
	background: var(--color-light-green);
	border-radius: 50%;
	position: absolute;
	top: 0.3em;
	left: 0;
	z-index: 1;
}
.service-detail-ttl::after {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: calc(0.3em + 6px);
	left: 6px;
	z-index: 1;
}


/* コンテンツ */
.service-detail-cont {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 40px;
}
/* コンテンツ見出し */
.service-detail-mh {
	margin-bottom: 30px;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 2;
}

/* チェックリスト */
.service-detail-checklist {
	width: 100%;
	margin-bottom: 52px;
}
.service-detail-checklist li {
	width: 100%;
	margin-bottom: 8px;
	padding-left: 30px;
	font-size: 1.6rem;
	line-height: 2;
	position: relative;
}
.service-detail-checklist li::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("../../img/business/service/icon_check.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0.5em;
	left: 0;
	z-index: 1;
}
.txt-caption {
	font-size: 1.2rem;
	line-height: 1;
}


/* アコーディオンコンテンツ */
.service-detail-item-wrap {
	width: 100%;
	justify-content: space-between;
}
.service-detail-item {
	width: calc((100% - 40px) / 2);
	margin-bottom: 40px;
	padding: 40px 30px 20px;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color-txt-gray);
	border-radius: 50px;
}

.service-detail-item-ttl {
	margin-bottom: 10px;
	text-align: center;
	color: var(--color-black);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
}
.service-detail-item-txt-list {
	width: 100%;
	margin-bottom: 10px;
}
.service-detail-item-txt-list li {
	width: 100%;
	margin-bottom: 10px;
	padding-left: 17px;
	font-size: 1.6rem;
	line-height: 1.8;
	position: relative;
}
.service-detail-item-txt-list li:nth-child(n + 2) {
	display: none;
}
.service-detail-item-txt-list li::after {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--color-txt-gray);
	border-radius: 50%;
	position: absolute;
	top: 0.6em;
	left: 0;
}

.btn-more-wrap {
	width: 100%;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid #fff;
}

.btn-trigger {
	width: max-content;
	height: 27px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-txt-black);
	position: relative;

	border: none;
	background: none;
	padding: 0;
}
.btn-trigger::before {
	content: '';
	width: 27px;
	height: 27px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 13.5px);
	right: 0;
	transition: 0.3s ease-in-out;
	z-index: 1;
}
.btn-trigger span {
	display: inline-block;
	padding-right: 37px;
	font-size: 1.6rem;
}
.btn-trigger span::before {
	content: '';
	width: 1px;
	height: 11px;
	background: #fff;
	position: absolute;
	top: 8px;
	right: 13px;
	transition: 0.3s ease-in-out;
	z-index: 2;
}
.btn-trigger span::after {
	content: '';
	width: 11px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 13px;
	right: 8px;
	transition: 0.3s ease-in-out;
	z-index: 2;
}
.btn-trigger.is-open span::before {
	opacity: 0;
}


@media (min-width: 769px) {
	.btn-trigger:hover::before {
		content: '';
		width: 22px;
		height: 22px;
		background: var(--color-black);
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 11px);
		right: 2.5px;
		transition: 0.3s ease-in-out;
		z-index: 1;
	}
}



@media (max-width: 768px) {
	.sec-service-detail {
		width: 100%;
		margin-bottom: 22vw;
		position: relative;
	}

	/* セクション見出し */
	.service-detail-ttl-wrap {
		width: 100%;
		margin-bottom: 12vw;
		position: relative;
	}
	.service-detail-ttl-wrap::before {
		content: '';
		width: 100%;
		height: 1px;
		bottom: 1.0em;
	}
	.service-detail-ttl-num {
		width: 100%;
		margin-bottom: 3vw;
		padding-left: 8vw;
		font-size: 3.4vw;
	}
	.service-detail-ttl {
		display: inline-block;
		padding: 0 5vw 0 8vw;
		font-size: 5.66vw;
	}
	.service-detail-ttl::before {
		content: '';
		width: 4.4vw;
		height: 4.4vw;
		top: 0.2em;
		left: 0;
	}
	.service-detail-ttl::after {
		content: '';
		width: 2.2vw;
		height: 2.2vw;
		top: calc(0.2em + 1.1vw);
		left: 1.1vw;
	}


	/* コンテンツ */
	.service-detail-cont {
		width: 90%;
		max-width: initial;
		margin: 0 auto 8vw;
	}
	/* コンテンツ見出し */
	.service-detail-mh {
		margin-bottom: 5vw;
		font-size: 4.33vw;
	}

	/* チェックリスト */
	.service-detail-checklist {
		width: 100%;
		margin-bottom: 10vw;
	}
	.service-detail-checklist li {
		width: 100%;
		margin-bottom: 1.5vw;
		padding-left: 6vw;
		font-size: 3.4vw;
	}
	.service-detail-checklist li::before {
		content: '';
		width: 4vw;
		height: 4vw;
	}
	.txt-caption {
		font-size: 2.8vw;
	}


	/* アコーディオンコンテンツ */
	.service-detail-item-wrap {
		width: 100%;
		justify-content: space-between;
	}
	.service-detail-item {
		width: 100%;
		margin-bottom: 8vw;
		padding: 5vw 4vw 4vw;
		border-radius: 10vw;
	}

	.service-detail-item-ttl {
		margin-bottom: 2vw;
		font-size: 4.0vw;
	}
	.service-detail-item-txt-list {
		width: 100%;
		margin-bottom: 2vw;
	}
	.service-detail-item-txt-list li {
		width: 100%;
		margin-bottom: 2vw;
		padding-left: 3.8vw;
		font-size: 3.4vw;
	}
	.service-detail-item-txt-list li::after {
		content: '';
		width: 2.2vw;
		height: 2.2vw;
	}

	.btn-more-wrap {
		padding-top: 4vw;
	}

	.btn-trigger {
		height: 6vw;
	}
	.btn-trigger::before {
		content: '';
		width: 6vw;
		height: 6vw;
		top: calc(50% - 3vw);
	}
	.btn-trigger span {
		display: inline-block;
		padding-right: 8vw;
		font-size: 3.4vw;
	}
	.btn-trigger span::before {
		content: '';
		width: 1px;
		height: 3vw;
		background: #fff;
		position: absolute;
		top: 1.5vw;
		right: calc(3vw - 0.5px);
		transition: 0.3s ease-in-out;
		z-index: 2;
	}
	.btn-trigger span::after {
		content: '';
		width: 3vw;
		height: 1px;
		background: #fff;
		position: absolute;
		top: calc(3vw - 0.5px);
		right: 1.5vw;
		transition: 0.3s ease-in-out;
		z-index: 2;
	}
	.btn-trigger.is-open span::before {
		opacity: 0;
	}
	
}



/*---------- Case ----------*/
/* リスト */
.case-item-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
}
.case-item {
	width: 32%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 50px;
	padding: 30px 30px 40px;
}
.case-item + .case-item {
	margin-left: 40px;
}

.case-item-num {
	margin-bottom: 10px;
	color: var(--color-txt-gray);
	font-size: 2.4rem;
	line-height: 2;
}
.case-item-ttl {
	margin-bottom: 20px;
	font-size: 3.0rem;
	font-weight: 500;
	line-height: 1.8;
}

.case-tag-list {
	width: 100%;
	margin-bottom: 10px;
	align-items: center;
	justify-content: flex-start;
}
.case-tag {
	margin: 0 10px 10px 0;
	padding: 0 15px;
	display: inline-block;
	background: #E7E7E7;
	border-radius: 15px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 2;
}
.case-item-txt {
	margin-bottom: 20px;
	font-size: 1.6rem;
	line-height: 1.8;
}
.case-item .btn-icon-more {
	margin: auto auto 0;
}

@media (max-width: 768px) {

	/* リスト */
	.case-item-wrap {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.case-item {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		background: #fff;
		border-radius: 8vw;
		padding: 6vw 8vw 8vw;
	}
	.case-item + .case-item {
		margin: 6.66vw auto 0;
	}

	.case-item-num {
		margin-bottom: 2vw;
		font-size: 4.8vw;
		line-height: 2;
	}
	.case-item-ttl {
		margin-bottom: 4vw;
		font-size: 5.2vw;
	}

	.case-tag-list {
		width: 100%;
		margin-bottom: 2vw;
	}
	.case-tag {
		margin: 0 2vw 2vw 0;
		padding: 0 3vw;
		display: inline-block;
		background: #E7E7E7;
		border-radius: 3vw;
		font-size: 2.8vw;
	}
	.case-item-txt {
		margin-bottom: 4vw;
		font-size: 3.2vw;
	}
	.case-item .btn-icon-more {
		margin: auto auto 0;
	}
    
}






/*---------- ドキュメント・お問い合わせ ----------*/
.sec-bottom-links {
	width: 100%;
	padding: 0 0 165px;
	position: relative;
}
.sec-bottom-links .cont-inn {
	justify-content: space-between;
}

.bottom-link {
	width: calc((100% - 50px) / 2);
	padding: 70px 50px;
	border-radius: 80px;
	position: relative;
}
.bottom-link-document {
	background: linear-gradient( to bottom, #D8D8D8, #677671, #000000);
	background-size: 400% 400%;
	animation: bottomlinkGrad 10s ease infinite;
}
.bottom-link-contact {
	background: linear-gradient( to bottom, #C4D700, #109A98, #004831);
	background-size: 400% 400%;
	animation: bottomlinkGrad 10s ease infinite;
}

@keyframes bottomlinkGrad {
	0% {
		background-position: 50% 0%;
	}
	50% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 50% 0%;
	}
}

.bottom-link-ttl-wrap {
	width: 100%;
	margin-bottom: 100px;
	padding-left: 35px;
	position: relative;
	color: #fff;
}
.bottom-link-ttl-wrap::before {
	content: '';
	width: 20px;
	height: 20px;
	background: var(--color-light-green);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
.bottom-link-ttl-wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 3;
}

.bottom-link-ttl-ja {
	margin-bottom: 15px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
}
.bottom-link-ttl-en {
	font-size: 4.2rem;
	line-height: 1;
}

a.btn-bottom-link {
	width: 70px;
	height: 70px;
	margin: auto 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	position: relative;
}
a.btn-bottom-link::before {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s ease-in-out;
}
@media (min-width: 769px) {
	a.btn-bottom-link:hover::before {
		content: '';
		width: 90%;
		height: 90%;
		top: 5%;
		left: 5%;
	}
}

.bottom-link-document .btn-bottom-link img {
	width: 14px;
}
.bottom-link-contact .btn-bottom-link img {
	width: 17px;
}

@media (max-width: 768px) {
	.sec-bottom-links {
		width: 100%;
		padding: 6vw 0 12vw;
		position: relative;
	}
	.sec-bottom-links .cont-inn {
		justify-content: space-between;
	}

	.bottom-link {
		width: 90%;
		margin: 0 auto 8vw;
		padding: 8vw 6vw;
		border-radius: 10vw;
		position: relative;
	}

	.bottom-link-ttl-wrap {
		width: 100%;
		margin-bottom: 8vw;
		padding-left: 7vw;
	}
	.bottom-link-ttl-wrap::before {
		content: '';
		width: 4vw;
		height: 4vw;
	}
	.bottom-link-ttl-wrap::after {
		content: '';
		width: 2vw;
		height: 2vw;
		top: 1vw;
		left: 1vw;
	}

	.bottom-link-ttl-ja {
		margin-bottom: 3vw;
		font-size: 3.6vw;
	}
	.bottom-link-ttl-en {
		font-size: 7.8vw;
	}

	a.btn-bottom-link {
		width: 10vw;
		height: 10vw;
		margin: auto 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		position: relative;
	}
	a.btn-bottom-link::before {
		top: -1px;
		left: -1px;
	}

	.bottom-link-document .btn-bottom-link img {
		width: 2vw;
	}
	.bottom-link-contact .btn-bottom-link img {
		width: 2.8vw;
	}
    
}
