@charset "utf-8";

.container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1160px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .page_nav .container {
        /* exhibition内部ページナビ */
        padding-left: 0px;
        padding-right: 0px;
    }
}


/* ======= btn style ========== */

.btn {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.15em 1.5em 1.15em 0.75em;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: rgb(167, 15, 0);
    background: linear-gradient(135deg, rgba(167, 15, 0, 1) 0%, rgba(88, 8, 0, 1) 80%);
    box-shadow: 1px 3px 0px 0 rgba(0, 0, 0, .2);
    cursor: pointer;
    border-radius: 100px;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}

.btn.back {
    padding: 1.15em 0.75em 1.15em 1.5em;
}

.btn button, .btn input {
    width: 100%;
}

.en .btn {
    letter-spacing: normal;
    font-size: 1.4rem;
}

.btn:hover {
    opacity: 1;
    background: rgb(183, 200, 0);
    background: linear-gradient(135deg, rgba(183, 200, 0, 1) 0%, rgba(0, 87, 15, 1) 80%);
}

.btn::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-color: #580800;
    box-shadow: inset 3px 3px 10px rgba(0, 0, 0, .5);
    transition: 1.0s;
    z-index: 0;
}

.btn:hover::before {
    background-color: #B7C800;
}

.btn::after {
    font-family: 'Material Icons';
    line-height: 1;
    display: block;
    content: "arrow_forward_ios";
    position: absolute;
    top: 50%;
    right: 15px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    z-index: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
}

.btn.back::before {
    right: auto;
    left: 8px;
    background-color: #A70F00;
}

.btn.back:hover::before {
    background-color: #B7C800;
}

.btn.back::after {
    right: auto;
    left: 15px;
    content: "arrow_back_ios";
}

.btn.down::after {
    top: 40%;
    right: 27px;
    -webkit-transform: rotate(90deg) translate(-50%, -50%);
    -ms-transform: rotate(90deg) translate(-50%, -50%);
    transform: rotate(90deg) translate(-50%, -50%);
}

.btn.up::after {
    right: 26px;
    -webkit-transform: rotate(270deg) translate(-50%, -50%);
    -ms-transform: rotate(270deg) translate(-50%, -50%);
    transform: rotate(270deg) translate(-50%, -50%);
}

.btn.btn_large {
    max-width: 350px;
    font-size: 1.9rem;
    margin-right: auto;
    margin-left: auto;
    letter-spacing: normal;
}

.en .btn.btn_large {
    max-width: 380px;
    font-size: 1.75rem;
}

.btn.btn_large::before {
    right: 12px;
    width: 45px;
    height: 45px;
}

.btn.btn_large::after {
    right: 24px;
}

.btn.btn_large.back::before {
    right: auto;
    left: 12px;
}

.btn.btn_large.back::after {
    right: auto;
    left: 30px;
}


