@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap');

/***
#b1b1b1以下枠
***/
* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-size: 1em;
    color: #404040;
    letter-spacing: 0.05em;
    font-family: "MS Pゴシック", sans-serif;
    text-align: justify;
}

#wrap {
    width: 100%;
    padding: 0px 0 0;
    position: relative;
    overflow: hidden;
}

a {
    cursor: pointer;
}

li {
    list-style: none;
}

input {
    cursor: pointer;
}

/*header*/

.title-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    padding: 0px 0 25px;
}

.title-logo img {
    max-width: 1058.38px;
    max-height: 415.72px;
    width: 80%;
    height: auto;
}

.h-title-text {
    letter-spacing: 0.18em;
    font-size: 32px;
    text-align: center;
    position: relative;
    margin: 35px;
}

.h-text {
    width: 60%;
    margin: 0 auto;
    padding: 20px 0;
}

.h-title-text::after {
    content: "";
    display: block;
    width: 60%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#h-title {
    width: 100%;
    height: auto;
    /* background: linear-gradient(-45deg, #C70067, #008DB7); */
    background:green;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 0px auto 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    text-align: center;
}

.title-h1 {
    color: #fff;
    font-size: 1.8em;
    letter-spacing: 0.2em;
    font-weight: 100;
}

/* guide-botton */
#guide-botton {
    width: 55%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-justify-content: space-between;
}

#guide-botton .g-button {
    width: 200px;
    height: 50px;
    border: 1px solid #d0d0d0;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

#guide-botton .gb-blue {
    color: #fff;
    background-color: #008db7;
    border: none;
}

#guide-botton .gb-violet {
    color: #fff;
    background-color: #63468E;
    border: none;
}

#guide-botton .gb-magenta {
    color: #fff;
    background-color: #C50167;
    border: none;
}

#guide-botton .triangle {
    border-left: 30px solid #F8F8F8;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    transform: scale(0.3);
    position: relative;
    z-index: -1;
}

#guide-botton .triangle::before {
    content: "";
    display: block;
    border-left: 30px solid #F8F8F8;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

#guide-botton .triangle::after {
    content: "";
    display: block;
    border-left: 30px solid #F8F8F8;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

#guide-botton .t-blue {
    border-left: 30px solid #fff;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    animation: triangleAnime 1.2s infinite linear 0.4s;
}

#guide-botton .t-blue::before {
    border-left: 30px solid #fff;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    animation: triangleAnime 1.2s infinite linear;
}

#guide-botton .t-blue::after {
    border-left: 30px solid #fff;
    border-bottom: 25px solid #fff;
    border-top: 25px solid #fff;
    animation: triangleAnime 1.2s infinite linear 0.8s;
}

#guide-botton .t-magenta {
    border-left: 30px solid #fff;
    animation: triangleAnime2 1.2s infinite linear 0.4s;
}

#guide-botton .t-magenta::before {
    border-left: 30px solid #fff;
    animation: triangleAnime2 1.2s infinite linear;
}

#guide-botton .t-magenta::after {
    border-left: 30px solid #fff;
    animation: triangleAnime2 1.2s infinite linear 0.8s;
}

@keyframes triangleAnime {
    from {
        border-left: 30px solid #008DB7;
    }

    to {
        border-left: 30px solid #ffffff;
    }
}

@keyframes triangleAnime2 {
    from {
        border-left: 30px solid #C70067;
    }

    to {
        border-left: 30px solid #ffffff;
    }
}


/** form **/
#form {
    width: 65%;
    margin: 50px auto;
    padding: 30px 100px;
    border: 1px solid #d0d0d0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#form .attention {
    font-size: 0.8em;
    color: #ff0000;
    padding: 6px;
}

.form-contents .form-line {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    position: relative;
}

.form-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d2d2d2;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.form-contents p label {
    width: 100%;
    display: flex;
    -webkit-display: flex;
}

.form-contents p label span:first-of-type {
    display: block;
    width: 34%;
    padding: 4px;
    padding-right:10px;
}

