.sub_title_img {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 3px double #000;
    font-family: "MinecraftSeven-v2", sans-serif;
}
.sub_title_img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 20px;
    margin: 30px 10px 0px 10px;
}
.sub_title {
    margin: 20px 0;
    font-size: 50px;
    margin-bottom: 0;
}
.sub_title span {
    display:block;
    font-size: 20px;
}

.top-pic {
    background-color: #ffffff;
    position: relative;
}
.top-pic img{
    width: 80%;
    height: 45vh;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:80%;
    margin:0 auto;
    padding-left: 0;
 }
 
 .slider img {
     width:100%;/*スライダー内の画像を横幅100%に*/
     height:auto;
     height: 45vh;
     object-fit: cover;
     border-radius: 20px;
     display: block;
     margin: 0 auto;
     opacity: 0.8;
 }
 
 /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
 
 .slider .slick-slide {
     margin:0 10px;
 }
 
 /*矢印の設定*/
 
 /*戻る、次へ矢印の位置*/
 .slick-prev, 
 .slick-next {
     position: absolute;/*絶対配置にする*/
     top: 42%;
     cursor: pointer;/*マウスカーソルを指マークに*/
     outline: none;/*クリックをしたら出てくる枠線を消す*/
     border-top: 2px solid #666;/*矢印の色*/
     border-right: 2px solid #666;/*矢印の色*/
     height: 15px;
     width: 15px;
 }
 
 .slick-prev {/*戻る矢印の位置と形状*/
     left: -1.5%;
     transform: rotate(-135deg);
 }
 
 .slick-next {/*次へ矢印の位置と形状*/
     right: -1.5%;
     transform: rotate(45deg);
 }
 .top-pic h3 {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    text-shadow: 0px 0px 5px #000;
}
.top-pic h3 span {
    display: inline-block; 
}

@media screen and (max-width: 768px) {
    .slider {
        width: 100%;
    }
    .slick-next {
        opacity: 0;
    }
    .slick-prev {
        opacity: 0;
    }
    .top-pic h3 {
        left: 10px;
    }
    
}


.join-btn {
    background-color: orange;
    padding: 30px;
    text-decoration: none;
    color: #fff;
}

.about {
    width: 70%;
    margin: 50px auto;
}
.about a {
    text-decoration: none;
    color: #00f;
    padding: 0 10px;
    border-radius: 9999px;
}
.about img {
    transform: rotateY(180deg);
}

.news {
    width: 70%;
    margin: 50px auto;
}
.news ul {
    list-style: none;
    padding-left: 0;
}
.news a {
    text-decoration: none;
    color: #000;
}
.news li {
    padding-bottom: 13px;
    border-bottom: 1px solid #dddddd;
    margin-top: 20px;
}
.news .date {
    color: #808080;
}
.news .new {
    color: #f00;
}
.news ul span {
    padding-right: 10px;
}
.news img {
    transform: rotateY(180deg);
}

.movie {
    width: 70%;
    margin: 50px  auto;
}