@media screen and (max-width: 640px) {
    .btn.btn_large {
        max-width: 300px;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 440px) {
    .btn {
        font-size: 12px;
        padding: 1.55em 2.5em 1.55em 0.75em;
        letter-spacing: normal;
    }

    .btn.btn_large {
        padding: 1.5em 1.5em 1.5em 0.5em;
        font-size: 1.5rem;
    }

    .btn.btn_large.back {
        padding: 1em 0.5em 1em 1.5em;
    }
}



.btn.wid100 {
    display: block;
    width: 100%;
}

.btn.inline {
    display: inline;
}














/* search_area */
.search_area {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgba(160, 255, 0, .1);
}

.search_area h4.c_title {
    white-space: nowrap;
    margin-bottom: 0em;
    width: 220px;
    text-align: left;
}

.search_area h4.c_title span span {
    font-size: 1.2rem;
}

.search_area .search_area_exhibitor h4.c_title span {
    color: #EDDB00;
}

@media screen and (max-width: 920px) {
    .search_area h4.c_title span {
        padding-bottom: 2px;
    }

    .search_area h4 span span {
        display: inline-block;
        padding-right: 5px;
    }
}

.search_area .container,
.search_area .btns {
    margin-top: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.search_area .container.note {
    margin-top: -1em;
    display: block;
    margin-right: auto;
    padding-left: 220px;
    color: #EDDB00;
}

.en .search_area .container.note {
    margin-top: 0.25em;
}

@media screen and (max-width: 920px) {
    .search_area .container {
        display: block;
    }
}

.search_area .btns {
    margin-top: 0.5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 540px) {
    .search_area .btns {
        display: block;
        width: 84%;
        margin-left: auto;
        margin-right: auto;
    }
}

.search_area_field {
    border-top: 1px dotted #DC1A0B;
    padding-top: 2em;
}


.search_area .btn_freeword,
.search_area .btn_exhibitor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -ms-flex-negative: 2;
    flex-shrink: 2;
    z-index: 10;
}

.search_area .btn_exhibitor {
    width: 65%;
}


@media screen and (max-width: 420px) {

    .search_area .btn_freeword,
    .search_area .btn_exhibitor {
        display: block;
    }
}

@media screen and (max-width: 920px) {
    .search_area .btn_freeword, .search_area .btn_exhibitor {
        margin-top: 0.5em;
        width: 100%;
    }

    .search_area_category,
    .search_area_field {
        display: block;
    }

    .search_area .container.note {
        margin-top: 0.5em;
        padding-left: 30px;
    }

}

.search_area .submit::after {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 15px;
    content: "search";
}

.search_area .submit::before {
    -webkit-transition: 1.0s;
    -o-transition: 1.0s;
    transition: 1.0s;
}

.search_area .btn_input_text:hover::before,
.search_area .btns .submit:hover::before,
.search_area .btns .reset:hover::before {
    opacity: 1;
    background: rgb(183, 200, 0);
}

.search_area .btn_search {
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    background-color: transparent;
    padding: 0.75em 2em 0.75em 1em;
    width: 100%;
    position: relative;
    z-index: 5;
    font-size: 1.6rem;
}

.search_area .btn {
    padding: 0;
    /*打ち消し*/
    max-width: 190px;
    /*打ち消し*/
    position: relative;
    margin-right: 0;
    margin-left: 0;
    height: 50px;
    line-height: 50px;
}

.search_area .btn_input_text .btn {
    border-top-left-radius: 0;
    /*打ち消し*/
    border-bottom-left-radius: 0;
    /*打ち消し*/
    max-width: 150px;
    /*打ち消し*/
}

@media screen and (max-width: 420px) {
    .search_area .btn_input_text .btn {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 15px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 15px;
        max-width: 420px;
    }
}

.search_area .btn_search_all {
    margin-right: 0;
    width: 30%;
    font-size: 1.6rem;
    white-space: nowrap;
    -ms-flex-negative: 2;
    flex-shrink: 2;
}

.search_area .btn_search_all,
.search_area .btn_search_field {
    padding: 0 2em 0 1em;
    height: 50px;
    line-height: 50px;
}

.search_area .btns p:last-of-type {
    margin-left: 10px;
}

.search_area .btns p:last-of-type .btn_border {
    padding: 0px 25px;
    height: 50px;
    line-height: 50px;
}

.search_area .btns .btn_border {
    display: block;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 60px;
    background-color: transparent;
    min-width: 12em;
    text-align: center;
    padding: 10px 25px;
}

@media screen and (max-width: 920px) {
    .search_area .btn {
        max-width: 150px;
        /*打ち消し*/
    }

    .search_area .btn_search_all {
        margin-left: 0em;
        width: 100%;
        max-width: 100%;
        margin-top: 1em;
        padding: 0.5em 1em 0.5em 1em;
        line-height: 40px;
    }
}

@media screen and (max-width: 540px) {
    .search_area .btn {
        max-width: 120px;
        /*打ち消し*/
        font-size: 1.4rem;
        margin-right: auto;
        margin-left: auto;
    }

    .search_area .btns p:last-of-type {
        margin-left: 0px;
        margin-top: 0.5em;
    }

    .search_area .btn_search {
        padding: 0.95em 3em 0.95em 0;
        font-size: 1.4rem;
        max-width: 540px;
    }

    .search_area .btn_search_all {
        width: 100%;
        font-size: 1.4rem;
        max-width: 540px;
    }

    .search_area .btns .btn, .search_area .btns .btn_border {
        width: 100%;
        max-width: 100%;
    }
}


.search_area .search_text {
    height: 50px;
    width: 100%;
    padding: 0 0 0 16px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border: none;
    -webkit-box-shadow: 0 0 0 0px #ccc inset;
    box-shadow: 0 0 0 0px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media screen and (max-width: 420px) {
    .search_area .search_text {
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .search_area .search_text::-webkit-input-placeholder {
        font-size: 9px;
    }

    .search_area .search_text::-moz-placeholder {
        font-size: 9px;
    }

    .search_area .search_text:-ms-input-placeholder {
        font-size: 9px;
    }

    .search_area .search_text::-ms-input-placeholder {
        font-size: 9px;
    }

    .search_area .search_text::placeholder {
        font-size: 9px;
    }
}

.search_area .search_text:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgb(0, 91, 172) inset;
    box-shadow: 0 0 0 2px rgb(0, 91, 172) inset;
}

.search_area_category_type,
.search_area_field .btn {
    width: 100%;
    max-width: calc(100% - 220px);
}

.en .search_area_field .btn {
    letter-spacing: normal;
}

@media screen and (max-width: 920px) {

    .search_area_category_type,
    .search_area_field .btn {
        max-width: 100%;
    }
}


.search_area_category_type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.search_area_category_type::after {
    content: "";
    display: block;
    width: 24%;
}

.search_area_category_type_item {
    margin-bottom: 0.5em;
    position: relative;
    width: 24%;
}

.search_area_category_type_item label {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 60px;
    background-color: transparent;
    padding: 5px 12px;
    margin: 3px 0px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    text-align: center;
    font-size: 14px;
}

.en .search_area_category_type_item label {
    padding: 5px 2px;
    font-size: 11px;
}

@media screen and (max-width: 1100px) {
    .en .search_area_category_type_item:last-child {
        width: 28%;
    }
}

@media screen and (max-width: 920px) {

    .en .search_area_category_type_item:last-child,
    .search_area_category_type_item label {
        min-width: 8em;
    }

    .en .search_area_category_type_item label {
        font-size: 10px;
    }
}

.search_area_category_type_item input[type="checkbox"] {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    opacity: 0;
}

.search_area .btns .btn_border:hover,
.search_area_category_type_item input[type="checkbox"]:focus+label,
.search_area_category_type_item input[type="checkbox"]:hover+label {
    border: 1px solid #a0ff00;
    color: #a0ff00;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.search_area_category_type_item input[type="checkbox"]:checked+label {
    border: 1px solid #DC1A0B;
    background-color: #10112B;
    color: #DC1A0B;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}


@media screen and (max-width: 920px) {
    .search_area_category_type {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .search_area_category_type_item {
        width: 32%;
        margin-right: 0%;
    }

    .search_area_category_type_item:nth-child(n+4),
    .en .search_area_category_type_item:last-child {
        width: 49%;
    }
}

@media screen and (max-width: 560px) {
    .en .search_area_category_type_item:nth-child(n+6) {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .search_area_category_type_item {
        width: 49%;
    }

    .search_area_category_type_item:nth-child(n+5) {
        width: 100%;
    }
}





/* アンケート事務局 */

article.questionnaire_vis {
    position: relative;
    z-index: 3;
    overflow: hidden;
    background: rgb(77, 131, 190);
    background: -o-linear-gradient(325deg, rgba(0, 158, 128, 1) 0%, rgba(52, 146, 175, 1) 90%);
    background: linear-gradient(125deg, rgba(0, 158, 128, 1) 0%, rgba(52, 146, 175, 1) 90%);
    padding-top: 70px;
    padding-bottom: 70px;
}

article.questionnaire_vis::after {
    display: block;
    content: "";
    width: 45%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/img_vis_questionnaire.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    z-index: 1;
}

@media screen and (max-width: 1085px) {
    article.questionnaire_vis::after {
        background-size: contain;
        background-position: bottom center;
    }
}

@media screen and (max-width: 980px) {
    article.questionnaire_vis::after {
        width: 100%;
        background-size: 90%;
        background-position: center center;
        opacity: .2;
    }
}

article.questionnaire_vis .container {
    position: relative;
    z-index: 2;
}

article.questionnaire_vis .container h3 {
    text-align: left;
    color: #FFF;
    margin-bottom: 1.5em;
    width: 100%;
    max-width: 350px;
}

article.questionnaire_vis .container .conts {
    max-width: 500px;
}

article.questionnaire_vis .container .conts p {
    text-shadow: #6F0000 0px 0 8px;
}

article.questionnaire_vis .container .btn {
    margin-top: 2em;
    margin-left: 0;
}


@media screen and (max-width: 1035px) {
    article.questionnaire_vis .container .conts {
        max-width: 350px;
    }
}

@media screen and (max-width: 980px) {

    article.questionnaire_vis .container h3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    article.questionnaire_vis .container .conts {
        margin-left: auto;
        margin-right: auto;
    }

    article.questionnaire_vis .container .btn {
        margin-left: auto;
    }

}







/*margin*/
.mgt0 {
    margin-top: 0px !important;
}

.mgt5 {
    margin-top: 5px !important;
}

.mgt10 {
    margin-top: 10px !important;
}

.mgt15 {
    margin-top: 15px !important;
}

.mgt20 {
    margin-top: 20px !important;
}

.mgt25 {
    margin-top: 25px !important;
}

.mgt30 {
    margin-top: 30px !important;
}

.mgt35 {
    margin-top: 35px !important;
}

.mgt40 {
    margin-top: 40px !important;
}

.mgt45 {
    margin-top: 45px !important;
}

.mgt50 {
    margin-top: 50px !important;
}

.mgt55 {
    margin-top: 55px !important;
}

.mgt60 {
    margin-top: 60px !important;
}

.mgt65 {
    margin-top: 65px !important;
}

.mgt70 {
    margin-top: 70px !important;
}

.mgt75 {
    margin-top: 75px !important;
}

.mgt80 {
    margin-top: 80px !important;
}

.mgt85 {
    margin-top: 85px !important;
}

.mgt90 {
    margin-top: 90px !important;
}

.mgt95 {
    margin-top: 95px !important;
}

.mgt100 {
    margin-top: 100px !important;
}

.mgb0 {
    margin-bottom: 0px !important;
}

.mgb5 {
    margin-bottom: 5px !important;
}

.mgb10 {
    margin-bottom: 10px !important;
}

.mgb15 {
    margin-bottom: 15px !important;
}

.mgb20 {
    margin-bottom: 20px !important;
}

.mgb25 {
    margin-bottom: 25px !important;
}

.mgb30 {
    margin-bottom: 30px !important;
}

.mgb35 {
    margin-bottom: 35px !important;
}

.mgb40 {
    margin-bottom: 40px !important;
}

.mgb45 {
    margin-bottom: 45px !important;
}

.mgb50 {
    margin-bottom: 50px !important;
}

.mgb55 {
    margin-bottom: 55px !important;
}

.mgb60 {
    margin-bottom: 60px !important;
}

.mgb65 {
    margin-bottom: 65px !important;
}

.mgb70 {
    margin-bottom: 70px !important;
}

.mgb75 {
    margin-bottom: 75px !important;
}

.mgb80 {
    margin-bottom: 80px !important;
}

.mgb85 {
    margin-bottom: 85px !important;
}

.mgb90 {
    margin-bottom: 90px !important;
}

.mgb95 {
    margin-bottom: 95px !important;
}

.mgb100 {
    margin-bottom: 100px !important;
}

.mgl0 {
    margin-left: 0px !important;
}

.mgl5 {
    margin-left: 5px !important;
}

.mgl10 {
    margin-left: 10px !important;
}

.mgl15 {
    margin-left: 15px !important;
}

.mgl20 {
    margin-left: 20px !important;
}

.mgl30 {
    margin-left: 30px !important;
}

.mgl40 {
    margin-left: 40px !important;
}

.mgl50 {
    margin-left: 50px !important;
}

.mgr0 {
    margin-right: 0px !important;
}

.mgr5 {
    margin-right: 5px !important;
}

.mgr10 {
    margin-right: 10px !important;
}

.mgr15 {
    margin-right: 15px !important;
}

.mgr20 {
    margin-right: 20px !important;
}

.mgr30 {
    margin-right: 30px !important;
}

.mgr40 {
    margin-right: 40px !important;
}

.mgr50 {
    margin-right: 50px !important;
}

/* padding */
.pdt0 {
    padding-top: 0px !important;
}

.pdt5 {
    padding-top: 5px !important;
}

.pdt10 {
    padding-top: 10px !important;
}

.pdt15 {
    padding-top: 15px !important;
}

.pdt20 {
    padding-top: 20px !important;
}

.pdt25 {
    padding-top: 25px !important;
}

.pdt30 {
    padding-top: 30px !important;
}

.pdt35 {
    padding-top: 35px !important;
}

.pdb0 {
    padding-bottom: 0px !important;
}

.pdb5 {
    padding-bottom: 5px !important;
}

.pdb10 {
    padding-bottom: 10px !important;
}

.pdb15 {
    padding-bottom: 15px !important;
}

.pdb20 {
    padding-bottom: 20px !important;
}

.pdb25 {
    padding-bottom: 25px !important;
}

.pdb30 {
    padding-bottom: 30px !important;
}

.pdl5 {
    padding-left: 5px !important;
}

.pdl10 {
    padding-left: 10px !important;
}

.pdr5 {
    padding-right: 5px !important;
}

.pdr10 {
    padding-right: 10px !important;
}


/*width*/
.wid18 {
    width: 18% !important;
}

.wid20 {
    width: 20% !important;
}

.wid23 {
    width: 23% !important;
}

.wid25 {
    width: 25% !important;
}

.wid30 {
    width: 30% !important;
}

.wid33 {
    width: 33% !important;
}

.wid45 {
    width: 45% !important;
}

.wid48 {
    width: 48% !important;
}

.wid50 {
    width: 50% !important;
}

.wid55 {
    width: 55% !important;
}

.wid60 {
    width: 60% !important;
}

.wid65 {
    width: 65% !important;
}

.wid70 {
    width: 70% !important;
}

.wid70 {
    width: 70% !important;
}

.wid75 {
    width: 75% !important;
}

.wid80 {
    width: 80% !important;
}

.wid85 {
    width: 85% !important;
}

.wid90 {
    width: 90% !important;
}

.wid95 {
    width: 95% !important;
}

.wid100 {
    width: 100% !important;
}



/*フォントサイズ*/
.font_10 {
    font-size: 10px !important;
}

.font_12 {
    font-size: 12px !important;
}

.font_14 {
    font-size: 14px !important;
}

.font_16 {
    font-size: 16px !important;
}

.font_18 {
    font-size: 18px !important;
}

.font_24 {
    font-size: 24px !important;
}

/*フォントウェイト*/
.font_bold {
    font-weight: bold !important;
}

.font_normal {
    font-weight: normal !important;
}

/*フォント　右寄せ　真ん中寄せ　左寄せ*/
.font_right {
    text-align: right !important;
}

.font_center {
    text-align: center !important;
}

.font_left {
    text-align: left !important;
}

/*フォントカラー*/
.font_red {
    color: #ff0000 !important;
}

.font_gray {
    color: #9f9f9f !important;
}

/*インデント*/
.text_indent {
    text-indent: -1em;
    margin-left: 1em;
}



/* ---------------------------------------------------------
 common
----------------------------------------------------------*/


.fade {
    -webkit-transition: all 700ms;
    -o-transition: all 700ms;
    transition: all 700ms;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0px, 50px);
    -ms-transform: translate(0px, 50px);
    transform: translate(0px, 50px);
}

.fadein {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.mgb0.fade {
    -webkit-transition: all 1000ms;
    -o-transition: all 1000ms;
    transition: all 1000ms;
    -webkit-transform: translate(0px, 100px);
    -ms-transform: translate(0px, 100px);
    transform: translate(0px, 100px);
}



/*横並び*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex.inline li {
    display: inline;
    margin-right: 10px;
}


/*終了ボタン*/
.disable {
    background: #a9a9a9 !important;
    color: #ccc !important;
    pointer-events: none;
}

/*TOPへ戻るボタン*/
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 10;
    opacity: 0.8;
}

#page_top a {
    border: 1px solid #DC1A0B;
    color: #DC1A0B;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*ブロックマージン*/
.c_space {
    margin-bottom: 50px;
}

.c_space_mini {
    margin-bottom: 30px;
}


/*リスト*/
.disc_list li {
    padding-left: 1em;
    position: relative;
}

.disc_list li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #DC1A0B;
    border-radius: 10px;
    margin-right: 0.5em;
    position: absolute;
    left: 0;
    top: 7px;
}

/*olリスト*/
.num_list {
    counter-reset: count 0;
}

.num_list li {
    position: relative;
    margin: 5px 0;
    margin-left: 2em;
    line-height: 1.8em;
}

.num_list li:before {
    content: counter(count);
    counter-increment: count 1;
    display: inline-block;
    border: 1px solid #fff;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 0.5em;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: -2em;
}

/*動画レスポ*/
.movie_wrap,
.movie-rs {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.movie_wrap iframe,
.movie-rs iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/*アイコン*/
.icon::after {
    content: '';
    color: inherit;
    font-family: 'Material Icons';
    font-weight: 700;
    content: 'arrow_forward_ios';
}

.icon .right::after {
    margin-left: 10px;
}

.icon .left::after {
    margin-right: 10px;
}

.icon .right_end::after {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* for modern brouser */
.cf:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

/* IE7,MacIE5 */
.cf {
    display: inline-block;
}

/* WinIE6 below, Exclude MacIE5 \*/
* html .cf {
    height: 1%;
}

.cf {
    display: block;
}