/*
.form-contents p label span:nth-of-type(2) {
    display: block;
    width: 70%;
    padding: 10px;
} */

.form-contents p label input {
    width: 70%;
    margin-right: 10px;
    border: none;
    border: 1px solid #d0d0d0;
    background: #F8F8F8;
    padding-left: 10px;
    float: left;
}

input::placeholder {
    color: #c1c1c1;
    font-size: 14px;
}

#form .pripoli {
    font-size: 0.8em;
    text-align: center;
    margin: 40px;
}

.form-line span:nth-of-type(1) {
    position: relative;
}

.form-line span:nth-of-type(1)::after {
    position: absolute;
    bottom: -5px;
    left: 10px;
    font-size: 13px;
}


#form .verification {
    text-align: center;
}

#form .verification input {
    color: #fff;
    padding: 10px 20px;
    background-color: #008db7;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #008db7;
    transition: 0.3s ease all;
}

#form .verification input:hover {
    color: #008db7;
    background: #fff;
}

/** form-error **/
.form-error {
    width: 80%;
    margin: 0px auto 50px;
    padding: 20px;
    border: rgba(255, 0, 0, 0.4) 3px double;
    background-color: rgba(255, 0, 0, 0.02);
}

.form-error p {
    color: rgba(255, 0, 0, 1);
    font-size: 14px;
    padding: 6px 0;
}

/** conf.html **/
.form-conf-label {
    position: relative;
    z-index: 100;
}

.form-conf-label::before {
    content: "";
    display: block;
    width: 70%;
    height: 130%;
    background-color: #f8f8f8;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.form-conf p label input {
    border: none;
    background-color: #fff;
}

#form .s-u-text_conf {
    justify-content: flex-start;
}

.s-u-text_conf .conf-form-text {
    width: 70%;
}

conf-form-text::after {}

/** thanks.html **/
.thanks-form p {
    text-align: center;
    line-height: 2.2;
    margin-bottom: 30px;
}

.thanks-form p:last-of-type {
    margin-bottom: 0;
}



/** webseminar **/

/* 動画掲載前メッセージ */
#MoveMessage {
    width: 50%;
    margin: 0px auto;
    padding: 30px 20px;
}

#MoveMessage .mm-p {
    line-height: 1.7em;
    letter-spacing: 0.25em;
    position: relative;
}

#MoveMessage .mm-p::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-top: #d2d2d2 solid 1px;
    border-left: #d2d2d2 solid 1px;
    position: absolute;
    top: -40px;
    left: -40px;
}

#MoveMessage .mm-p::after {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-bottom: #d2d2d2 solid 1px;
    border-right: #d2d2d2 solid 1px;
    position: absolute;
    bottom: -40px;
    right: -40px;
}

/*********************************
#move-contents {
    width: 65%;
    letter-spacing: 0.17em;
    margin: 0px auto;
}

#move-contents .move-c01 {
    margin: 80px 0;
    display: flex;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-justify-content: space-between;
}

.thumbnail-move {
    width: 320px;
    height: 180px;
    overflow: hidden;
}

.thumbnail-move iframe {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    transition: 0.4s ease all;
}

.thumbnail-move:hover iframe {
    transform: scale(1.1);
}

#move-contents .mc {
    width: 62%;
}

#move-contents .mc-title {
    height: 20%;
    font-size: 1.2em;
    margin: 0px 0px 3%;
}

.mc-title a {
    color: #008db7;
    transition: 0.3s ease all;
}

.mc-title a:hover {
    color: #c50167;
}

#move-contents .mc .mc-time {
    font-size: 0.75em;
    font-weight: normal;
    text-align: right;
}

#move-contents .mc-text {
    width: 100%;
    height: 70%;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    background-color: #F8F8F8;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 60px;
}
*****************************************/
/*****************************************
#move-contents {
    width: 65%;
    letter-spacing: 0.17em;
    margin: 0px auto;
}

#move-contents .move-c01 {
    margin: 80px 0;
    display: flex;
    -web32kit-display: flex;
    flex-direction: column;
}

.thumbnail-move {}

.mc iframe {
    max-width: 640px;
    max-height: 360px;
    width: 100%;
}

#move-contents .mc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-justify-content: space-between;
}

#move-contents .mc-title {
    height: auto;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.mc-title a {
    display: block;
    text-align: center;
    color: #f8f8f8;
    background-color: #008db7;
    padding: 20px;
    transition: 0.3s ease all;
}

.mc-title a:hover {
    color: rgba(255, 255, 255, 0.3);
}

#move-contents .mc-time {
    font-size: 0.75em;
    font-weight: normal;
    text-align: right;
}

#move-contents .mc-text {
    width: 35%;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

*****************************************/

