html{
	font-size: 16px;
}

body {
    max-width: 100%;
    margin: auto;
    position: relative;
}

body:before{
	content: "";
	background-size: auto auto;
    background-color: rgba(204, 232, 235, 1);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(222, 240, 242, 1) 30px, rgba(222, 240, 242, 1) 60px), repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(185, 224, 227, 1) 60px, rgba(185, 224, 227, 1) 120px);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    opacity: 0.6;
}

img{
	width: 100%;
}

body>*{
	position: relative;
	z-index: 2;
}

a{
	transition: all 0.5s;
}

a:hover{
	opacity: 0.7;
}

.campaign_info {
    height: 100vh;
    padding: 0 0 5%;
}

.campaign_title {
    text-align: center;
    margin: 0;
    padding: 5%;
}

.title_logo {
    width: 20rem;
    margin: 0 auto 2%;
}

.title_text{
    color: #00a99d;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.campaign_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    gap: 3rem 2rem;
    max-width: 1280px;
}

.campaign_item {
    margin: 0;
    width: calc(50% - 1rem);
    background: #fff;
    line-height: 0;
    border-radius: 30px;
}

.illust {
    height: 60vh;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
}

.illust_img1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
}

.illust_img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
}



@media screen and (max-width: 768px){
html{
	font-size: 14px;
}

.campaign_list {
    gap: 1rem 2rem;
}
	
.campaign_item {
    width: 100%;
}
	
.campaign_title {
    padding: 10% 0;
}
	
.title_logo {
    width: 15rem;
}
	
.title_text {
    font-size: 1.5rem;
}
	
.illust {
    height: 20vh;
}
	
.campaign_info {
    height: 100%;
}
	
}


@media screen and (min-width: 1280px){
html{
	font-size: 18px;
}
	
}

