@charset "utf-8";

@pageWidth: 980px;
@bootstrapMinSm: 768px;

html {
    font-size: 62.5%;
    color: #808080;
    background-color: #ffffff;
}

body {
    font-family: "HiraginoSans-W3", "ヒラギノ角ゴシック W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 1.4rem;
}

p,
ul,
ol {
    line-height: 1.85;
}

a {
    color: #2983C8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2,
h3 {
    color: #4D4D4D;
}

img {
    max-width: 100%;
    height: auto;
}

.wide-block {
    padding: 20px 0;
    background-position: 50% 0;
    
    .wide-block-content {
        max-width: @pageWidth;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.4rem;
        line-height: 1.25;
    }
    
    h2 {
        font-size: 4.8rem;
        line-height: 1.25;
    }
    
    @media (min-width: @bootstrapMinSm) {
        padding: 40px 0;
    }
}


//
// ヘッダーエリア
//

.header-block {
    box-sizing: border-box;;
    min-height: 420px;
    padding: 20px 0;
    font-size: 1.6rem;
    color: #ffffff;
    background-image: url("../image/image_bg_purple.png");
    
    @media (min-width: @bootstrapMinSm) {
        padding: 50px 0;
        
        .col-sm-6 {
            padding: 0;
        }
        
        h1 {
            padding: 30px 0 25px;
        }
    }
}


//
// お知らせ
//

.information-block {
    padding: 16px 0;
    background-color: #F9F3FB;
    
    ul {
        list-style-type: none;
        margin-left: 0;
        padding-left: 0;
        color: #808080;
        
        li {
            margin-left: 0;
            padding-left: 0;
        }
    }
}


//
// 関連サイト目次
//

.sites-block {
    .site {
        h3:first-child {
            &:before {
                content: "";
                display: block;
                width: 120px;
                height: 120px;
                margin: 20px auto 20px;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                background-size: contain;
                
                @media (min-width: @bootstrapMinSm) {
                    margin-top: -20px;
                }
            }
        }
        
        p {
            color: #808080;
        }
        
        &.community {
            h3:first-child:before {
                background-image: url("../image/icon_community@2x.png");
            }
        }
        
        &.announcement {
            h3:first-child:before {
                background-image: url("../image/icon_announcement@2x.png");
            }
        }
        
        &.bugzilla {
            h3:first-child:before {
                background-image: url("../image/icon_bugzilla_jp@2x.png");
            }
        }
    }
}


//
// ダウンロード
//

.download-block {
    font-size: 1.6rem;
    padding: 10px 0 30px;
    background-color: #F6F4EC;
    
    @media (min-width: @bootstrapMinSm) {
        h2 {
            line-height: 1.5;
        }
        
        h3 {
            margin: 35px 0 20px;
        }
    }
}


//
// もじら組について
//

.about-block {
    padding: 20px 0 30px;
    background-image: url("../image/image_bg_purple.png");
    background-repeat: repeat;
    color: #ffffff;
    
    h2 {
        color: inherit;
        
        @media (min-width: @bootstrapMinSm) {
            line-height: 1.75;
        }
    }
    
    p {
        margin-bottom: 20px;
    }
    
    .wide-block-content {
        position: relative;
        overflow: hidden;
        
        &:after {
            content: "";
            position: absolute;
            width: 350px;
            height: 470px;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto 0 0 auto;
            background-image: url("../image/image_matoi.png");
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: contain;
            
            @media (min-width: (@pageWidth + 160px)) {
                margin-right: -80px;
            }
        }
        
        @media (min-width: @bootstrapMinSm) {
            overflow: visible;
        }
    }
}


//
// コンタクト情報
//

.contact-block {
    padding: 30px 0 20px;
    font-size: 1.6rem;
    background-color: #F6F4EC;
}


//
// フッターエリア
//

.footer-block {
    box-sizing: border-box;
    min-height: 50px;
    padding: 0;
    font-size: 1.4rem;
    color: #ffffff;
    background-image: url("../image/image_bg_gray.png");
    
    .wide-block-content {
        padding: 15px 0 0;
        
        &:after {
            content: "";
            display: block;
            width: 130px;
            height: 50px;
            margin: 0 auto;
            background-image: url("../image/sitelogo_small@2x.png");
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: contain;
        }
        
        @media (min-width: @bootstrapMinSm) {
            position: relative;
            
            &:after {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                margin: auto 0 auto auto;
            }
        }
    }
}
