@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* normalize */
*{
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align:baseline;
}
*,
*:before,
*:after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    word-break:break-word;
}
table{width: 100%;}
table tr{border:none;}
article, header, footer, aside, figure, figcaption, nav, section { 
    display:block;
}
html, body{ height:100%; }
body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    position:relative;
    margin:0;
}
ol, ul {
    list-style: none;
    list-style-type: none;
}
em{
    font-style: normal;
}

input[type=text],
input[type=password]{
    border: 2px solid #000;
    border-radius: 10px;
}

.flex{
    display: flex;
    display: -webkit-flex;
}

.fs14{font-size:14px;}

/* select */
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}
.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #000;
    width: 100px;
    height: 40px;
    border: 1px solid #808080;
    vertical-align: -14px;
    margin:0 1em 0 0 ;
}
.long_select .select{
    width: calc( 100vw - 80px );
    max-width: 500px;
}
.answer .long_select .reverse input[type=text]{
    margin:0 0 1em 0;
}
.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 8px 15px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    overflow: hidden;
}
select[disabled="disabled"] + .select-styled{
    background-color: #ccc;
}
.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #808080 transparent transparent transparent;
    position: absolute;
    top: 16px;
    right: 10px;
}
.select-styled:hover {
    background-color: #eee;
}
.select-styled:active, .select-styled.active {
    background-color: #eee;
}
.select-styled:active:after, .select-styled.active:after {
    top: 9px;
    border-color: transparent transparent #fff transparent;
}
.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: -1px;
    left: -1px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #808080;
}
.terms_wrap::-webkit-scrollbar,
.select-options::-webkit-scrollbar{
    width: 20px;
    border-radius: 10px;
}
.terms_wrap::-webkit-scrollbar-track,
.select-options::-webkit-scrollbar-track{
    background: transparent;
}
.terms_wrap::-webkit-scrollbar-thumb,
.select-options::-webkit-scrollbar-thumb{
    background: #f2f2f2;
    border-radius: 10px;
}
.select-options li {
    margin: 0;
    padding: 10px 0;
    text-indent: 15px;
    border-top: none;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}
.select-options li:hover {
    color: #000
    font-weight: bold;
    background: #ddd;
}
.select-options li[rel=hide] {
    display: none;
}

/* common */
.contents{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn{
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #131b82;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: none;
    appearance: none;
    -webkit-appearance:none;
    outline: none;
    cursor: pointer;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    letter-spacing: 0.1em;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    position: relative;
}
.btn[disabled="disabled"]{
    opacity: 0.5;
    cursor: default;
}
a.btn{
    text-decoration: none;
}
.btn .arrow:after{
    content: "";
    position: absolute;
    width: 15px;
    height:18px;
    background: url(/img/arrow.svg) center / contain no-repeat;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page_btn{
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #131b82;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: none;
    appearance: none;
    -webkit-appearance:none;
    outline: none;
    cursor: pointer;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    letter-spacing: 0.1em;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    position: relative;
}
.page_btn span:after{
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height:18px;
    top: 50%;
    background: url(/img/arrow.svg) center / contain no-repeat;
}
.page_btn.next{
    padding-right: 30px;
}
.page_btn.back{
    padding-left: 30px;
}
.page_btn.next span:after{
    right: 15px;
    transform: translateY(-50%);
}
.page_btn.back span:after{
    left: 15px;
    transform: translateY(-50%) rotate(180deg);
}
.question_btn_wrap .page_btn{
    width:100%;
    max-width: 310px;
}



/* wrapper */
#wrapper{
    padding-bottom: 80px;
    background: url(/img/bg.png) center bottom repeat-x;
    background-size: 100% auto;
    min-height: 100%;
}


/* header */
header{
    height: 50px;
    background: #fff;
}
header > .flex{
    justify-content: space-between;
    justify-content: -webkit-space-between;
    max-width: 800px;
    margin: 0 auto;
}
header .logo{
    height: 100%;
    padding: 13px;
}
header .logo h1{
    text-indent: -9999px;
    width: 108px;
    height: 24px;
    background: url(/img/crevia_logo.png) left center / contain no-repeat;

}
.entrance h1{
    width: 216px;
    height: 48px;
    margin: 30px auto;
    background: url(/img/crevia_logo.png) center / contain no-repeat;
}
header .sns .flex{
    padding: 8px 0;
}
header .sns .flex > * + *{
    margin-left: 1em;
}
header .sns .flex img{
    max-height: 39px;
    width: auto;
}

/* footer */
footer{}
footer .copy div{
    width: 160px;
    height: 19px;
    background: url(/img/itochu_logo.png) left center / contain no-repeat;
    margin: 30px auto 0;
}
.entrance .itochu_logo{
    width: 160px;
    height: 19px;
    background: url(/img/itochu_logo.png) left center / contain no-repeat;
    margin: 30px auto 0;
}

/* entrance */
.entrance{
    padding: 100px 0 0;
}
.entrance h2{
    font-size: 24px;
    text-align: center;
}
.entrance p{
    font-size: 18px;
    text-align: center;
    margin: 30px auto 100px;
}
.entrance .btn_wrap{
    text-align: center;
}

/* top */
#top .mv{
    background: url(/img/main_img.jpg) right bottom no-repeat;
    background-size: cover;
    height: 0;
    padding-bottom: 47%;
}
#top .enquete_title{
    padding: 22px 0 10px;
    position: relative;
    min-height: 150px;
}
#top .enquete_title h2{
    text-indent: -9999px;
    width: 129px;
    height: 79px;
    background: url(/img/mokitchen_logo.png) center / contain no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}
