
*{ 
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}
li{
    list-style: none;
}
img{
    vertical-align: bottom;
}

body{
    background-color: #5859f2;
}

/* html */
/* body{
    background-color: #ffffff;
} */
.header{
    background: url(../img/tropical-fish.webp) no-repeat center/cover;
    image-rendering: auto;
    /*  後で消す↓確認用 */
    /* background-color: aqua; */
    /* 縦 */
    height: 100vh;
    /* 下の三つで真ん中に来る↓ */
    height: 100vh;
    display: flex;
    justify-content: center;
align-items: center;
/* 下の部分との隙間↓ */
    margin-bottom: 40px;
}
.title{
    background-color: rgba(25, 11, 223, 0.25);
    text-align: center;
    padding: 40px 60px;
    color: #fff;
}
h1{
    /* 下との文字の隙間↓ */
    margin-bottom: 12px;
    font-size: 48px;
    font-weight: 700;
}

.title p{
    font-size: 18px;
    font-weight: 500;
}

.container{
    width: 940px;
    margin: 0 auto 60px;
    text-align: center;
}
.main_photo  {
    height: 120px;
}
.pic01 {
    background: url(../img/lionfish-777029_1280.webp)no-repeat center/cover;
}
.pic02 {
     background: url(../img/tropical-fish-2395619_1280.webp) no-repeat center/cover;
}
@media (max-width:500px){
   .container{
    width: 100%;
   
} 
}
.main > p {
    text-align: center;
    font-size: 24PX;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #fff;
}

.container ul{
    display: flex;
    justify-content: center;
    gap: 32px;
}
@media (max-width:500px){
    .container ul{
        display: block;
    }
}
.container li{
    background-color: #edcd00;
    padding: 20px;
    box-shadow: 10px 10px 0 #fff;  
}

h3{
   font-size: 26px;
    border-radius: 20px ;
    margin-bottom: 20px;
    padding: 8px 24px;
    background-color: azure;
    color: #500c90
}
.container li p{
    font-size: 16px;
    line-height: 1.4;
    background-color: #edcd00;
}

.footer p {
    text-align: center;
    padding: 20px;
    background-color: #edcd00;
}


