body {
	background: var(--white);
}
#header .logo svg path {
	fill: var(--black);
}
#header .menu a span {
	background: var(--black);
}
#fix .fix_contact .circle_tit {
	color: var(--black);
}
#fix .fix_contact .circle > svg path {
	fill: var(--black);
}


.story {
	padding: 165px 0;
}
.story h3.tit {
	color: var(--black);
}

.list #grid {
	width: 100%;
	gap: 20px;
}
.list .grid-item {
	width: calc(33.333% - 14px);
}
.list .grid-item:nth-child(3n) {
	margin-right: 0;
}
.list .grid-item a {
	position: relative;
	width: 100%;
	padding: 100px 0;
	gap: 20px;
    box-sizing: border-box;
}
.list .grid-item:nth-child(3n-1) a {
	padding-top: 0;
}
.list .grid-item .thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 135%;
    overflow: hidden;
}
.list .grid-item .thumb img {
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    height: 100%;
    object-fit: cover;
	transition: transform .5s;
}
.list .grid-item .thumb:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0);
	background: rgba(11, 207, 98, 0.5);
	transition: all .5s;
	display: block;
	width: 200%;
    height: 150%;
	border-radius: 50%;
	z-index: 1;
	opacity: 0;
}
.list .grid-item button:hover .thumb:before {
	transform: translate(-50%,-50%) scale(1.5);
	opacity: 1;
}
.list .grid-item button:hover .thumb img {
	transform: translate(-50%,-50%) scale(1.1);
}
.list .grid-item .name {
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.072px;
}
.list .grid-item p {
	color: #888;
	font-size: 16px;
	letter-spacing: -0.048px;
	line-height: 1.3;
}



.story_detail .bg {
	position:relative;
	width: 100%;
	padding-bottom: 45%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.story_detail .inner {
	padding: 100px 20px;
}
.story_detail .conts {
	gap: 50px;
	color: var(--black);
	text-align: center;
}
.story_detail .conts p {
	font-size: 24px;
	line-height: 2;
	font-weight: 500;
	letter-spacing: -0.072px;
	word-break: keep-all;
}
.story_detail .conts h4 {
	font-size: 32px;
	line-height: 2;
	font-weight: 700;
	letter-spacing: -0.096px;
	word-break: keep-all;
}
.story_detail .conts .gap10 {
	gap: 10px;
}
.story_detail .txt_gray {
	color: #787878;
	line-height: 2;
	letter-spacing: -0.048px;
	margin-top: 10px;
}

.story_detail1 .img {
	text-align: center;
	padding: 50px 0;
	background: #FEBE98;
}
.story_detail1 .img img {
	max-width: 90%;
	margin: 0 auto;
}
.story_detail1 .grid2 .flex {
	justify-content: center;
	gap: 30px;
}
.story_detail1 .grid2 .flex img {
	max-width: 100%;
}





@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
	.list .grid-item a {
		padding: 60px 0;
	}
	.list .grid-item .info .date {
		font-size: 16px;
	}
	.list .grid-item .info .name {
		font-size: 18px;
	}
	
	.story_detail .inner {
		padding: 70px 20px;
	}
	.story_detail .conts {
		gap: 30px;
	}
	.story_detail .conts p {
		font-size: 18px;
		line-height: 1.4;
	}
	.story_detail .conts h4 {
		font-size: 22px;
	}
}
@media screen and (max-width: 768px) {
	.story {
		padding: 110px 0;
	}
	
	.list .grid-item {
		width: calc(50% - 10px);
	}
	.list .grid-item a {
		padding: 0;
	}
	.list .grid-item .name {
		font-size: 20px;
	}

	.story_detail .inner {
		padding: 30px 20px;
	}
	.story_detail .bg {
		padding-bottom: 70%;
	}
}
@media screen and (max-width: 480px) {
	.list #grid {
		gap: 50px;
	}
	.list .grid-item {
		width: 100%;
	}
	.list .grid-item .thumb {
		padding-bottom: 65%;
	}
	.list .grid-item a {
        padding: 0;
		gap: 10px;
    }
	.list .grid-item .name {
		font-size: 16px;
		letter-spacing: -0.048px;
	}
	.list .grid-item p {
		font-size: 14px;
	}

	.story_detail .conts h4 {
        font-size: 18px;
    }
	.story_detail .conts p {
        font-size: 16px;
	}
	.story_detail .conts p br.m {
		display: none;
	}
}