@charset "UTF-8";

/***** デフォルトはスマートフォン *****/
.top_margin{
    margin: 4rem 0;
}
.parallax_bg{
    background-color: white;
    position: sticky;
    top: 0;
    left: 0;
}
.top_section {
	width: 100%;
    margin: auto;
    padding: 3rem 0 3rem 0;
	text-align: center;
	background-color: var(--back-color); 
	background: linear-gradient(to bottom, #ccffb5d8, #deffd8);
    transform: rotate(0deg);
    z-index: 1;
}

.top_section01 {
    color: black
}

.top_section02 {
    color: black
}

/* ---- 背景画像の指定 ----- */
.parallax {
    width: 90%;
    height: 66.7vw;
    /* 画像を３：２で作成した場合の指定 横÷縦✕100を VWで指定*/
    /* 要素を固定する */
    top: 0;
    left: 0;
    z-index: -1;
    /* 通常要素より下に表示 */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(3deg);
    border: #00ff88 10px solid;
    /*  background-attachment: fixed;   */
    /* iosで＜background-attachment: fixed;＞と＜background-size: cover;＞を同時に適用させようとすると、【fixed】が無効になってしまう。 */
}
.parallax00 {
    background-image: url(./img/top001_2.webp);

}
.parallax01 {
    background-image: url(./img/top_shared.webp);

}

.parallax02 {
    background-image: url(./img/top_nashi.webp);
    
}

.parallax03 {
    background-image: url(./img/top_moringa.webp);
    
}

.parallax04 {
    background-image: url(./img/ohshimizus.webp);
    
}

.parallax05 {
    background-image: url(./img/top_top.webp);
    
}

.top_text {
    min-height: 50vh;
}

.top_link {
    display: inline-block;
    width: 220px;
    border: 1px solid #333333;
    background-color: white;
    color: #333333;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    margin-top: 2rem;
}
.top_text{
    min-height: 20vh;
    padding: 2rem 3rem;
    line-height: 2rem;
    font-size: 16px;
}
.top_circle_img_flex{
    display: flex;
    justify-content: space-evenly;
}
.top_circle_img{
    width: 20%;
    margin-bottom: 2rem;
}
.top_circle_img img{
    border-radius: 50%;
}
.moringa_caption{
    font-size: 14px;
}
/**==================================================**/
/**=          画面サイズ600px以上の指定              **/
/**==================================================**/
@media screen and (min-width:600px) {
    .parallax {
        width: 95%;
    }
    .top_text{
        font-size: 18px;
    }
    .moringa_caption{
    font-size: 16px;
}
}

/**==================================================**/
/**=          画面サイズ1024px以上の指定              **/
/**==================================================**/
@media screen and (min-width:1280px) {
    .parallax {
        width: 96%;
    }
    .top_text{
        font-size: 20px;
    }
    .moringa_caption{
    font-size: 18px;
}
}