@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #140a04;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.common_content_area {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.header_image nav {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 10%;
}

.header_image a {
    padding: 10px 0;
    transition: 0.3s;
}

.header_image a:hover {
    border-bottom: 2px solid #05b084;
  color: #05b084;
}

.header_image{
    width: 100%;
}

main{
    width: 70%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

dt{
    margin-top: 30px;
}

dd{
    margin-left: 1em;
}

.text_name{
  width: 88%;
}

.text{
  width: 100%;
}

.check_button_container{
    text-align: center;
    margin-top: 30px;
}

.check_button{
    border: 1px solid #05b084;
  border-radius: 10px;
  background-color: #05b084;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 5px 10px;
  transition: 0.3s;
}

.check_button:hover{
    background-color: #3c8775;
}

.footer_copyright{
    margin-top: 50px;
    text-align: center;
    background-color: #f5efe9;
  }

  .wrapper{
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
  }

  .footer_copyright_reply{
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* レスポンシブ */
@media screen and (max-width: 500px) {
    body {
      line-height: 1.5;
    }

    .header_image nav{
      margin-left: 0%;
      text-align: center;
    }
    
      .header_image a{
        font-size: 14px;
      }

    main{
        width: 85%;
    }

    .footer_copyright{
        font-size: 12px;
        margin-top: 30px;
      }
    }