/*
 公開画面共通CSS
*/

* {
    box-sizing: border-box;
}
html {
    font-size: 10px;
}
body {
    font: 1.3rem/1.6 "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, sans-serif;
    font-size: 13px;
    margin:0;
    padding:0;
}
body.admin-bar {
    padding-top:0
}
#wpxblogFooter {
    padding:15px 0;
}
#wpxblogFooter .copyright{
    font-weight:normal;
    font-style: normal;
    text-align:center;
    font-size:1.2rem;
}

/* 非公開ページ */
.secretContainer {
    padding: 100px 15px;
    text-align: center;
    line-height: 1.4;
}
.secretContainer .secretCaption {
    color: #CD0A0D;
    font-size: 4rem;
    font-weight: bold;
}
.secretContainer .secretDesc {
    margin: 20px 0 0;
    font-size: 1.6rem;
}
.secretContainer .secretTransition {
    margin: 40px 0 0;
}
.secretContainer .secretTransition .btn {
    display: inline-block;
    font-weight: normal;
    transition: all 0.1s;
    border: 2px solid #00acc0;
    border-radius: 0;
    color: #00acc0;
    font-size: 1.8rem;
    padding: 10px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition:all .1s;
    text-decoration:none;
}
.secretContainer .secretTransition .btn:hover {
    opacity:.8;
}
@media (max-width: 767px) {
    .secretContainer {
        padding: 100px 15px;
    }
    .secretContainer .secretCaption {
        font-size: 2.6rem;
    }
    .secretContainer .secretDesc {
        font-size: 1.6rem;
    }
}

/* ContactForm7によるレイアウト崩れ防止 */
@media (max-width: 600px) {
    .wpcf7 .wpcf7-form input:not([type="radio"]):not([type="checkbox"]), .wpcf7 .wpcf7-form textarea, .wpcf7 .wpcf7-form select {
        width: 100%;
    }
}