<meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/earlyaccess/notosansjapanese.css" rel="stylesheet" />

@import url('https://fonts.googleapis.com/css?family=Crimson+Text');

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: normal;
    list-style-type: none;
    box-sizing: border-box;
}

input, button, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}

textarea {
    width: 100%;
    height: 80px;
    background: #efefef;
    border-radius: 3px;
    padding: 10px;
    font-family: 'Consolas','Source Code Pro', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", monospace;
    font-size: 13px;
    color: #888;
}

strong {
    font-weight: bold;
}

a {text-decoration: none;
    color: #FCC7D7;}

p { margin-bottom: 18px;}

body {
    color: #777;
    letter-spacing: 0.5px;
    line-height: 1.8;
    font-size: 13px;
    font-family: 'Crimson Text', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    word-break: break-all;
    text-align: justify;
}

header {
    background: url(#背景画像_url#) no-repeat center top;
    background-size: cover;
    height: 200px;
    z-index: -10;
}

header .wrap {
    background: rgba(255,255,255,1);
    max-width: 350px;
    width: 75%;
    margin: 0 auto;
    padding: 0px 0px 20px;
    position: relative;
    top: 110px;
    z-index: 10;
    text-align: center;
}

header .wrap::before {
    content: '';
    display: block;
    width: 110%;
    height: 120%;
    background: rgba(255,255,255,0.3);
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
}

header h1 {
    font-size: 25px;
    margin-top: -5px;
}

header p {
    font-size: 13px;
    margin-top: -5px;
    color: #afafaf;
    letter-spacing: 2px;
}

article {
    width: 85%;
    max-width: 350px;
    margin: 50px auto;
}

article .number {
    text-align: center;
}

article .list p {
    margin-bottom: 0;
}

article .gray a{
    display: inline-block;
    width: 20px;
    text-align: center;
    margin: 0 5px 5px;
    line-height: 1.8;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 5px #595757,
            0 0 10px #595757,
            0 0 15px #595757,
            0 0 20px #595757;
}

article .pink a{
    display: inline-block;
    width: 20px;
    text-align: center;
    line-height: 1.8;
    margin: 0 5px 5px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 5px #ff6693,
        0 0 10px #ff6693,
        0 0 15px #ff6693,
        0 0 20px #ff6693;
}

article .list a {
    color: #999;
}

article .list a span {
    margin-right: 12px;
}

form {
    text-align: center;
    margin: -10px 0;
    position: relative;
    z-index: 10;
}

form input[type=text],
form input[type=submit] {
    line-height: 1.8;
    font-size: 11px;
    color: #2C3E50;
    display: inline;
    background: #fff;
    border: none;
    margin: 0 5px;
    padding: 3px 10px;
    border-radius: 3px;
    font-family: 'Crimson Text', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

form input[type=text] {
    width: 70px;
    line-height: 22px;
    height: 26px;
    background: #f2f2f2;
}

form input[type=submit] {
    width: 60px;
    height: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FCC7D7;
    color: #fff;
    margin: 5px 0;
}