@charset "UTF-8";
/*==============================================================================================

    common css

    ※※※※※ブラウザ対応※※※※※

    safari:9以上
    chrome:63以上
    firefox:43以上
    opera:43以上
    edge:12以上
    IE:10以上


    ※※※※※ベンダープレフィックスを付けるプロパティ※※※※※

    -moz-transform
    -webkit-transform
    transform

    -moz-transition
    -webkit-transition
    transition
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -moz-animation
    -webkit-animation
    animation

    display: -webkit-flex;
    display: flex;
    

==============================================================================================*/

main {
  min-height: calc(100vh - 138px);
}

/*==============================================================================================

	body要素

==============================================================================================*/

body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 16px;
  font-size: 16rem;
  color: #333;
  line-height: 1.4;
  font-weight: 200;
  position: relative;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .5s ease;
}


/*==============================================================================================

	container要素

==============================================================================================*/

.container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
}

/*==============================================================================================

	terms要素

==============================================================================================*/

.terms {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
}


/*==============================================================================================

	input要素

==============================================================================================*/
input[type="text"] {
  border: 1px solid #E0E0E0;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

input::placeholder {
  color: #E0E0E0;
}

input[type="text"] + input[type="text"] {
  margin-top: 10px;
}

button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  background: #3EB1B2;
  color: #FFFFFF;
  border-radius: 5px;
}

/*==============================================================================================

	header要素

==============================================================================================*/
header{
  width: 100%;
  height: 90px;
  background: #3EB1B2;
  position: absolute;
  top: 0;
  left: 0;
}

.header_container{
  height: 90px;
  display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 12px 20px;
}

header img{
  width: 177px;
}


/*==============================================================================================

	footer要素

==============================================================================================*/
footer .copy_container{
  text-align: center;
  font-size: 13px;
  padding: 80px 0 40px;
  background: #F0F0F0;

}