html,body,figure{
    padding:0;
    margin:0;
}
html{
    background-color: #313337;
    font-size: 21px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 0.1em;
}
a{
    color:white;
    text-decoration: none;
    &:hover{
        .title{
            text-decoration: underline;
        }
    }
}
img{
    max-width: 100%;
}
.inner-wide{
    width: calc(100% - 20px);
    max-width: 580px;
    margin:0 auto;
}
.inner{
    width: calc(100% - 40px);
    margin:0 auto;
}
.container{
    background-color: rgb(63, 58, 65);
    border-radius: 20px;
    overflow: hidden;
    padding:40px 0px;
}
.heading1{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.7em;
}

.info{
    .inner{
        width: calc(100% - 60px);
    }
    .icon{
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        margin:0 auto;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }
    .name{
        text-align: center;
        font-size: 36px;
        font-weight: bold;
    }
    .caption{
        font-size: 16px;
        line-height: 1.7em;
    }
    .history{
        text-align: center;
        font-size: 14px;
        margin-top: 50px;
    }
    .news-cont{
        max-width: 500px;
        margin:10px auto 0;
        border: 1px solid white;
        padding: 0px;
        height:4em;
        overflow: scroll;
    }
    .news{
        list-style-type: disc;
        margin:0;
        padding-top:10px;
        padding-bottom:10px;
        li{
            font-size: 13px;
            line-height: 1.7em;
        }
    }
}
.link{
    padding-top: 50px;
    .items{
        display: flex;
        gap:50px;
        flex-direction: column;
        .item{
            background-color: rgb(222, 222, 222);
            color:black;
            border-radius: 10px;
            padding:20px;
            .logo-cont{
                position: relative;
                .logo{
                    width: 80px;
                    height: 80px;
                    margin:0 auto;
                    border-radius: 50%;
                    overflow: hidden;
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }
                .sub-logo{
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    overflow: hidden;
                    position: absolute;
                    bottom:0px;
                    right:0;
                    left:70px;
                    margin:0 auto;
                }
            }
            .title{
                font-size: 18px;
                font-weight: bold;
                text-align: center;
            }
            .comment{
                font-size: 14px;
                line-height: 1.7em;
            }
        }
    }
}
.rip{
    padding-top: 50px;
    .rip-items{
        display: flex;
        gap:50px;
        flex-direction: column;
        .item{
            border: 1px solid black;
            padding:15px;
            .pic{
                opacity: 0.5;
                width: 100%;
            }
            .title{
                font-size: 18px;
                font-weight: bold;
            }
            a{
                text-decoration: underline;
            }
            .finish{
                font-size: 12px;
                font-weight: bold;
            }
            .comment{
                font-size: 13px;
                line-height: 1.7em;
            }
        }
    }
}

footer{
    margin-top: 50px;
    .copy{
        text-align: center;
        font-size: 14px;
        &:before,&:after{
            content:"-";
            margin:0 5px;
        }
    }
}