*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

body {
font-family: "Arial", "メイリオ" ;
}

hr.style-one {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}

h2{
font-size: 25px; /*ここに検証で使用する単位を使用*/
font-weight: bold; /*見出しだとわかりやすくするため、太字の記述を追加*/
}

h3{
font-size: 15px; /*ここに検証で使用する単位を使用*/
font-weight: bold; /*見出しだとわかりやすくするため、太字の記述を追加*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
}
a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  border-radius: 100vh;
}

a.btn--indego {
  color: #fff;
  background-color: #2F5597;
  border-bottom: 5px solid #213B69;
}
a.btn--indego:hover {
  margin-top: 3px;
  color: #fff;
  background: #2F5597;
  border-bottom: 2px solid #213B69;
}

a.btn--purple {
  color: #fff;
  background-color: #BBA2C9;
  border-bottom: 5px solid #9770AC;
}
a.btn--purple:hover {
  margin-top: 3px;
  color: #fff;
  background: #BBA2C9;
  border-bottom: 2px solid #9770AC;
}

a.btn--red {
  color: #fff;
  background-color: #FE8180;
  border-bottom: 5px solid #FE6E6E;
}
a.btn--red:hover {
  margin-top: 3px;
  color: #fff;
  background: #FE8180;
  border-bottom: 2px solid #FE6E6E;
}

a.btn--blue {
  color: #fff;
  background-color: #6DA1D0;
  border-bottom: 5px solid #3774AB;
}
a.btn--blue:hover {
  margin-top: 3px;
  color: #fff;
  background: #6DA1D0;
  border-bottom: 2px solid #3774AB;
}

a.btn--beige {
  color: #fff;
  background-color: #F4B183;
  border-bottom: 5px solid #CC5D12;
}
a.btn--beige:hover {
  margin-top: 3px;
  color: #fff;
  background: #F4B183;
  border-bottom: 2px solid #CC5D12;
}

a.btn--green {
  color: #fff;
  background-color: #92D050;
  border-bottom: 5px solid #679E2A;
}
a.btn--green:hover {
  margin-top: 3px;
  color: #fff;
  background: #92D050;
  border-bottom: 2px solid #679E2A;
}


.nice-wrap{
  position: relative;
  width: 100%;
  height: 30px;
 
  margin: 0 auto;
}

.nice-label{
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 8px;
  color: #FE8180;
  transition: all 0.25s ease;
  
  &.focus{
    top: -25px;
    left: 5px;
    font-size: 14px;
    color: #fff;
  }
}

.nice-textbox{
  position: relative;
  display: block;
  width: 200px;
  margin-top: 50px;
  padding: 15px;
  border: 1;
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
  outline: none;
}

.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #6091d3;/*文字色*/
    background: #FFF;
    border: solid 3px #6091d3;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.box2 p {
    font-size: 21px;
    margin: 0; 
    padding: 0;
}

.selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  
  float: left;
  min-width: 200px;
  margin: 50px 33%;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
display: none;
}

.selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

