body {
  background: #fff;
  font-family: 'メイリオ','ヒラギノ角ゴ ProN',sans-serif;
  font-size: 18px;
}

.logo{
  width: 200px;
  margin: 40px auto;
}

h1{
  text-align: center;
  font-size: 1.5rem;
  margin-top: 5rem;
}

h2{
  text-align: center;
  margin: 4rem auto;
}

.thanks{
  text-align: center;
}

form {
  padding: 20px;
  max-width: 600px;
  margin: auto;
  box-sizing: border-box;
}

label {
  display: block;
  margin-top: 15px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  margin-top: 5px;
  box-sizing: border-box;
  background: #FDF5F3;
  border: 1px solid #ddd;
  border-radius: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: 2px solid #0060df;
  border-radius: 10px;
}

.hissu {
  color: red;
  font-size: 0.8rem;
  position: relative;
  top: -2px;
  margin-left: 0.2em;
}

a {
  text-decoration: none;
  color: #0060df;
}

a:hover{
  opacity: 0.7;
}

.submit-btn {
  margin-top: 2rem;
  padding: 12px;
  width: 100%;
  font-size: 18px;
  background: #0060df;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.submit-btn:hover{
  opacity: 0.7;
}

.white {
  background-color: white;
  color: #aaa;
  border: 1px solid #aaa;
}

.white:hover{
  background-color: #eee;
}

.checkbox {
  margin-top: 2rem;
  text-align: center;
}

.confirm-wrap {
  padding: 20px;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
  box-sizing: border-box;
}

.confirm-item {
  display: flex;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  word-break: break-word;
}

.confirm-label {
  font-weight: bold;
  margin-right: 1rem;
  white-space: nowrap;
}

.confirm-value {
  flex: 1;
}

.btn-wrap {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
}

.btn-wrap .submit-btn {
  flex: 1;
}

.back-btn {
  margin-top: 2rem;
  padding: 12px 24px;
  font-size: 18px;
  background: #aaa;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.back-btn:hover {
  background: #888;
}

.privacy {
  padding: 2rem;
  border: 1px solid #aaa;
  border-radius: 0.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.privacy-h {
  text-align: center;
  padding-bottom: 2rem;
}

.indent-text1,
.indent-text2 {
  text-indent: -5em;
  padding-left: 5em;
}

.indent-text2 {
  padding-bottom: 2rem;
}

.indent-text1::before {
  content: "事業者名：";
}

.indent-text2::before {
  content: "利用目的：";
}


@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .confirm-item {
    flex-direction: column;
  }
  
  .confirm-label {
    margin-bottom: 0.5rem;
  }
  
  .btn-wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }
  
  .btn-wrap .submit-btn {
    width: 100%;
    margin-top: 0;
  }  
}