#top .attention{
    padding: 0 0 45px;
    text-align: center;
    font-size: 20px;
    line-height: 1.8em;
    text-align: left;
}
#top .attention h3{
    font-size: 22px;
    text-align: center;
    line-height: 2em;
    margin-bottom: 1em;
}
#top .attention h3,
#top .attention p{
    font-weight: bold;
}
#top .attention p + p{
    margin-top: 1em;
}
/*
#top .gift{
    padding:10% 0;
}
#top .gift .box{
    padding: 3%;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}
#top .gift .gift_wrap{
    border: 3px solid #c1272d;
    padding: 10%;
    text-align: center;
    font-size: 15px;
    line-height: 2em;
}
#top .gift .gift_wrap .amazon,
#top .gift .gift_wrap .price{
    color: #c1272d;
    font-size: 20px;
}
#top .gift .gift_wrap .amazon{
    margin:3% 0;
}
#top .gift .gift_wrap .price{
    margin-bottom:3%;
}
#top .gift .gift_wrap .price span{
    font-size: 200%;
    font-weight: 500;
}
*/
#top .gift{
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
}
#top .gift img{
    width: 100%;
    height: auto;
}
#top .terms{
    margin-top: 50px;
}
#top .terms .terms_blc{
    padding: 20px;
    border: 1px solid #999;
}
#top .terms .terms_wrap{
    padding: 5%;
    max-height: 400px;
    overflow-y: auto;
    color: #808080;
    font-size: 90%;
}
#top .terms .terms_wrap h4{
    font-size: 120%;
    color: #000;
    margin-bottom: 2em;
}
#top .terms .terms_wrap dd{
    margin-top: 1em;
}
#top .terms .terms_wrap dd + dt{
    margin-top: 2em;
}

#top.thanks{
    padding: 0;
}
#top.thanks .attention{
}
#top.thanks h3{
    color: #dd5e0f;
}
#top.thanks p{
    font-size: 16px;
}
#top.thanks .attention{
    text-align: center;
}

.error .btn_wrap,
#top .btn_wrap{
    padding: 5% 20px 0;
}


.page_head{
    display: flex;
    display: -webkit-flex;
    width: 100%;
    max-width: 800px;
    height: 45px;
    padding: 0 20px;
    margin: 1em auto 2.5em;
}

.page_head .question_heading{
    width: 25%;
    max-width: 80px;
}
.page_head .question_heading h2 span{
    color: #008f39;
    font-size: 32px;
    font-weight: 700;
}
#progress{
    flex:1;
    -webkit-flex:1;
}
#progress .progress_wrap{
    width: 100%;
    height: 40px;
    position: relative;
    padding: 25px 0 0;
}
#progress .progress_wrap .pin{
    width: 32px;
    height: 25px;
    position: absolute;
    top: 0;
    margin-left: -12px;
    color: #131b82;
    font-weight: bold;
}
#progress .progress_wrap .bar_wrap{
    width: 100%;
    height: 15px;
    position: relative;
    background: #ccc;
    border-radius: 8px;
}
#progress .progress_wrap .bar{
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    border-radius: 8px;
    background: #131b82;
}

#question_wrap{
}
#question_wrap .question{
    font-weight: bold;
    margin:0 0 2em;
}
#question_wrap .question p{
    font-size: 16px;
    line-height: 1.7;
}
/*
#question_wrap .question_txt{
    display: inline;
    background: linear-gradient(transparent 65%, rgba(0,143,57,0.3) 0%);
    line-height: 150%;
    padding: 0 0 3px;
}
*/

