@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 960px) {


  /*全体*/

  * {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }



  body {
    margin: 0 auto;
    /* 中央揃え */
    border: 0px solid #000000;

  }

  main {
    width: 1080px;
    margin: 0px auto;
    border: 0px solid #000000;
    padding: 0px 30px 0 30px;

  }

  h2>p {
    margin-left: 1em;
  }

  /*アンケート別*/

  /*アンケートと下線*/

  .surveyHead {
    padding-top: 50px;

  }

  h1 {
    text-align: center;
    color: #000000;
    font-size: 1.75rem;
  }

  .leadText {
    text-align: center;
    padding-top: 1.25rem;
    line-height: 1.75;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
  }

  .descText {
    text-align: center;
    line-height: 1.75;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
  }

  /*
h1 span:after{
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    height: 0.25rem;
    background: #c3ab6d;
    left: 15%;
    bottom: 0;	
}

.guidelineHead h1 span{
	display: inline-block;
    position: relative;
    padding-bottom: 0.75rem;
	}
*/


  /*アンケート枠*/

  #surveyWrap {
    margin: 30px auto;
    width: 100%;
    border: 0px solid #000000;
  }


  /*アンケート1とかタイトル*/
  .surveyContent {
    width: 100%;
    margin: 70px auto;
    border: 0px solid #000000;
  }

  .surveyContent h2 {
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 1.375rem;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: bold;
    margin-bottom: 0rem;
    padding-right: 2rem;
    transform-origin: left top;
    padding-left: 5rem;
    overflow: hidden;
    line-height: 1;
  }

  .surveyContent h2:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 2.0rem;
    left: 0;
    top: 0;
    transform-origin: left top;
    transform: skewX(-20deg);
    background: #c3ab6d;
  }

  /*テーブル*/

  table,
  table td,
  table th {
    border-collapse: collapse;
    /* 1pxにする */
  }


  table {
    background: #f5f7f9;
    text-align: center;
    border-top: 0px solid #000000;
    border-right: 0px solid #000000;
    width: 100%;
    margin: 20px auto;
  }

  table tr {
    border-bottom: 0px dotted #999999;
  }


  table tr:last-child {
    border-bottom: 0px solid #000000;
  }

  table th,
  table td {
    font-size: 18px;
    text-align: left
  }

  table th {
    width: 24%;
    border-left: 0px solid #000000;
    border-bottom: 0px dotted #999999;
    padding: 20px 30px;

  }

  table td {
    width: 76%;
    border-left: 0px solid #ffffff;
    border-bottom: 0px dotted #999999;
    padding: 20px 0px;
  }





  .styled-table {
    width: 100%;
    border-collapse: collapse;
  }

  .styled-table tr {
    position: relative;
  }

  .styled-table tr:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 2%;
    /* 80%の線を中央に配置するために左右に10%の余白を設定 */
    width: 95%;
    /* 線の幅を80%に設定 */
    bottom: 0;
    border-bottom: 1px solid #999;
    /* 線の色と太さを設定 */
  }


  /*必須*/
  th .requiredIcon {
    background: #eb1c24;
    color: #fff;
    font-weight: 500;
    height: 1.25rem;
    width: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-left: 0em;
  }



  /*ラジオボタン*/

  label {
    font-size: 0.9em;
    padding: 10px 20px;
    display: inline-flex;
    /* インライン要素でフレックスボックスを使用 */
    align-items: center;
    /* 中央に揃える */
  }

  label:nth-child(1) {
    padding: 5px;
  }

  label input[type="radio"] {
    appearance: auto;
    margin-right: 16px;
    /* テキストとボタンの間に8pxの間隔を追加 */
    vertical-align: middle;

  }

  /*最後の送信ボタン*/

  .submit {
    appearance: none;
    background: #c4ac6d;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 3.75rem;
    margin: 0 auto;
    border: 1px solid #c4ac6d;
    cursor: pointer;
    transition: 0.25s opacity;
    width: 100%;
    font-size: 1.125rem;
    font-weight: bold;
    max-width: calc(20% - 0.75rem);
  }


  .submit:active {
    margin-top: 3px;
    background-color: #309bf2;
    border-bottom: 2px solid #006366;
  }



  .submit:after {
    background: #000;
    width: 1rem;
    height: 1px;
    right: 0;
    top: 50%;
    margin-top: -1px;
    content: "";
    position: absolute;
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
  }



  /*プログレスバー*/

  progress {
    width: 70%;
    /* 幅を300pxに設定 */
    height: 20px;
    /* 高さを20pxに設定 */
  }

  progress::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 10px;
  }

  progress::-webkit-progress-value {
    background-color: #4caf50;
    border-radius: 10px;
  }

  /*テキストエリア*/

  textarea {
    width: 70%;
    /* 横幅を100%に設定 */
    padding: 10px;
    /* 内側の余白を設定 */
    border: 1px solid #cccccc;
    /* ボーダーの色と太さ */
    font-size: 16px;
    /* フォントサイズを設定 */
    background-color: #f9f9f9;
    /* 背景色を設定 */
    color: #333333;
    /* 文字色を設定 */
  }

  #topMain1 {
    background: url(https://evp.jp/images/top/top_bg.jpg) center top;
    height: 1000px;
  }

  #inner0 {
    width: 1080px;
    margin: 0 auto;
    text-align: center;
  }


  h2 {
    font-size: 1.75em;
    padding: 50px;
  }

  #inner1 {
    width: 100%;
    background: #ffffff;
    padding: 50px;


  }

  #surveyexp {
    text-align: center;
    padding: 30px;
  }

  btnWrap0 {
    float: left;
  }

  btnWrap1 {
    float: right;
    padding-top: 20px;
  }

  p.tac1 {
    padding: 10px;
  }

  .surveyContent>h2 span {
    margin-right: 1em;
  }


  .start-questionnaire>span {
    margin-right: 1em;
  }

  /* 非ログイン時 */
  .loginWrap {
    text-align: center;
    line-height: 1.75;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
  }

  .loginWrap_login {
    text-decoration: underline;
    text-decoration-color: #000;
  }

  .loginWrap_register {
    text-decoration: underline;
    text-decoration-color: #000;
  }

  #voting_desc {
    text-align: center;
  }

  .questionnaire-head {
    text-align: center;
  }

  .questionnaire-head>.leadText {
    text-align: center;
  }
}

/* アンケートの詳細情報 */
.white-space {
  margin-right: 20px;
}

.desc-space {
  margin-right: 20px;
}

/* アンケート画面・運営からのコメント */
#operator_comment {
  font-size: 20px;
  text-align: center;
}

#caution {
  font-size: 20px;
  text-align: center;
}

/* 入力回数注意喚起 */
#voting_message {
  text-align: center;
  margin-top: 1em;
}

#caution {
  margin-top: 1em;
}

/* questionnaire.css に追加 */
.radio-large {
    transform: scale(2.0);
}