@charset "utf-8";
/* CSS Document */

img {
width: 100%;
}


section {
    margin-bottom: 100px;
}

.wrapper {
width: 100%;
margin: auto;
max-width: 1200px;
}




h1 {
    width: 100%;

}



h2 {
    font-size: 2rem;
	color: #ce705e;
}

li {
margin-bottom: 10px;
}

.green ul li {
    width: 88%;
}

li.green_1 {

    margin-left: 2%;
}

li.green_2 {
    margin-left: 4%;
}

li.green_3 {
    margin-left: 6%;
}

/* ---- イントロ---- */

.Intro {
    max-width: 680px;
    margin: 50px auto;
    width: 80%;
}

.Intro .text {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.9;
}


p.coupon-link {
    margin: 1em 0;
    padding: 10px;
    border: solid;
    font-weight: 600;
}


@media screen and (max-width:480px) { 

.item_wrapper {
width: 50%;
}



}



/* ---- テキストエリア---- */

.text_area {
    width: 360px;
    margin: 30px auto;
	color: #ce705e;
	font-size: 1rem;
}


.coordinate {
    margin: auto;
    width: 40%;
    /* display: inline-block; */
    margin: 20px auto;
    padding: 10px;
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
    border-top: solid 1px;
    border-bottom: solid 1px;
    color: #5a884c;
    min-width: 300px;
}

.coordinate a {
    color: #5a884c;
}






/* ---- 1列---- */

.parent_1column {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 0px;
grid-row-gap: 20px;
padding: 0 25%;
}

.div_1column_1 { grid-area: 1 / 1 / 2 / 2; }
.div_1column_2  { grid-area: 2 / 1 / 3 / 2; }
.div_1column_3  { grid-area: 3 / 1 / 4 / 2; }
.div_1column_4  { grid-area: 4 / 1 / 5 / 2; }



/* ---- 2列---- */

.parent_2column {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 0px;
}

.div_2column_1 { grid-area: 1 / 1 / 2 / 2; }
.div_2column_2 { grid-area: 1 / 2 / 2 / 3; }


/* ---- 3列---- */
.parent_3column {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 0px;
}

.div_3column_1 { grid-area: 1 / 1 / 2 / 2; }
.div_3column_2 { grid-area: 1 / 2 / 2 / 3; }
.div_3column_3 { grid-area: 1 / 3 / 2 / 4; }






section.orange ul {
    width: 80%;
    margin: auto;
}




section.pink ul {
    width: 70%;
    margin: auto;
}



@media screen and (max-width:540px) { 

.parent_1column {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    padding: 0 10%;
}

.parent_2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}




.parent_3column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}

li.blue_1 {
    margin-bottom: 0;
}

li.blue_2 {
    margin-bottom: 0;
}



section.pink ul {
    width: 90%;
    margin: auto;
}




}






/* -------------------- その他アイテム-------------------- */


.other_item {
    display: flex;
	    flex-flow: wrap;
}

.text_area_other_item {
    text-align: center;
    margin-bottom: 1rem;
}


.text_area_other_item h2 {
    font-size: 1.6rem;
    color: #000;
}


.item_wrapper {
    position: relative;
	width: 25%;
	
}






@media screen and (max-width:480px) { 

.item_wrapper {
width: 50%;
}



}

@media screen and (min-width:481px) and ( max-width:959px) {
.item_wrapper {
width: 33.33333%;
}

}





.colorHeader {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
}




.c_c2f2ee{ background-color: #c2f2ee;}

.c_72a87a{ background-color: #72a87a;}

.c_b1bcae{ background-color: #b1bcae;}




img.item_image {
    padding: 15%;
    background-color: #f1f1f1;
}



.item_brand {
    font-size: 0.7rem;
    font-weight: 600;
		    padding: 0 13px;
	
	
	
	
	
	
}

.item_name {
    font-size: 0.8rem;
    line-height: 1.75;
	    padding: 0 13px;
    margin: 0 0 13px;
}


@media screen and (max-width:480px) { 


.item_brand {
    font-size: 0.7rem;
}

.item_name {
    font-size: 0.7rem;
    line-height: 1.75;
}

}




/* --------------------フェードアニメーション -------------------- */




/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}



/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}