.question_btn_wrap{
    max-width: 800px;
    margin: 2em auto 0;
    text-align: center;
}
.question_btn_wrap > * + *{
    margin-top: 1em;
}
.question_btn_wrap .flex{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}
.question_btn_wrap .flex > *{
    width: 40%;
}
.question_btn_wrap .flex > * + *{
    margin-left: 1%;
}
.question_btn_wrap .btn{
    font-size: 2.4vw;
    padding: 10%;
}
.question_btn_wrap .btn span{
    font-size: 1.5vw;
}
.each_radio,
.answer{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 0 10px;
}
.answer .txt{
    font-size: 18px;
    font-weight: 700;
    width: calc( 100vw - 80px );
    max-width: 740px;
    margin: 1em auto 0.2em;
}
.answer .sub_title,
.answer .caption{
    font-size: 16px;
}
.answer .long_select .txt{
   width: 100%;
}
.each_radio > *,
.answer > *{
    width: calc( 50% - 0.4em);
    margin:0 0 1.5em 0;
    font-size: 14px;
    margin-right: 0.2em;
}
.answer > .l_text,
.answer > .vertical{
    width: 100%;
}
.answer > .long_select{
    margin:0 0 1.5em;
    width: 100%;
}
.answer > div.long_input input[type="text"]{
    margin:0 0 1.5em;
    width: 100%;
    max-width:100%;
    padding:2% 4%;
}
.answer > div.long_input span{
    display:inline-block;
}
.answer > div.l_text{
}
.answer > div.l_text textarea{
    margin-top: 1.5em;
    border: 2px solid #000;
    border-radius: 10px;
    width: 100%;
    outline: none;
    padding: .5em;
}
.answer input[type=radio],
.answer input[type=checkbox]{
    display: none;
}
.answer .radio label,
.answer .checkbox label{
    position: relative;
    padding: 0px 0px 0px 26px;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}
.answer input[type=radio] + label{
    background: url(/img/radio_off.svg) left 3px no-repeat;
    background-size:20px;
}
.answer input[type=radio]:checked + label{
    background: url(/img/radio_on.svg) left 3px no-repeat;
    background-size:20px;
}
.answer input[type=checkbox] + label{
    background: url(/img/radio_off.svg) left 3px no-repeat;
    background-size:20px;
}
.answer input[type=checkbox]:checked + label{
    background: url(/img/radio_on.svg) left 3px no-repeat;
    background-size:20px;
}
.answer input[type=radio]:disabled + label,
.answer input[type=checkbox]:disabled + label{
    opacity: 0.4;
    background: url(/img/radio_disabled.svg) left 50% no-repeat;
    background-size:20px;
}
.answer input[type=checkbox]:disabled + label{
    background: url(/img/radio_off.svg) left 50% no-repeat;
    background-size:20px;
}
.answer .select_op_wrap{
    margin-top: 1em;
}

#top .mail input[type=text],
.answer input[type=text],
.answer input[type=tel]{
    width: 100%;
    padding: 2%;
    outline: none;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}
.answer input[type=tel]{
    width: 80px;
}
#top .mail input[type=text]:disabled,
.answer input[type=tel]:disabled,
.answer input[type=text]:disabled{
    background: #ccc;
    opacity: 0.6;
}
.answer input[type=text]::placeholder{
    color: #808080;
}
.answer .other_wrap{
    width: calc( 100vw - 80px );
    max-width: 740px;
}
.answer .other_wrap input[type=text],
.answer .other_wrap textarea{
    margin-top: 1em;
}
.answer .other_wrap .each_radio{
    display: block;
    padding: 0;
}
.answer .other_wrap .each_radio > *{
    margin: 0;
}
.answer .other_wrap.fluid_input{
    margin-right: 0;
}

.answer img{
    width: 100%;
    max-width:300px;
    height: auto;
}

.answer .input_t_wrap{
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    font-size: 16px;
}
.answer .input_t_wrap input[type=text]{
    width: 30vw;
    max-width: 220px;
}
.answer .input_t_wrap textarea{
    width: 100%;
    height: 8em;
    outline: none;
    resize: vertical;
}
.answer .input_t_wrap > *{
    margin-right: 1em;
}
.answer .input_t_wrap.long_input,
.answer .input_t_wrap.l_text > *{
    margin-right: 0;
}
.answer .input_t_wrap > *:last-child{
    margin-right: 0;
}
/*
.answer select{
    padding: 10px;
    border: 1px solid #808080;
    margin-right: 1em;
    outline: none;
}
*/
.image img{
    width: 100%;
    max-width:300px;
    height: auto;
}

/* complete */
.error,
.thanks{
    padding: 1em 20px 0;
    text-align: center;
}
.thanks h2{
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 1em;
    color: #131b82;
}
.error p,
.thanks p{
    font-size: 16px;
    line-height: 2em;
}
.thanks p + p{
    margin-top: 1.5em;
}
.thanks .br{
    display: block;
}
.thanks .caution{
    margin-top:3em;
}

