.gift-scene__title img {
	width: 100%;
}
.gift-scene__txtbox {
	width: 100%;
	margin-top: 3rem;
}
.gift-scene__txtbox h2 {
	margin: 1rem 0;
    font-size: 20px;
    line-height: 1.4;
}
.gift-scene__txtbox p {
    font-size: 13px;
    line-height: 1.8;
}
.column {
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 2rem;
    align-items: flex-start;
}
.gift-scene__txtbox .txt_area,
.gift-scene__txtbox .img_area {
	width: 100%;
}
.gift-scene__txtbox .img_area {
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.gift-scene__lineup {
    margin-top: 5rem;
}
.gift-scene__lineup h2 {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.5;
	padding: 1rem;
}
.gift-scene__lineup .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 20px;
}
.lineup_column {
    width: calc(100% / 2 - 10px);
	box-sizing: border-box;
}
.lineup_column img {
	width: 100%;
    height: 200px;
    object-fit: cover;
	margin-top: 0.5rem;
}
.keyword .lineup_column {
    width: calc(100% / 3 - 20px);
}

.gift-scene__lineup a {
    display: block;
    border: 1px solid #e8e6df;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin: 0 0 2rem;
    padding: 1.5rem 2.5rem;
	color: #333;
}
.gift-scene__lineup a:hover {
	opacity: 1;
}
.gift-scene__lineup a h3 {
    margin: 10px 0 5px;
    font-size: 2rem;
	line-height: 1.5;
    background: url(/category/img/arrow_right.png) no-repeat;
    background-size: 23px auto;
    background-position: right 4px center;
    transition: .2s ease-in-out;
}
.gift-scene__lineup a:hover h3 {
	background-position: right 0 center;
}
.gift-scene__lineup a p {
    font-size: 14px;
}
article .gift-scene__lineup a:hover p {
    color: #333;
	background: #fff;
}
.gift-scene__lineup a:hover img {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.gift-scene__txtbox h2 {
		font-size: 16px;
	}
    .column {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
	.gift-scene__txtbox .img_area img {
		width: 100%;
	}
	.gift-scene__lineup h2 {
		font-size: 2.2rem;
	}
	.gift-scene__lineup .list {
		flex-wrap: wrap;
		gap: 0;
	}
	.lineup_column, .keyword .lineup_column {
		width: 100%;
	}
	.gift-scene__lineup a {
		margin: 1rem 0;
	}
	.gift-scene__lineup a h3 {
		margin-top: 0;
	}
}