@charset "utf-8";


/* --------------------------
基本設定
----------------------------- */
.container {
    width: 100%;
}

/* --------------------------
コンテント各種
----------------------------- */

/*---- 親要素の指定：parent--------------------------------- */
.content .link-parent {
    position: relative;
    
    width: 100%;
    height: auto;
    border-radius: 50px;
}

/*---- ベースの設定：base--------------------------------- */
.content .link-base {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 100%;

    padding: 1rem 3rem;

    border: 3px solid #222;
    border-radius: inherit;
}

/*---- バックの設定：back--------------------------------- */
.content .link-back {
    position: absolute;
    top: 12px;
    left: 12px;

    width: 100%;
    height: 100%;

    border: 3px solid;
    border-radius: inherit;
    z-index: -1;
}

/*---- テキストエリア--------------------------------- */
.content .text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    width: 50%;

    padding: 0;
}

.content .text-area h3 {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
    letter-spacing: 2px;

    color: #fff;
}

.content .text-sub {
    line-height: 1.8;
    color: #fff;
}

/*---- 画像エリア--------------------------------- */
.content img {
    width: 50%;
    max-width: 300px;

    margin: 0 2rem 0 0;
}

/*---- 項目ごとのカラー--------------------------------- */
.hiphop .link-base {
    background: #7D021A;
}
.hiphop .link-back {
    background: #450714;
}
.rb .link-base {
    background: #69678C;
}
.rb .link-back {
    background: #3f3d66;
}
.reggae .link-base {
    background-image: linear-gradient(to bottom, #357237 33%, #e0ba21 33%, #e0ba21 66%, #A32635 66%)
}
.reggae .link-back {
    background-image: linear-gradient(to bottom, #182f18 33%, #6e5b12 33%, #6e5b12 66%, #63111a 66%)
}
.club .link-base {
    background: #DC8F0D;
}
.club .link-back {
    background: #9e680b;
}
.japan .link-base {
    background: #A06159;
}
.japan .link-back {
    background: #683933;
}

/*---- ホバーアクション--------------------------------- */
.link-parent:hover .link-base{
    transform: translate(5px,5px);
    transition: all .2s;
}
.link-parent:active .link-base{
    transform: translate(10px,10px);
    transition: all 0s;
}

/* --------------------------
レスポンシブ　1000px
----------------------------- */
@media(max-width:1000px) {

    .content {
        display: flex;
        flex-wrap: wrap;    
    }

    .content-item {
        max-width: 500px;
    }


    /*---- コンテント設定--------------------------------- */
    .content .link-base {
        flex-direction: column-reverse;
        padding: 2rem 3rem 3rem;

    }

    /* テキストエリア */
    .content .text-area {
        gap: 1rem;
        width: 100%;
        padding: 0;
    }

    /* 画像エリア */
    .content img {
        width: 80%;
        max-width: 400px;
        padding: 0 2rem 2rem;
    }

}

/* --------------------------
レスポンシブ　600px
----------------------------- */
@media(max-width:600px) {

    /*---- コンテント設定--------------------------------- */
    .content .link-base {
        padding: 0 1.5rem 2rem;
    }

    .content .text-area h3 {
        font-size: 2.8rem;
    }
    /*---- テキストエリア--------------------------------- */
    .content dt {
        font-size: 1.1rem;
        margin: 0 0 .5rem;
    }
    .content dd {
        font-size: .9rem;
    }
    /*---- 画像エリア--------------------------------- */
    .content img {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}