/* top */
#top .mail{
    margin: 5% auto 0;
}
#top .mail > div{
    display: block;
    width: 100%;
}
#top .mail > div > dl{
}
#top .mail > div > dl dt,
#top .mail > div > dl dd{
    padding: 5px 0px;
}
#top .mail > div > dl dt{
    font-weight: bold;
    min-width: 190px;
    max-width: 250px;
}
#top .mail > div > dl + dl{
    margin-top: 20px;
}


.notice_txt{
    margin: 2em 0 3em;
    font-size: 16px;
    font-weight: bold;
}
.caution,
.err_txt{
    font-size: 16px;
    font-weight: 500;
    color: #c00;
    padding: 2%;
    background: #fee;
    margin-bottom: 2em;
}
.mail .err_txt{
    margin-bottom: 0;
}
#question_wrap .caution,
#question_wrap .err_txt{
    margin: 10px 20px;
}


.agree{
    width: 80%;
    max-width: 550px;
    margin: 5% auto 0;
    padding: 20px;
    /*border: 1px solid #ccc;*/
    background: #f2f2f2;
    text-align: center;
}
.agree .answer{
    display: block;
    text-align: center;
    margin-top: 4%;
}
.agree .answer > *{
    margin:0;
}
.agree .answer label{
    font-weight: bold;

}

.block{
    margin-top: 1.5em;
}
.block + .block{
    margin-top: 50px;
}


/*P21対応*/
.answer > .sample_img{
    width: 100%;
}
.answer > .sample_img:nth-child(1),
.answer > .sample_img:nth-child(2){
    width: calc( ( 100% - 2em ) /2 );
    margin: 0;
}
.answer > .sample_img:nth-child(1){
    margin: 0 2em 0 0;
}
.answer > .sample_img .select{
    margin-top: 0.5em;
    width: 150px;
}


#question_wrap .contents{
    padding: 0;
}
#question_wrap h1{
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    background: #131b82;
    padding: 22px 0;
}
#question_wrap h2{
    padding: 20px;
    border-bottom: 2px solid #999;
    color: #131b82;
    font-weight: bold;
    line-height: 1.7;
}
#question_wrap .question,
#question_wrap .answer{
    padding:0 20px;
}
#question_wrap .input_t_wrap > span{
}
#question_wrap .input_t_wrap > span:before{
    content: "●";
    display: inline-block;
    color: #131b82;
    margin-right: .2em;
}
#question_wrap .input_t_wrap.l_text > span:before{
    content: "";
}
#question_wrap .question_sub_title{
    display: block;
    background: #131b82;
    color: #fff;
    padding: .5em;
    width: 100%;
}
.small {
    font-size: 14px;
}

.file_upload_area{
    margin-top: 2em;
}
.file_upload_area img{
    vertical-align: bottom;
}
.delete_btn{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: #888;
    color: #fff;
    display: block;
    width: 86px;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 3px;
    vertical-align: bottom;
    cursor: pointer;
    margin-top: 1em;
    letter-spacing: .1em;
}
.file_upload_area input[type=file]{
    display: none ;
}
.file_upload_area input[type=file] + label{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    display: block;
    max-width: 200px;
    text-align: center;
    background: #131b82;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
}


@media screen and ( min-width: 800px ){
    #top .attention{
    }
    .question_btn_wrap .btn{
        font-size: 24px;
        padding: 5% 10%;
    }
    .question_btn_wrap .btn span{
        font-size: 12px;
    }
    #top .gift{
        padding: 100px 0;
    }
    #top .gift .gift_wrap{
        font-size: 20px;
    }
    #top .gift .gift_wrap .amazon, #top .gift .gift_wrap .price{
        font-size: 28px;
    }
    .thanks .br{
        display: inline;
    }
    .answer input[type=tel],
    .answer input[type=text]{
        padding: 1% 2%;
    }
    .thanks h2{
        font-size: 28px;
    }
    .thanks p{
        font-size: 18px;
    }
    .error .btn_wrap, #top .btn_wrap{
        padding: 50px 20px 0;
    }
    #top .mail{
        margin: 0 auto;
    }
}
@media screen and ( max-width: 414px ){
    #top .attention{
        font-size: 14px;
    }
    .question_btn_wrap .btn{
        font-size: 16px;
        padding: 10%;
    }
    .question_btn_wrap .btn span{
        font-size: 10px;
    }
    .answer > .sample_img:nth-child(1),
    .answer > .sample_img:nth-child(2){
        width: 100%;
        margin: 0;
    }
    .answer > .sample_img:nth-child(1){
    }
    #top .mail > div,
    #top .mail > div > dl{
        display: block;
    }
    #top .mail > div > dl dt,
    #top .mail > div > dl dd{
        display: block;
        width: 100%;
        font-size: 14px;
    }
    #top .terms .terms_wrap{
        height: 300px;
    }
}
