@charset "utf-8";
/* CSS Document */

.svc-shell{
	padding: 0 0 80px;
}
.svc-tabs{
	display: flex;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}
.svc-tab{
	flex: 1 1 50%;
	min-width: 0;
	max-width: 742px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 100px;
	border: 0;
	border-radius: 88px 88px 0 0;
	background: #e4e4e4;
	color: #4d4d4d;
	font-size: clamp(24px, 2.6vw, 46px);
	cursor: pointer;
	outline: none;
	user-select: none;
}
.svc-tab:focus-visible{
	outline: 3px solid #333;
	outline-offset: 4px;
}
.svc-tab i{
	font-size: 0.8em;
}
.svc-tab p{
	margin: 0;
	font-size: inherit;
	line-height: 1.2;
	white-space: nowrap;
  font-family: var(--vg-mincho);
  font-weight: bold;
}
.svc-tab.is-active{
	background: var(--vg-orange);
	color: #fff;
}
.svc-frame{
	border: 20px solid var(--vg-orange);
	padding: 80px 80px 100px;
	margin: -2px 0 80px;
	position: relative;
	z-index: 1;
}
.svc-panel{
	display: none;
}
body.gjs-dashed .svc-panel{
	display: block;
}
.svc-panel.is-active{
	display: block;
}
.svc-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px 60px;
	margin-bottom: 120px;
}
.svc-card__img{
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #c9c9c9;
	isolation: isolate;
}
.svc-card__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.svc-card__badge{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 43.75%;
	max-width: 280px;
	height: 16.67%;
	max-height: 60px;
	min-height: 40px;
	padding: 0 8% 0 6%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #fff;
	font-size: clamp(14px, 2.1vw, 28px);
	line-height: 1.2;
	white-space: nowrap;
	box-sizing: border-box;
}
.svc-card__badge::before{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--vg-orange);
	clip-path: polygon(0 0, 89.11% 0, 100% 100%, 0 100%);
	mix-blend-mode: multiply;
}
.svc-card__badge span{
	position: relative;
	z-index: 1;
}
.svc-card__txt{
	margin-top: 24px;
	font-size: 18px;
	line-height: 2.1;
	letter-spacing: 0.1em;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.svc-card__sns{
	display: flex;
	gap: 16px;
	margin-top: 20px;
	font-size: 22px;
	color: #333;
}
.case-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
}
.case-grid .webgene-item{
	margin: 0;
}
.case-grid .webgene-item a{
	display: block;
	background: var(--vg-orange);
	padding: 30px 30px 22px;
	color: #fff;
	text-align: center;
}
.case-grid .imgbox{
	aspect-ratio: 300 / 210;
	overflow: hidden;
	background: #ddd;
}
.case-grid .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.case-grid .ttl,
.case-grid .cate{
	margin: 0;
	color: #fff;
}
.case-grid .ttl{
	margin-top: 16px;
	font-size: 20px;
	letter-spacing: 0.08em;
}
.case-grid .ttl::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin: 10px 0 8px;
	background: #fff;
}
.case-grid .cate{
	font-family: var(--vg-display);
	font-size: 16px;
	letter-spacing: 0.08em;
}
.svc-more{
	margin-bottom: 80px;
}
.flow-list{
	display: grid;
	grid-template-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
	align-items: center;
	column-gap: 1.8%;
}
.flow-item{
	width: 100%;
	min-width: 0;
	max-width: 250px;
	justify-self: center;
	height: auto;
	min-height: 220px;
	background: #f0f0f0;
	border: 1px solid #dedede;
	border-radius: 20px;
	padding: 29px 12px 20px;
	text-align: center;
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.flow-arrow{
	display: block;
	width: 15px;
	height: 18px;
	margin: 0;
	color: #333;
	background: url("https://villagegroup.co.jp/system_panel/uploads/images/flow-arrow.svg") no-repeat center / 15px 18px;
}
.flow-item__step{
	font-family: var(--vg-display);
	font-size: clamp(14px, 1.5vw, 22px);
	letter-spacing: 0.08em;
	line-height: 1.2;
	color: var(--vg-orange);
	margin: 0 0 20px;
}
.flow-item__icon{
	width: min(100px, 58%);
	aspect-ratio: 1;
	height: auto;
	margin: 0 0 20px;
	border-radius: 50%;
	background: var(--vg-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}
.flow-item__icon img{
	display: block;
	width: auto;
	height: auto;
	max-width: 70%;
	max-height: 70%;
}
.flow-item__icon--5 img{
	position: absolute;
	max-width: none;
	max-height: none;
}
.flow-item__pic--5b{
	top: 16%;
	left: 31%;
	width: 45%;
	height: 33%;
}
.flow-item__pic--5a{
	top: 53%;
	left: 12%;
	width: 74%;
	height: 34%;
}
.flow-item > p:not(.flow-item__step){
	font-size: 18px;
	line-height: 1.2;
	color: #333;
	margin: 0;
}
.svc-cta{
	display: flex;
	justify-content: center;
	margin: 48px 0 100px;
}
.price-list{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 80px;
}
.price-item{
	width: 70.4%;
	max-width: 900px;
}
.price-item:nth-child(even){
	margin-left: auto;
}
.price-item h3{
	background: #0e0e0f;
	color: #fff;
	font-size: 28px;
	letter-spacing: 0.04em;
	padding: 16px 20px;
	margin: 0;
}
.price-item__body{
	display: flex;
	gap: 32px;
	padding: 28px 0 0;
}
.price-item__img{
	width: 370px;
	height: 370px;
	flex-shrink: 0;
	overflow: hidden;
	background: #ddd;
}
.price-item__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.price-item__info{
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.price-item__info p{
	font-size: 18px;
	line-height: 2.1;
	letter-spacing: 0.1em;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.price-item__num{
	margin: 20px 0 24px;
	font-size: 22px;
	-webkit-line-clamp: unset !important;
}
.price-item__num span{
	font-size: 35px;
	letter-spacing: 0.02em;
}

.shop-block{
	margin-bottom: 80px;
}
.shop-block__head{
	display: block;
	margin-bottom: 36px;
}
.shop-block__head h2{
	font-size: clamp(28px, 2.4vw, 38px);
	line-height: 1.2;
	white-space: nowrap;
	margin: 0 0 12px;
}
.shop-block__head::after{
	content: "";
	display: block;
	width: 100%;
	height: 4px;
}
.shop-block__head--west h2{
	color: var(--vg-orange);
}
.shop-block__head--west::after{
	background: var(--vg-orange);
}
.shop-block__head--east h2{
	color: var(--vg-east);
}
.shop-block__head--east::after{
	background: var(--vg-east);
}
.shop-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 48px;
}
.shop-item{
	display: flex;
	align-items: flex-start;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}
.shop-item__img{
	width: 120px;
	height: 80px;
	flex-shrink: 0;
	overflow: hidden;
	background: #ddd;
}
.shop-item__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shop-item__body{
	flex: 1;
	min-width: 0;
}
.shop-item__link{
	display: grid;
	grid-template-columns: 1fr 36px;
	column-gap: 16px;
	text-decoration: none;
	color: inherit;
}
.shop-item__link.is-disabled{
	pointer-events: none;
	cursor: default;
}
.shop-item__link.is-disabled .shop-item__btn{
	opacity: 0.35;
}
.shop-item__link h3,
.shop-item__link p:not(.shop-item__btn){
	grid-column: 1;
}
.shop-item__body h3{
	font-size: 18px;
	margin-bottom: 4px;
}
.shop-item__body p{
	font-size: 13px;
	line-height: 1.6;
	color: #555;
}
.shop-item__body a{
	color: #555;
}
.shop-item__body a p:not(.shop-item__btn){
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: inherit;
}
.shop-item__body a:hover{
	opacity: 1;
	color: var(--vg-orange);
}
.shop-block__head--east + .shop-grid .shop-item__body a:hover{
	color: var(--vg-east);
}
.shop-item__sns{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}
.shop-item__sns a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #333;
	text-decoration: none;
}
.shop-item__sns a img{
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}
.shop-item__sns a i{
	font-size: 28px;
	line-height: 1;
}
.shop-item__sns a:hover{
	opacity: 0.7;
}
.shop-item__btn{
	display: block;
	width: 36px;
	height: 36px;
	margin: 0;
	flex-shrink: 0;
	background: #fb5a00;
	grid-column: 2;
	grid-row: 1 / -1;
	align-self: end;
	position: relative;
	font-size: 0;
	line-height: 0;
	color: inherit;
}
.shop-item__btn::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 48%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	transform: translate(-50%, -50%) rotate(45deg);
}
.shop-item__btn--east{
	background: #1f2c8f;
}

@media screen and (max-width: 1280px){
	.svc-frame{
		padding-left: 60px;
		padding-right: 60px;
	}
	.svc-frame{
		border-width: 16px;
	}
	.price-item__img{
		width: 280px;
		height: 280px;
	}
}
@media screen and (max-width: 1080px){
	.svc-grid,
	.shop-grid{
		grid-template-columns: 1fr;
	}
	.case-grid{
		grid-template-columns: 1fr 1fr;
	}
	.flow-list{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
		gap: 24px 4%;
	}
	.flow-item{
		flex: 1 1 40%;
		width: 40%;
		max-width: 250px;
	}
	.flow-arrow{
		display: none;
	}
	.svc-card__badge{
		font-size: clamp(14px, 2.4vw, 20px);
	}
}
@media screen and (max-width: 850px){
	.svc-tab{
		height: 72px;
		border-radius: 32px 32px 0 0;
		font-size: clamp(16px, 2.8vw, 24px);
		gap: 8px;
		padding: 0 10px;
	}
	.svc-frame{
		padding: 40px 32px 60px;
		border-width: 12px;
	}
}
@media screen and (max-width: 768px){
	.svc-frame{
		padding: 40px 20px 60px;
		border-width: 10px;
	}
	.price-item{
		width: 100%;
		max-width: none;
	}
	.price-item:nth-child(even){
		margin-left: 0;
	}
	.price-item__body{
		flex-direction: column;
	}
	.price-item__img{
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}
}
@media screen and (max-width: 576px){
	.svc-tab{
		height: 60px;
		font-size: 16px;
		gap: 6px;
		padding: 0 8px;
	}
	.svc-card__badge{
		width: 52%;
		max-width: none;
		height: 18%;
		max-height: none;
		min-height: 36px;
		padding: 0 10% 0 6%;
		font-size: 14px;
	}
	.svc-card__txt,
	.flow-item > p:not(.flow-item__step),
	.price-item__info p,
	.shop-item__body h3{
		font-size: 14px;
	}
	.case-grid .ttl,
	.flow-item__step,
	.price-item__num{
		font-size: 16px;
	}
	.price-item h3,
	.shop-block__head h2{
		font-size: 22px;
	}
	.price-item__num span{
		font-size: 22px;
	}
	.case-grid{
		grid-template-columns: 1fr;
	}
	.shop-item{
		flex-wrap: wrap;
	}
}
