@charset "UTF-8";

#contents {
    /* display: flex;
    flex-wrap: wrap; */
    margin: 2em auto 0;
    /* padding: 0 0 20px; */
    width: 960px;
    background: #f5f4ea;
    /* position: relative; */
}
#main{
    /* width: 680px; */
    width: 960px!important;
    display: grid;
    gap: 30px;
}
#main h3{
    text-align: center;
    font-size: 20px;
    color: #38c0b9;
    line-height: 1.2em;
    margin-bottom: 40px;
}
.contents_title{
    text-align: center;
    font-size: 20px;
    color: #38c0b9;
    line-height: 1.2em;
    margin-bottom: 0;
}
#main p{
    font-size: 14px;

}
#side{
    width: 240px;
    padding: 10px;
}
#side ul{
    position: sticky;
    top: 30px;
}
#side ul li{
    padding-bottom: 0.5em;
    font-weight: bold;
    color: #babab1;
}
#for_companies{
    margin-top: 30px;
}
.point{
    display: flex;
    justify-items: center;
    width: 960px;
    justify-content: space-between;
    /* padding: 2em; */
    flex-wrap: wrap;
    margin-top: 50px;

}
.point_box{
    width: calc((100% - 120px) /3);
    display: grid;
    grid-template-rows: 10% 60% 30%;
    justify-items: center;
    padding: 0 1em 1em ;
    background: #fff;
    margin-bottom: 40px;
}
.point_box span,
.point_box img{
    display: block;
}
.point_box img{
    display: block;
    width: 75%;
    height: 100%;
    object-fit: contain;
}
.point_box span{
    width: fit-content;
    padding: 0.5em 1em;
    background: #ffa800;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 20px;
    margin-top: -1.5em;
    margin-bottom: 1em;
}
.entry{
    display: inline-block;
    width: 480px;
    padding: 1.5em;
    background: #38c0b9;
    border-radius: 8px;
    color:#fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* 導入の流れ */
#introduction{
    width: 780px;
    margin: auto;
}
.flow{
    display: grid;
    grid-template-columns: 10% 88%;
    grid-template-rows: repeat(7, 1fr);
    column-gap: 2%;
    justify-items: center;
}
.flow div{
    width: 100%;
}
.flow h4{
    color: #38c0b9;
    font-size: 18px;
    padding-top: 1em;
}
.number{
    display: grid;
    grid-template-rows: 50px auto;
    align-items: center;
    justify-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: #ffa800;
    border-radius: 50%;
}
.number::after{
    content:'';
    display: block;
    width: 2px;
    height: 6em;
    background: #ffa800;
}
.number:nth-of-type(7)::after{
    display: none;
}
hr {
    height: 0!important;
}