#move-contents {
    width: 65%;
    letter-spacing: 0.17em;
    margin: 0px auto;
}

#move-contents .move-c01 {
    margin: 80px 0;
    display: flex;
    -web32kit-display: flex;
    flex-direction: column;
}

.thumbnail-move {}

.mc iframe {
    max-width: 640px;
    max-height: 360px;
    width: 100%;
}

#move-contents .mc {
    width: 100%;
    border: #008db7 1px solid;
    border-top: none;
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    -webkit-flex-direction: column;
}

#move-contents .mc-title {
    width: 100%;
    height: auto;
    font-size: 1.2em;
    margin-bottom: 0px;
}

.mc-title {
    display: block;
    text-align: center;
    color: #f8f8f8;
    background-color: #008db7;
    padding: 20px;
    transition: 0.3s ease all;
}

.mc-title a:hover {
    color: rgba(255, 255, 255, 0.3);
}

#move-contents .mc-time {
    font-size: 0.75em;
    font-weight: normal;
    text-align: right;
}

#move-contents .mc-text {
    width: 100%;
    font-size: 14px;
    margin: 0 0px 20px;
    padding: 20px;
}

/* 動画ページアンケート */

#ws-questionnaire {
    display: flex;
    align-items: center;
    flex-direction: column;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-flex-direction: column;
    margin: 100px auto 50px;
    padding: 20px 0;
    position: relative;
}

.questionnaire-a-top {
    width: 60%;
    color: #404040;
    font-size: 20px;
    letter-spacing: 0.3em;
    text-align: center;
    padding: 40px 50px;
    text-decoration: none;
    background: rgba(0, 141, 183, 0.5);
    position: relative;
    transition: 0.3s ease all;
}

.questionnaire-a-top::after {
    content: "";
    display: block;
    border-top: rgba(0, 141, 183, 0.5) solid 30px;
    border-right: rgba(255, 255, 255, 0.0) solid 50px;
    border-left: rgba(255, 255, 255, 0.0) solid 50px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease all;
}

.ws-questionnaire-text {
    width: 50%;
    margin: 60px 0;
    padding: 40px 20px;
    position: relative;
}

.ws-questionnaire-text a {
    display: block;
    width: 300px;
    color: #008db7;
    text-align: center;
    text-decoration: none;
    margin: 20px auto 0;
    padding: 20px 0;
    border: #008db7 1px solid;
    border-radius: 5px;
    transition: 0.3s ease all;
    position: relative;
}

.ws-questionnaire-text a::before {
    content: "";
    display: block;
    background: #008db7;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease all;
}

.ws-questionnaire-text a:hover {
    color: #fff;
}

.ws-questionnaire-text a:hover::before {
    width: 100%;
}

.ws-questionnaire-text::before {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    border-top: #d2d2d2 1px solid;
    border-left: #d2d2d2 1px solid;
    position: absolute;
    top: 0px;
    left: -20px;
}

.ws-questionnaire-text::after {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    border-bottom: #d2d2d2 1px solid;
    border-right: #d2d2d2 1px solid;
    position: absolute;
    bottom: 0px;
    right: -20px;
}

.ws-questionnaire-text h3 {
    font-size: 20px;
}

