@charset "utf-8";
/* booth banner
-------------------------------------------------- */

.buttonshowroombooth li.btnbooth-stamp {
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    width: 114px;
    height: 68px;
    background-color: transparent;
    font-size: .14rem;
    font-weight: 500;
    line-height: 1.33em;
    vertical-align: text-top;
    transition: all ease-out 0.2s;
    right: -5%;
    top: 12%;
}

.buttonshowroombooth li.btnbooth-stamp>span {
    display: block;
    box-sizing: border-box;
    padding: 0;
    height: 100%;
}

.buttonshowroombooth li.btnbooth-stamp::after {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .buttonshowroombooth li.btnbooth-stamp {
        width: 240px;
        right: 2%;
        top: 10%;
    }
}

@media screen and (max-width: 767px) {
    .buttonshowroombooth li.btnbooth-stamp {
        top: 0;
        display: inline-block;
        width: 48%;
        margin: auto;
        left: auto;
        right: 5px;
        top: auto;
        bottom: 3px;
    }
}

.buttonshowroombooth li.btnbooth-line {
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    width: 294px;
    height: auto;
    border: 2px #00559d solid;
    border-radius: 2px;
    background-color: #ffffff;
    font-size: .14rem;
    font-weight: 500;
    line-height: 1.33em;
    vertical-align: text-top;
    transition: all ease-out 0.2s;
    right: 86%;
    top: 12%;
}

.buttonshowroombooth li.btnbooth-line>span {
    display: block;
    box-sizing: border-box;
    padding: 0;
    height: 100%;
}

.buttonshowroombooth li.btnbooth-line::after {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .buttonshowroombooth li.btnbooth-line {
        width: 240px;
        right: 68%;
        top: 10%;
    }
}

@media screen and (max-width: 767px) {
    .buttonshowroombooth li.btnbooth-line {
        top: 0;
        display: inline-block;
        width: 48%;
        margin: auto;
        left: 5px;
        right: auto;
        top: auto;
        bottom: 3px;
    }
}

/* modal window
-------------------------------------------------- */

#windowquestionary {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -100;
    opacity: 0;
    transition: all 0.3s linear;
}

#windowquestionary:hover {
    cursor: pointer;
}

#windowquestionary>.inner>section>.inner:hover {
    cursor: default;
}

body.js-questionary-open #windowquestionary {
    z-index: 90000;
    transition: all 0.5s ease-out;
    opacity: 1;
}

#windowquestionary>.inner {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

#windowquestionary #questionary {
    display: table-cell;
    vertical-align: middle;
}

#windowquestionary #questionary>.inner {
    box-sizing: border-box;
    width: auto;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    color: #666666;
    background-color: #e5f3f4;
    position: relative;
}

#questionary>.inner .buttonquestionaryclose {
    position: absolute;
    width: 27px;
    height: 27px;
    right: 0;
    top: -40px;
}

#questionary>.inner .buttonquestionaryclose:hover {
    cursor: pointer;
}

#questionary>.inner .buttonquestionaryclose span {
    position: absolute;
    width: 35px;
    height: 1px;
    background-color: #ffffff;
    left: -4px;
    transition: all ease-out 0.15s;
}

#questionary>.inner .buttonquestionaryclose:hover span {
    background-color: #ccc;
}

#questionary>.inner .buttonquestionaryclose span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

#questionary>.inner .buttonquestionaryclose span:nth-child(2) {
    transform: rotate(-45deg);
    top: 13px;
}

.questionaryheader {
    background: url(/uploads/image/p_iquestionary/bg_title.png) no-repeat;
    color: #fff;
    width: 100%;
    min-height: 210px;
    display: flex;
}

.questionaryheader .titlearea {
    flex-grow: 1;
    width: 56.67%;
    box-sizing: border-box;
    padding: 20px 0 0 45px;
}

.questionaryheader .titlearea .sitename {
    font-size: 19px;
    line-height: 1.25em;
}

.questionaryheader .titlearea h2 {
    font-size: 62px;
    font-weight: 500;
    line-height: 1.25em;
}

.questionaryheader .titlearea .textsummary {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
}

