@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@900&family=Shippori+Mincho:wght@800&family=Zen+Kaku+Gothic+New:wght@900&display=swap');

.main-visual {
    color: #f5f5f5;
    text-align: center;
    background: url("images/2021-03-22_16.33.12.png");
    width: 100%;
    height: 100vh;
    background-size: cover;
}
.main-text {
    padding-top: 150px;
}
.top-title {
    font-size: 70px;
    text-shadow: 0 0 4px #2b2b2b;
    margin-bottom: 10px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-subtitle {
    font-size: 35px;
    text-shadow: 0 0 2px #2b2b2b;
    margin-bottom: 60px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
.images {
    display: inline-block;
}
.images img {
    display: inline;
    margin: 70px 80px;
    width: 200px;
    text-align: center;
    border-radius: 50%;
}

.scrolldown{
    position:absolute;
    bottom:1%;
    right:50%;
    animation: arrowmove 2s ease-in-out infinite;
}
@keyframes arrowmove{
    0%{bottom:1%;}
    50%{bottom:3%;}
    100%{bottom:1%;}
}
.scrolldown span{
    position: absolute;
    left:-20px;
    bottom:10px;
    color: #e7e7eb;
    font-size: 12px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #e7e7eb;
    transform: skewX(-31deg);
}
.scrolldown:after{
    content:"";
    position: absolute;
    bottom:0;
    right:0;
    width:1px;
    height: 50px;
    background:#e7e7eb;
}

.main-grid {
    display: grid;
    gap: 200px;
    grid-template-columns: repeat(2, minmax(250px, 500px));
    margin-bottom: 90px;
}
.item {
    opacity: 0;
    padding: 30px;
    text-align: center;
    color: #333631;
}
.item > p {
    font-size: 20px;
}
.item > i {
    margin-bottom: 30px;
    font-size: 500%;
}
.item > hr {
    margin-bottom: 15px;
    color: #333631;
    height: .3px;
}
.source {
    text-align: center;
    font-size: 20px;
}
.source a {
    font-size: 120px;
    color: #2b2b2b;
}
.source a:hover {
    opacity: 65%;
    transition: all .3s;
}