
.storyGrid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 70px;
	align-items: center
}
.storyText h2, .areaText h2, .chooseTitle h2 {
	font-size: clamp(34px, 4.6vw, 48px);
	line-height: 1.2;
	margin: 14px 0 18px;
	letter-spacing: -.04em
}
.storyText p, .areaText p, .chooseItem p {
	color: #666;
	margin: 0 0 18px
}
.storyPhoto {
	position: relative
}
.storyPhoto img {
	width: 100%;
	aspect-ratio: 1.06/1;
	object-fit: cover;
	border-radius: 34px;
	box-shadow: var(--shadow)
}
.storyBadge {
	position: absolute;
	left: -24px;
	bottom: 30px;
	background: #fff;
	border-radius: 24px;
	padding: 20px 22px;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	gap: 12px
}
.storyBadge b {
	font-size: 40px;
	line-height: 1;
	color: var(--orange)
}
.storyBadge span {
	font-size: 12px;
	line-height: 1.35;
	font-weight: 900;
	letter-spacing: .12em
}
.belief {
	background: linear-gradient(135deg, #f7f3ea, #fff8e3);
	position: relative;
	overflow: hidden
}
.belief:before {
	content: "BELIEF";
	position: absolute;
	right: 2%;
	bottom: 0;
	font-size: 11vw;
	font-weight: 900;
	color: rgba(0, 0, 0, .04);
	line-height: .8;
	letter-spacing: -.08em
}
.beliefGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
	z-index: 1
}
.beliefCard {
	background: rgba(255, 255, 255, .86);
	border-radius: 30px;
	padding: 34px;
	box-shadow: 0 18px 45px rgba(90, 72, 15, .08);
	transition: .35s
}
.beliefCard:hover {
	transform: translateY(-8px);
	background: #fff
}
/*
.iconCircle {
	width: 70px;
	height: 70px;
	border-radius: 22px;
	background: linear-gradient(135deg, var(--yellow), var(--orange));
	display: grid;
	place-items: center;
	margin-bottom: 24px
}
.iconCircle svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: #222;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round
}
*/
/*==========================
Belief Icon
==========================*/

.iconCircle{
    width:120px;
    height:120px;
    margin:0 auto 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff7e8;
    border-radius:50%;
    transition:.35s;
}

.iconCircle img{
    width:78px;
    height:78px;
    object-fit:contain;
    display:block;
    transition:.35s;
}

.beliefCard:hover .iconCircle{
    background:var(--yellow);
    transform:translateY(-5px);
}

.beliefCard:hover .iconCircle img{
    transform:scale(1.08);
}

.beliefCard h3 {
	font-size: 25px;
	margin: 0 0 10px
}
.beliefCard p {
	color: #666;
	margin: 0
}
.serviceArea {
	background: #fff;
	position: relative
}
.serviceArea:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 40%;
	height: 100%;
	background: #f7f7f7;
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%)
}
.areaGrid {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 70px;
	align-items: center;
	position: relative;
	z-index: 1
}
.areaPhoto img {
	border-radius: 34px;
	box-shadow: var(--shadow);
	aspect-ratio: 1.22/1;
	object-fit: cover
}
.areaTags {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px
}
.areaTags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 46px;
	border-radius: 99px;
	background: var(--yellow);
	font-weight: 900;
	color: #222
}
.choose {
	background: #202020;
	color: #fff;
	position: relative;
	overflow: hidden
}
.choose:before {
	content: "WEI";
	position: absolute;
	left: -20px;
	top: 10px;
	font-size: 18vw;
	font-weight: 900;
	color: rgba(255, 255, 255, .04);
	line-height: 1
}
.chooseGrid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 70px;
	position: relative;
	z-index: 1
}
.chooseTitle h2 {
	color: #fff
}
.chooseList {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px
}
.chooseItem {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 26px;
	background: rgba(255, 255, 255, .06);
	transition: .35s
}
.chooseItem:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, .1)
}
.chooseItem b {
	display: inline-flex;
	color: var(--yellow);
	font-size: 14px;
	letter-spacing: .12em;
	margin-bottom: 12px
}
.chooseItem h3 {
	font-size: 22px;
	margin: 0 0 8px
}
.chooseItem p {
	color: rgba(255, 255, 255, .68);
	margin: 0
}
@media(max-width:1100px) {
	.storyGrid, .areaGrid, .chooseGrid {
		grid-template-columns: 1fr
	}
	.beliefGrid {
		grid-template-columns: repeat(2, 1fr)
	}
	.serviceArea:before {
		display: none
	}
}
@media(max-width:720px) {
	.storyGrid, .areaGrid, .chooseGrid {
		gap: 36px
	}
	.storyBadge {
		left: 14px;
		right: 14px;
		bottom: 14px
	}
	.beliefGrid, .chooseList {
		grid-template-columns: 1fr
	}
	.beliefCard, .chooseItem {
		padding: 26px
	}
	.areaTags span {
		min-width: calc(50% - 6px)
	}
}