.questionaryheader figure {
    width: 43.33%;
    flex-shrink: 0;
    /* 上下中央 */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.questionaryheader figure img {
    width: 100%;
    height: auto;
}

.questionarybody {
    position: relative;
    padding: 12px 25px 35px 45px;
}

.questionarybody .subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33em;
    color: #5dabcc;
    background-color: #ffffff;
    width: 210px;
    border-radius: 0 20px 20px 0;
    padding: 3px 0 3px 45px;
    margin-left: -45px;
}

.questionarybody .inner {
    width: 73.59%;
}

.questionaryquestion {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.33em;
    margin-top: 30px;
}

.questionaryanswer {
    margin: 30px -10px 0;
    display: flex;
    justify-content: center;
}

.questionaryanswer li {
    box-sizing: border-box;
    width: 25%;
    padding: 0 10px;
    display: flex;
    flex-shrink: 0;
    text-align: center;
    align-content: center;
    vertical-align: middle;
}

.questionaryanswer li>span:nth-child(1) {
    color: #ffffff;
    background-color: #aad3e4;
    font-size: 26px;
    font-weight: 500;
    line-height: 1em;
    width: 40px;
    border-radius: 4px 0 0 4px;
    /* 上下中央 */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.questionaryanswer li>span:nth-child(2) {
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33em;
    flex-grow: 1;
    padding: 5px 5px 7px;
    border-radius: 0 4px 4px 0;
    /* 上下中央 */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.questionarynotes {
    margin-top: 15px;
    padding: 0 0 0 20px;
}

.questionarynotes li {
    list-style-type: decimal;
    list-style-position: outside;
}

.questionarypresent {
    position: absolute;
    top: 45px;
    right: 25px;
    width: 22%;
}

.questionarypresent img {
    width: 100%;
    height: auto;
}

.questionarypresent figcaption {
    text-align: center;
    margin-top: 5px;
}

.questionarybody .buttonentry {
    margin-top: 25px;
}

.questionarybody .buttonentry a {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 405px;
    padding: 20px 30px 22px;
    text-align: center;
    color: #ffffff;
    background-color: #5aa8c5;
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    user-select: none;
}

.questionarybody .buttonentry a:hover {
    opacity: 0.8;
}

.questionarybody .buttonentry.notactive a {
    pointer-events: none;
    color: #cccccc;
    background-color: #999999;
}

.questionarybody .buttonentry a i {
    position: absolute;
    height: 1em;
    font-size: 40px;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: scalex(1.2);
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
    #windowquestionary {
        padding: 0 25px;
    }
    .questionaryheader .titlearea .sitename {
        font-size: 16px;
        line-height: 1.25em;
    }
    .questionaryheader .titlearea h2 {
        font-size: 46px;
        font-weight: 500;
        line-height: 1.25em;
        margin-top: 10px;
    }
    .questionaryheader .titlearea .textsummary {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5em;
        margin-top: 20px;
    }
    .questionaryheader {
        background: url(/uploads/image/p_iquestionary/bg_title.png) no-repeat;
        color: #fff;
        width: 100%;
        min-height: 210px;
        display: flex;
    }
    .questionaryheader .titlearea {
        flex-grow: 1;
        width: 56.67%;
        box-sizing: border-box;
        padding: 20px 0 0 45px;
    }
    .questionaryanswer {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .questionaryanswer li {
        width: 50%;
        margin-top: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
    #windowquestionary {
        padding: 0 25px;
    }
    .questionaryheader {
        background: url(/uploads/image/p_iquestionary/bg_title.png) no-repeat;
        color: #fff;
        width: 100%;
        min-height: 210px;
        display: block;
    }
    .questionaryheader .titlearea {
        width: 100%;
    }
    .questionaryheader .titlearea .sitename {
        font-size: 19px;
        line-height: 1.25em;
    }
    .questionaryheader .titlearea h2 {
        font-size: 56px;
        font-weight: 500;
        line-height: 1.25em;
    }
    .questionaryheader .titlearea .textsummary {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5em;
        margin-top: 10px;
    }
    .questionaryheader figure {
        width: 100%;
        flex-shrink: 0;
        display: block;
        text-align: center;
        display: none;
    }
    .questionaryheader figure img {
        width: auto;
        height: auto;
    }
    .questionaryanswer {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .questionaryanswer li {
        width: 50%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    #windowquestionary {
        padding: 0 15px 30px;
    }
    #windowquestionary>.inner {
        display: block;
        padding: 40px 0 0;
        overflow: scroll;
    }
    #windowquestionary #questionary {
        display: block;
        vertical-align: inherit;
        padding-bottom: 50px;
        overflow: visible;
    }
    #windowquestionary #questionary>.inner {
        box-sizing: border-box;
        width: auto;
        max-width: 1000px;
        margin: auto;
        text-align: left;
        background-color: #e5f3f4;
        position: relative;
    }
    #questionary>.inner .buttonquestionaryclose {
        position: absolute;
        width: 22px;
        height: 22px;
        right: 0;
        top: -32px;
        z-index: 100;
    }
    #questionary>.inner .buttonquestionaryclose span {
        position: absolute;
        width: 25px;
        height: 1px;
        background-color: #ffffff;
        left: -4px;
        transition: all ease-out 0.15s;
    }
    #questionary>.inner .buttonquestionaryclose:hover span {
        background-color: #ccc;
    }
    #questionary>.inner .buttonquestionaryclose span:nth-child(1) {
        transform: rotate(45deg);
        top: 13px;
    }
    #questionary>.inner .buttonquestionaryclose span:nth-child(2) {
        transform: rotate(-45deg);
        top: 13px;
    }
    .questionaryheader {
        background: url(/uploads/image/p_iquestionary/bg_title.png) no-repeat;
        color: #fff;
        width: 100%;
        min-height: 130px;
        display: block;
    }
    .questionaryheader .titlearea {
        flex-grow: 1;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }
    .questionaryheader .titlearea .sitename {
        font-size: 13px;
        line-height: 1.25em;
    }
    .questionaryheader .titlearea h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.25em;
        margin-top: 5px;
    }
    .questionaryheader .titlearea .textsummary {
        font-size: 13px;
        font-weight: 400;
        line-height: 1.5em;
        margin-top: 10px;
    }
    .questionaryheader figure {
        display: none;
    }
    .questionarybody {
        position: relative;
        padding: 10px 10px 15px 10px;
    }
    .questionarybody .subtitle {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.33em;
        color: #5dabcc;
        background-color: #ffffff;
        width: 160px;
        border-radius: 0 20px 20px 0;
        padding: 3px 0 3px 25px;
        margin-left: -10px;
    }
    .questionarybody .inner {
        width: 100%;
    }
    .questionaryquestion {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.33em;
        margin-top: 15px;
    }
    .questionaryanswer {
        margin: 10px -5px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .questionaryanswer li {
        box-sizing: border-box;
        width: 50%;
        padding: 0 5px;
        display: flex;
        flex-shrink: 0;
        text-align: center;
        align-content: center;
        vertical-align: middle;
        margin-top: 10px;
    }
    .questionaryanswer li>span:nth-child(1) {
        color: #ffffff;
        background-color: #aad3e4;
        font-size: 16px;
        font-weight: 500;
        line-height: 1em;
        width: 25px;
        border-radius: 4px 0 0 4px;
        /* 上下中央 */
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .questionaryanswer li>span:nth-child(2) {
        background-color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.33em;
        flex-grow: 1;
        padding: 5px 5px 7px;
        border-radius: 0 4px 4px 0;
        /* 上下中央 */
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .questionarynotes {
        margin-top: 15px;
        padding: 0 0 0 20px;
        font-size: 12px;
        line-height: 1.5em;
    }
    .questionarynotes li {
        list-style-type: decimal;
        list-style-position: outside;
    }
    .questionarypresent {
        position: inherit;
        top: auto;
        right: auto;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .questionarypresent img {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin: auto;
    }
    .questionarypresent figcaption {
        text-align: center;
        margin-top: 5px;
    }
    .questionarybody .buttonentry {
        margin-top: 25px;
    }
    .questionarybody .buttonentry a {
        position: relative;
        display: block;
        box-sizing: border-box;
        width: 100%;
        padding: 20px 30px 22px;
        text-align: center;
        color: #ffffff;
        background-color: #5aa8c5;
        font-size: 18px;
        font-weight: 500;
        line-height: 1em;
    }
    .questionarybody .buttonentry a:hover {
        opacity: 0.8;
    }
    .questionarybody .buttonentry a i {
        position: absolute;
        height: 1em;
        font-size: 34px;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        transform: scalex(1.2);
    }
}

.pc_only {
    display: block !important;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .pc_only {
        display: none !important;
    }
    .sp_only {
        display: block !important;
    }
}