.ws-questionnaire-text p {
    margin: 10px 0;
}


/*** 個人情報保護方針 ***/
.title-h1-p {
    position: relative;
}

.title-h1-p::after {
    content: "privacy\00a0policy";
    font-size: 10px;
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
}

.pp-form dl {
    font-size: 14px;
    margin-bottom: 50px;
}

.pp-form dl dt {
    font-weight: bolder;
    font-size: 15px;
    margin-top: 20px;
}

.pp-form dl dt:first-of-type {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.pp-form dl dt:first-of-type::before {
    content: "";
    display: block;
    width: 160px;
    height: 1px;
    background-color: #404040;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.pp-form dl dt:first-of-type::after {
    content: "";
    display: block;
    width: 160px;
    height: 1px;
    background-color: #404040;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.pp-form dl dt:last-of-type {
    text-align: right;
    font-weight: normal;
    font-size: 14px;
}

.pp-form dl dd {
    padding: 0 16px 10px;
}


.pp-close {
    display: flex;
    justify-content: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    margin-bottom: 100px;
}

.pp-close input {
    padding: 10px;
}

/*** enquete ***/
#wrap .enquete__form .f-overview::after {
    content: none;
}

#wrap .enquete__form .form-contents p .e-form__label {
    flex-direction: column;
}

#wrap .enquete__form .form-contents p .e-form__label label {
    align-items: center;
}

#wrap .enquete__form .form-contents p .e-form__label span:first-of-type {
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 0 10px;
}


#wrap .enquete__form .form-contents p .e-form__label span:nth-of-type(2) {
    width: 100%;
}

#wrap .enquete__form .form-contents p .e-form__label input {
    width: auto;
    margin-right: 10px;
    border: none;
    border: 1px solid #d0d0d0;
    background: #F8F8F8;
    padding-left: 10px;
    float: left;
}

#wrap .enquete__form .form-contents .form-company .e-form__label input {
    padding: 10px;
}

#wrap .enquete__form .form-contents .e-form__label textarea {
    height: 100px;
}

/*** enquete-conf ***/
#wrap .enquete__form .form-contents .form-conf-label .e-conf-label span {
    width: 100%;
}

#wrap .enquete__form .form-contents .form-conf-label span:nth-of-type(2) {
    width: 100%;
    background-color: #f8f8f8;
}

#wrap .enquete__form .form-contents .form-conf-label .e-conf-label {
    display: flex;
    flex-direction: column;
}

#wrap .enquete__form .form-contents .form-conf-label::before {
    content: "";
    display: none;
}

/*** contact ***/
.contact {
    width: 50%;
    margin: 50px auto;
}

.contact-add p {
    text-align: center;
}

.contact .add-title {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
}

.contact .add-title2 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    position: relative;
}

.contact .add-title::before {
    content: "";
    display: block;
    width: 25%;
    height: 1px;
    background-color: #404040;
    position: absolute;
    top: 50%;
    left: 0%;
}

.contact .add-title::after {
    content: "";
    display: block;
    width: 25%;
    height: 1px;
    background-color: #404040;
    position: absolute;
    top: 50%;
    right: 0%;
}

.contact-add {
    padding: 10px 60px;
}

.contact-add .add-link {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-justify-content: space-between;
}


.contact-add address {
    width: 45%;
    font-style: normal;
}

.contact-add a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
    color: #404040;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    -webkit-flex-direction: column;
}

.contact-add a:hover {
    color: #fff;
    background-color: #d2d2d2;
}

.contact-add a span {
    display: block;
    font-size: 12px;
    text-indent: 16px;
}

/*** footer ***/
#footer-contents {
    width: 100%;
    height: 150px;
    font-size: 14px;
    border-top: rgba(212, 220, 214, 0.1) solid 1px;
    box-shadow: rgba(212, 220, 214, 0.4) 0px -1px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

