@charset "utf-8";
/* スマートフォン用CSS */
@media screen and (max-width: 450px) {



  /*全体*/

  * {
    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: 90%;
    margin: 0px auto;
    border: 0px solid #000000;
    padding: 0px 30px 0 30px;
  }


  /*アンケート別*/

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

  .surveyHead {
    margin-bottom: 3rem;
  }



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

  }

  .leadText {
    text-align: center;
    padding-top: 1rem;
    line-height: 1.25;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    word-wrap: break-word;
  }

  /*
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.4;
  }


  .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 {
    display: block;
    border-bottom: 1px dotted #999999;
  }


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

  table th,
  table td {

    text-align: center;
    font-size: 16px;
  }

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

  table td {
    display: block;
    width: 100%;
    border-left: 0px solid #ffffff;
    border-bottom: 0px dotted #999999;
    padding: 20px 20px 20px 35px;
    text-align: left;
  }


  /*ラジオボタン*/

  label {
    text-align: left;
    display: block;
    font-size: 1em;
    padding: 10px 0 10px 9px;
    align-items: center;
    /* 中央に揃える */
    /* text-align: left; */
  }


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



  }

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

  .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;
    font-size: 1rem;
    font-weight: bold;
    width: 35%;
  }


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

  /* ログイン前 */
  .loginWrap_login {
    text-align: center;
    text-decoration: underline;
  }

  .loginWrap_register {
    text-align: center;
    text-decoration: underline;
  }

  .white-space {
    display: none;
  }

  .desc-space {
    display: block;
  }
}