@charset "utf-8";

/* ==============
base
============== */

html,body{
	margin:0;
    padding:0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    min-width: 320px;
}

body {
    background-color: rgb(196, 209, 222);
    padding: 12px;
}

.contain {
    position: relative;
    background: #fff;
    padding: 15px;
    width: 100%;
    min-height: 94vh;
    border-radius: 24px;
    height: auto !important;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

ul {
    list-style-type: none;
}

.mincho {
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}

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

.cleafix {
    content: "";
    display: block;
    clear: both;
}

button:focus {
	outline:0;
}

input[type="text"]
select {
    outline: none;
    color: #000573;
}

*:focus {
    outline: none;
}

/* ==============
共通(表示)
============== */

/* PCとスマートフォン書き出し分岐 */
.pc {
    display: none;
}

.sp {
    display: block;
}
@media screen and (min-width: 900px){
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}

.pcsp {
    display: inline-block;

}
@media screen and (min-width: 900px){
    .pcsp {
        display: inline;
    }
}

.opacity {
    transition: 0.3s;
}

.opacity:hover {
    opacity: 0.5;
}


/* ==============
エラー文
============== */

.form_error {
    color: #f00;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form_error_submit {
    color: #f00;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.form_kudoku_word_span_red {
    color: #ff0000;
    padding-top: 5px;
    font-size: 0.7rem;
    margin-left: -10px;
}

/* ==============
投稿画面
============== */

.attention_title {
    font-size: 24px;
    color: #000573;
    text-align: center;
    margin: 50px 0;
}

.attention_text {
    margin-bottom: 30px;
}

.attention_sub_title {
    font-size: 24px;
    color: #000573;
    margin: 50px 0 30px;
    border-bottom: 1px solid #000573;
    font-weight: bold;
}

.attention_contents {
    margin-bottom: 50px;
}

.attention_contents_item {
    line-height: 2.5rem;
}

.attention_button {
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 450px;
    text-align: center;
    padding: 13px 0;
    font-size: 24px;
    color: #FFFFFF;
    border-radius: 30px;
    margin: 30px auto 20px;
    text-decoration: none;
}

.attention_button_next {
    background-color: #EC6900;
    box-shadow: 0px 2px 1px #EC6900;
    -webkit-box-shadow: 0px 2px 1px #EC6900;
}

.attention_button_back {
    background-color: #FFF;
    border: 1px solid #9E9E9E;
    color: #9E9E9E;
    box-shadow: 0px 2px 1px #CCC;
    -webkit-box-shadow: 0px 2px 1px #CCC;
}

.attention_button_first_back {
    background-color: #232584;
    box-shadow: 0px 2px 1px #232584;
    -webkit-box-shadow: 0px 2px 1px #232584;
}

/* ==============
提案画面
============== */

.recommend_wrap {
    margin-bottom: 30px;
    padding: 20px 10px;
}

.recommend_title {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.recommend_text {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.recommend_text_turn {
    display: block;
    text-align: center;
}

.recommend_images_wrap {
    padding: 10px;
    margin-bottom: 30px;
    text-align: center;
}