.fc-ul {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-display: flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

.fc-li {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.fc-li span {
    display: block;
}

.fc-li span:first-of-type {
    width: 30%;
    color: #fff;
    background-color: #008db7;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.fc-li span:last-of-type {
    width: 60%;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.fc-li img {
    width: 100%;
}

/**********************************
        レスポンシブ
**********************************/
@media screen and (max-width: 1360px) {

    .h-title-text::after {
        width: 80%;
    }

    #form {
        width: 80%;
    }

    #guide-botton {
        width: 70%;
    }

    #move-contents {
        width: 80%;
    }

    #MoveMessage {
        width: 60%;
        margin: 0px auto;
        padding: 30px 20px;
    }

    #survey-form {
        width: 80%;
    }

    .questionnaire-a-top,
    .questionnaire-a-bottom {
        width: 70%;
    }

    .ws-questionnaire-text {
        width: 60%;
    }

    .pp-form dl dt:first-of-type::before {
        width: 140px;
    }

    .pp-form dl dt:first-of-type::after {
        width: 140px;
        height: 1px;
    }


    .fc-ul {
        width: 70%;
    }

    /*** contact ***/

    .contact {
        width: 70%;
    }

    .contact-add address {
        font-size: 14px;
    }

    .contact-add a span {
        font-size: 12px;
        text-indent: 0px;
    }

}

