@charset "UTF-8";
  

.selectradio {
  list-style: none;
  margin: 0;
  padding: 0; 
  width: 100%;
  text-align: center;
}
  .selectradio .selectradio-item {
    margin: 5px 0;
    padding: 0; 
  }
  .selectradio input[type="radio"] {
    display: none; 
  }
  .selectradio input[type="radio"]:checked + label {
    background: #C0E8FF;
    color: #333333;
    border: 2px solid #28A7E1; 
  }
  .selectradio .selectradio-label {
    display: block;
    width: 100%;
    height: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0 5px;
    cursor: pointer;
    color: #333333;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    background: #EEFECD;
    transition: 0.5s;
    border-radius: 4px; 
  }

.selectradio.selectradio-inline .selectradio-item {
  text-align: center;
  display: inline-block; 
  margin:0 auto;
}
.selectradio.selectradio-inline .selectradio-label {
  text-align: center;
  display: inline-block;
  width: 200px; 
}






table {
  border-collapse: collapse;
  width: 70%;
  margin:40px auto;
  min-height: calc(100vh - 380px);
  border: 2px solid #ccc;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

label {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 36px;
  border: 2px solid #ccc;
  border-radius: 15px;
}

input[type="date"] {
  position: relative;
  padding: 0 10px;
  width: 200px;
  height: 36px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  font-size: 14px;
  color: #999;
}

input[type="text"]{
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table {
  width: 70%;
}

.form-table th,
.form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}

.form-table th {
  background: #ffecea;
  position: relative;
  text-align: left;
  width: 100px;
}

.form-table td {
  background: #fff;
  position: relative;
  text-align: left;
  width: 150px;
}

.input_footer{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 15px auto 10px;
}

.test{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 15px auto 10px;
}



.categoryct {
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}
.category select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.category select::-ms-expand {
    display: none;
}
.category.cate {
  position: relative;
  border-radius: 2px;
  border: 2px solid skyblue;
  border-radius: 50px;
  background: #ffffff;
}
.category.cate::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid skyblue;
  pointer-events: none;
}
.category.cate select {
  padding: 8px 38px 8px 8px;
  color: black;
}

.button_wrapper{
  display: flex;
  justify-content: center;
}

.button{
  display:inline-block;
  background:#d13415;
  padding:10px 30px;
  text-align:center;
  color:#FFF;
  margin:5px;
  border:1px solid;
  cursor:pointer;
  }

/* フッター */
.footer
{
    border-top: 3px solid #888 ;        /* 枠線 */
    text-align: center ;                /* テキスト、画像の真ん中寄せ */
    margin-top: 2em ;                    /* 他のブロックとのスペース */
    padding: 1em 0 ;                    /* 上下の余白 */
    background: #e8e8e8 ;
    width: 100%;
    height:100px;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:768px)
{
    /* ボディ */
    body
    {
        font-size: 13px ;    /* 文字サイズ */
        margin: 0 ;        /* スペース */
        padding: 0 ;        /* 余白 */
    }
    
    /* ロゴ画像 */
    .logo
    {
        width: 200px ;
    }
    
    .wrapper
    {
        width: 100%;
        min-height: calc(100vh - 100px);
        margin-top:50px;
    }

    .form-table{
            width: 100%;

    }

    /* フッター */
    .footer
    {
    	margin-top:350px;
	bottom:0px;
    }

    .form-table {
	  width: 100%;
     }
	.form-table th,
	.form-table td {
	  display: block;
	  width: 100%;
	  border-bottom: none;
	}

	input[type="text"],
	textarea {
	  display: block;
	  width: 90%;
	}

  .button_wrapper{
    flex-wrap: wrap;
  }

  .button{
	  display: block;
	  width: 90%;
  }

  .selectradio selectradio-inline{
    display: block;
    width: 100%;
  }

  .selectradio-item{
    display: block;
    width: 100%;
  }

  .selectradio {
    /* list-style: none;
    margin: 0;
    padding: 0; 
    width: 100%; */
    text-align: center;
  }

  .selectradio.selectradio-inline .selectradio-label {
    margin-bottom: 5px;
  }
}