@charset "UTF-8";
@font-face {
    font-family: "myfont";
    src: url("/top/tsunagi-gothic.ttf") format("truetype");
}

main {
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "myfont";
}

.box {
    max-width: 500px;
    margin: 0 auto;
}

.main-title {
    margin-bottom: 80px;
    text-align: center;
    font-size: 30px;

}

.sub-title {
    margin: 40px 0;
    line-height: 1.3;
    font-size: 1.5rem;
    text-align: center;
    
}

.zoomIn {
    max-width: 500px;
    width: 100%;
 overflow: hidden;/*拡大してはみ出る要素を隠す*/
}


/*　画像の拡大　*/

.mask {
    transition: all 0.5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    width: 100%;
}


/*　画像のマスク　*/

.mask:hover {
    transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
    transform: translateY(-5px); /* マイナス値なので、上に移動 */
    box-shadow: 0 15px 20px -5px #9d9d9d; /* 影の指定 */
}

.wrap {
    text-align: center;
   
}


.img_box {
    margin: 0;
    overflow: hidden;
    
}

.name {
    margin-bottom: 20px;
}


@media screen and (min-width:767px) {

    .main-title {
        font-size: 70px;
        margin-bottom: 40px;
    }

    .sub-title {
        font-size: 40px;
       margin: 30px 0 10px 0;
    }

    .box {
        max-width: 1300px;
        display: flex;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }


}