@media screen and (max-width: 960px) {

    /*header*/
    #header-title {
        width: 100%;
    }

    .h-title-text {
        font-size: 18px;
    }


    /* guide-botton */

    /** form **/
    #form {
        width: 75%;
        padding: 50px 20px;
    }

    .form-contents p label span {
        padding: 15px 6px;
    }

    /** conf.html **/

    /** thanks.html **/


    /** webseminar **/

    #MoveMessage {
        width: 80%;
    }

    #move-contents {
        width: 80%;
    }

    #move-contents .move-c01 {
        flex-direction: column;
        align-items: center;
        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }

    #move-contents .mc {
        width: 100%;
        flex-direction: column;
        align-items: center;
        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }

    #move-contents .mc-text {
        width: 75%;
        margin: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #ws-questionnaire {
        margin-top: 50px;
    }

    .questionnaire-a-top,
    .questionnaire-a-bottom {
        width: 80%;
    }

    .ws-questionnaire-text {
        width: 70%;
    }

    /* プライバシーポリシー */
    .pp-form-title {
        padding-bottom: 20px;
    }

    .pp-form dl {
        padding: 0 20px;
    }

    .pp-form dl dt:first-of-type::before {
        width: 20%;
    }

    .pp-form dl dt:first-of-type::after {
        width: 20%;
    }


    /* footer */
    .fc-li {
        width: 48%;
    }



}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.8em;
        letter-spacing: 0.05em;
    }

    /*header*/
    #h-title {
        width: 100%;
        padding: 0;
        margin: 20px auto 50px;
    }

    .title-h1 {
        font-size: 1.6em;
        padding: 1.4em 0;
    }

    .title-logo {
        height: auto;
        padding: 0px 0px 20px;
    }

    .title-logo img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .h-title-text {
        letter-spacing: 0.1em;
        font-size: 16px;
        text-align: center;
        position: relative;
    }

    .h-title-text::after {
        width: 80%;
        height: 80%;
    }

    .h-title-text span {
        display: block;
    }

    .h-text {
        width: 80%;
        padding: 20px 0 0;
    }

    /* guide-botton */
    #guide-botton {
        width: 90%;
        height: 30px;
    }

    #guide-botton .g-button {
        width: 30%;
        height: 30px;
    }

    #guide-botton .triangle {
        transform: scale(0.2);
        position: relative;
        top: -10px;
    }

    #guide-botton .triangle::before {
        display: none;
    }

    #guide-botton .triangle::after {
        display: none;
    }

    /** form **/
    #form {
        width: 95%;
        margin: 25px auto;
        padding: 20px 10px;
    }

    #form .attention {
        font-size: 0.8em;
        padding: 3px 0;
    }

    .form-contents p {
        margin: 30px 0;
    }

    .form-contents p label {
        /* display: flex; */
		/* display: block; */
        -webkit-display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .form-contents p label span {
        width: 60%;
        padding: 6px;
        border-bottom: none;
        margin-bottom: 10px;
    }

    .form-contents p label span:first-of-type {
		top:2px;
        width: 100%;
        padding:2px
    }

    .form-line span:nth-of-type(1)::after {
        position: absolute;
        bottom: -7px;
        left: 7px;
        font-size: 10px;
    }

    .form-contents p label input {
        width: 100%;
        border: 1px solid #d0d0d0;
        padding: 10px 10px;
    }

    #form .pripoli {
        font-size: 0.9em;
        text-align: center;
        margin: 30px auto;
    }

    #form .verification {
        text-align: center;
    }

    #form .verification input {
        width: 60%;
        height: 50px;
        color: #fff;
        padding: 10px 20px;
        margin: 10px 20px;
    }

    /** form-error **/
    .form-error {
        width: 90%;
        margin: 0 auto 20px;
    }

    /** conf.html **/

    .form-conf p label input {
        border: #d0d0d0 solid 1px;
        background-color: #fff;
    }

    .form-conf-label::before {
        content: "";
        display: block;
        width: 98%;
        height: 40%;
        background-color: #f8f8f8;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(0%);
        z-index: -1;
    }
	
	.form-line::after {
		bottom:-5px;
	}

    #form .conf-form-text {
        padding-left: 15px;
    }

    #form .s-u-text_conf {
        justify-content: flex-start;
        padding-left: 10px;
    }

    #form .s-u-text_conf .conf-form-text {
        padding: 0px 5px;
    }
	

    /** thanks.html **/
    .thanks-form p {
        text-align: center;
        line-height: 2.2;
        margin-bottom: 30px;
    }

    .thanks-form p:last-of-type {
        margin-bottom: 0;
    }


    /** webseminar **/

    /* 動画掲載前メッセージ */
    #MoveMessage {
        width: 90%;
        padding: 20px 20px;
    }

    #MoveMessage .mm-p {
        letter-spacing: 0.1em;
    }

    #MoveMessage .mm-p::before {
        top: -25px;
        left: -25px;
    }

    #MoveMessage .mm-p::after {
        bottom: -25px;
        right: -25px;
    }

    #move-contents {
        width: 95%;
        letter-spacing: 0.1em;
        margin: 0 auto;
    }

    #move-contents .thumbnail-move {
        width: 100%;
    }

    #move-contents img {
        width: 100%;
        margin: 0 auto;
    }

    #move-contents .move-c01 {
        margin: 60px 0;
        display: flex;
        flex-direction: column;
        -webkit-display: flex;
        -webkit-flex-direction: column;
    }

    #move-contents .mc {
        margin-left: 0px;
    }

    #move-contents .mc-title {
        font-size: 1.1em;
    }

    #move-contents .mc .mc-time {
        font-size: 0.75em;
        text-align: right;
    }

    #move-contents .mc-text {
        width: 100%;
        height: auto;
        letter-spacing: 0.12em;
        line-height: 1.8;
        padding: 10px;
    }

    .ws-questionnaire-text a {
        padding: 10px 0;
        box-shadow: 2px 2px 5px rgba(200, 200, 200, 0.5);
    }

    /* アンケート */
    #ws-questionnaire {
        margin: 50px 0;
        padding: 30px 0;
    }

    #ws-questionnaire a {
        font-size: 16px;
        width: 80%;
    }

    .questionnaire-a-top {
        width: 95%;
        font-size: 16px;
        padding: 20px 10px;
    }

    .ws-questionnaire-text {
        width: 80%;
    }

    .ws-questionnaire-text h3 {
        font-size: 16px;
    }

    /* プライバシーポリシー */
    .pp-form-title {
        font-size: 20px;
        text-align: center;
        padding-bottom: 0px;
    }

    .pp-form dl {
        padding: 0 0px;
        font-size: 12px;
    }

    .pp-close {
        margin-top: 50px;
        margin-bottom: 0px;
    }

    .pp-close input {
        padding: 10px;
    }

    .pp-form dl dt:first-of-type {
        font-size: 16px;
    }

    .pp-form dl dt:first-of-type::before {
        display: none;
    }

    .pp-form dl dt:first-of-type::after {
        display: none;
    }

    .pp-form dl dt:last-of-type {
        font-size: 12px;
    }

    /*** enquete ***/
    #wrap .enquete__form .f-overview::after {
        content: none;
    }

    #wrap .enquete__form .form-contents p .e-form__label label {
        display: flex;
        flex-direction: row;
    }

    #wrap .enquete__form .form-contents p .e-form__label span:first-of-type {
        width: 100%;
    }

    #wrap .enquete__form .form-contents p .e-form__label span:nth-of-type(2) {
        width: 100%;
    }

    #wrap .enquete__form .form-contents p .e-form__label input {
        width: auto;
        margin-right: 10px;
        border: none;
        border: 1px solid #d0d0d0;
        background: #F8F8F8;
        padding-left: 10px;
        float: left;
    }

    #wrap .enquete__form .form-contents .form-company .e-form__label input {
        padding: 10px;
    }

    #wrap .enquete__form .form-contents .e-form__label textarea {
        height: 100px;
    }

    /*** contact ***/
    .contact {
        width: 70%;
    }

    .contact-add {
        padding: 10px 0px;
    }

    .contact-add .add-link {
        width: 100%;
        margin: 10px 0;
        -webkit-flex-direction: column;
    }

    .contact .add-title {
        font-size: 16px;
    }

    .contact .add-title2 {
        font-size: 20px;
    }

    .contact-add address {
        width: 100%;
        margin: 10px 0;
        font-style: normal;
    }


    .contact-add a span {
        font-size: 10px;
        text-indent: 16px;
    }


    /* footer */
    #footer-contents {
        width: 100%;
        height: auto;
        padding: 50px 0;
        margin-top: 50px;
    }


    .fc-ul {
        width: 98%;
        font-size: 12px;
    }

    .fc-li {
        width: 48%;
    }

    .fc-sponsor,
    .fc-planning {
        width: 100%;
    }

    .fc-li ul li:first-of-type {
        width: 35%;
    }

    .fc-li ul li:last-of-type {
        width: 50%;
    }

    .fc-planning li:last-of-type {
        align-items: flex-start;
        flex-direction: column;
        -webkit-align-items: flex-start;
        -webkit-flex-direction: column;
    }

    .fc-li img {
        width: 100%;
    }


}


