@charset "utf-8";

/***
***/
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 1em;
  color: #404040;
  letter-spacing: 0.05em;
  font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",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: 24px;
  text-align: center;
  position: relative;
}

.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);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin: 0px auto 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.title-h1 {
  color: #fff;
  font-size: 1.8em;
  letter-spacing: 0.2em;
  font-weight: 100;
}

/* guide-botton */
#guide-botton {
  width: 50%;
  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 .attention {
  font-size: 0.8em;
  color: #ff0000;
  padding: 6px;
}

.form-contents .form-line {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
  position: relative;
}

.form-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
  position: absolute;
  bottom: -25px;
  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: 30%;
  padding: 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: 10px;
}

#form .verification {
  text-align: center;
}

#form .verification input {
  color: #555;
  font-weight: bold;
  padding: 10px 40px;
  background-color: #f6e061;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f6e061;
  transition: 0.3s ease all;
}

#form .verification input:hover {
  opacity: .7;
}

/** 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;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    background-color: rgba(255,255,255,.8);
  }

  .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: #f6e061;
    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: 100%;
    }

    #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 {
    }

    #form .attention {
      font-size: 0.8em;
      padding: 3px 0;
    }

    .form-contents p {
      margin: 30px 0;
    }

    .form-contents p label {
      display: flex;
      -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 {
      width: 100%;
    }

    .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: #555;
      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 .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%;
    }


  }


  /*******************************************
  Formスタイル追記
  *******************************************/
  .h2-text {
    text-align: center;
    font-size: 4rem;
    color: #de7c00;
    padding: 10vh 15px;
  }

  .about {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
  }

  .about-wrap {
    margin: auto;
    max-width: 1200px;
    padding: 0 30% 0 0;
  }
  @media screen and (max-width: 1200px) {
    .about-wrap {
      padding-left: 10px;
      padding-right: 10px;
    }
  }

  .about-h3 {
    font-size: 42px;
    margin-bottom: 30px;
    border-bottom: 5px dotted #F0DA24;
    padding:20px 8px;
    color: #452513;
  }
  @media screen and (max-width: 768px) {
    .about-h3 {
      font-size:30px;
    }
  }

  .about-text {
    margin: 0 0 30px;
    line-height: 1.7;
    word-break: break-all;
    color: #452513;
  }

  .about-list{
  }

  .about-list__ttl{
    padding: 10px;
    border-radius: 5px;
    color: #452513;
    background: #FBDF40;
    font-weight: bold;
    margin-bottom: 15px;
    font-size:25px;
  }
  @media screen and (max-width: 768px) {
    .about-list__ttl{
      font-size:20px;
    }
  }
  
  .about-list__contents{
    
  }

  .about-list__list{
    padding-left: 10px;
  }
  @media screen and (max-width: 768px) {
    .about-list__list{
      padding-left: 0;
    }
  }

  .about-list__item{
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: normal;
    color: #8B5233;
  }
  @media screen and (max-width: 768px) {
    .about-list__item{
      font-size: 15px;
    }
  }

  .about-list__item::before{
    content: '';
    width: 10px;
    height: 10px;
    background: #FBDF40;
    border-radius: 100%;
    position: absolute;
    top: 4px;
    left: 0;
  }  
  .about-list__item::after{
    content: '';
    width: 5px;
    height: 5px;
    background: #FBDF40;
    border-radius: 100%;
    position: absolute;
    top: 12px;
    left: 5px;
  }


  .inform {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.8);
    height: 100vh;
  }

  #form {
    background-color: rgba(255,255,255,.8);
  }

  .form-wrap  {
    width: 65%;
    max-width: 1200px;
    margin: auto;
    padding: 60px;
    border: 1px solid #d0d0d0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }

  @media screen and (max-width: 768px) {
    .form-wrap {
      width: 95%;
      margin: auto;
    }
  }


  /*========= スクロールダウンのためのCSS ===============*/

  .scrolldown2{
    position:absolute;
    bottom:10px;
    left:50%;
  }

  .scrolldown2 span{
    position: absolute;
    left:10px;
    bottom:10px;
    color: #555;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }

  .scrolldown2:before {
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
    width:10px;
    height:10px;
    border-radius: 50%;
    background:#555;
    animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  }

  @keyframes circlemove{
    0%{bottom:45px;}
    100%{bottom:-5px;}
  }

  @keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
  }

  .scrolldown2:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width:2px;
    height: 50px;
    background:#eee;
  }

  h1{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color:#eee;
    text-shadow: 0 0 15px #666;
    text-align: center;
  }

  #header{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 100vh;
    position: relative;
  }

  #header.conf{
    height: 10vh;
  }

  #header:before{
    content: '';
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
    background:url("../images/bg.png") no-repeat center;
    background-size: 30%;
    background-position: center right 13vw;
  }

  #header img{
    margin: auto;
    max-width: 400px;
    width: 90%;
  }

  #container{
    position: relative;
    z-index:1;
    background:#eee;
    padding:600px 0;
    text-align: center;
  }

  .thanks-header {
    padding: 15vh 0 0;
  }

  .thanks-header img {
    display: block;
    margin: 35px auto;
    max-width: 300px;
    width: 90%;
  }

  @media screen and (max-width:980px){
    #header,
    #header:before{
      height: 100vh;
    }

    #header:before {
      background-size: 80%;
      background-position: top 18vh center;
    }

    #header img {
      margin: 26vh auto 0;
    }

    .about {
      background-color: rgba(255,255,255,.8);
    }

    .about-wrap {
      max-width: 500px;
      padding: 0 15px;
    }

    .h2-text {
      font-size: 3rem;
    }

    #form {
      width: 100%;
    }

    .form-wrap {
        padding: 60px 15px;
    }
  }