/**********************************
       必須
**********************************/
.hissu{
	
}
.hissu:after{
	display:contents;
	color:red;
	content:" ※";
}
//ラジオボタンの時のタイトル
.b_title{
		
}
/* 20220701 追加------------------------------------------ */
.hissu-box {
    width: 100% !important;
}
.form-line-box-under::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d2d2d2;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.form-box__in {
    padding: 1.4em;
    background-color: #deedde;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 4px;
}
.form-box__in input {
    background-color: #ffffff !important;
}
.form-box__in .form-line::after {
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .hissu-box {
        margin-bottom: .2em !important;
    }
    .form-box__in {
        padding: 1em;
    }
}
/* 20220701 追加------------------------------------------ */
/**********************************
        ラジオボタン
**********************************/
.form-contents p label input[type=radio] {
    width: 10px;
    margin-right: 10px;
    border: none;
    border: none;
    background: none;
    padding-left: 0;
    float: none;
    margin-top: 0.3em;
}
.d_b{
	
}

/**********************************
        テキストエリア
**********************************/

span.i-textarea{
	width:70%;
}

//BR
.pc-br{
	 display: block;			
}


@media screen and (max-width: 768px) {
	span.f-overview.b_title{
		border-bottom:1px solid #d2d2d2;
	}
	.i-textarea{
		width: 100% !important;
	}
	.pc-br{
		 display: none;
	}
	.d_b{
		display: block !important;
	}

	
}

