@charset "UTF-8";
/* CSS Document */

/* container
-----------------------------------------------*/
#container {
  padding: 0 40px;
}
#contents {
  max-width: 800px;
  margin: 20px auto 0;
}
#contents > p {
  text-align: center;
  margin-bottom: 40px;
}
#contents > p a{
text-decoration: underline;
}
#contents > p span {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #container {
    padding: 0 20px;
  }
  #contents {
    margin: 40px auto 0;
  }
  #contents > p {
    text-align: left;
    margin-bottom: 30px;
  }
}


/* form
-----------------------------------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form .box .col2 {
  display: flex;
  gap: 10px;
}
form .box h2 {
  font-size: 14px;
  font-weight: normal;
}
form .box h2 span {
  font-size: 10px;
  margin-left: 5px;
}
form .box h2 + * {
  margin-top: 10px;
}
form .box p {
  font-size: 12px;
  margin-top: 5px;
}
form .box input[type="text"] {
  width: 100%;
  height: 45px;
  font-size: 14px;
  padding: 0 20px;
  border: 1px solid var(--accent-color);
  border-radius: 3px;
}
form .box input[type="text"]::placeholder {
  color: #ccc;
}
form .box .radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
form .box .radio-list input {
  display: none;
}
form .box .radio-list label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
form .box .radio-list label::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 0;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  background: transparent;
  transition: background .2s;
}
form .box .radio-list label:hover::before {
  background: #f2f2f2;
}
form .box .radio-list label::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 5px;
  left: 3px;
  opacity: 0;
  border-radius: 50%;
  background: var(--accent-color);
  transition: opacity .2s;
}
form .box input:checked + label::after {
  opacity: 1;
}
form textarea {
  width: 100%;
  height: 124px;
  resize: none;
  border-radius: 3px;
  padding: 12px 20px;
  font-size: 14px;
  border: 1px #000 solid;
  font-family: "Noto Sans JP";
}
form .btn-box {
  text-align: center;
}
form .btn-box button {
  display: block;
  max-width: 275px;
  width: 100%;
  height: 65px;
  box-shadow: 5px 5px 0 var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 500;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  margin: 0 auto;
  transition: box-shadow .2s;
}
form .btn-box button:hover {
  box-shadow: 2px 2px 0 var(--accent-color);
}
form .btn-box p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}
form .btn-box p a {
  text-decoration: underline;
}
form .btn-box p a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  form {
    gap: 20px;
  }
 form .btn-box button {
    max-width: 245px;
    height: 60px;
    font-size: 12px;
    margin-top: 20px;
  }
}


/* table
-----------------------------------------------*/
#contents table {
  width: 100%;
  border-bottom: 1px solid #333;
}
#contents table th, #contents table td {
  border-top: 1px solid #333;
  font-size: 14px;
}
#contents table th {
  font-weight: normal;
  white-space: nowrap;
  padding: 20px 20px;
}
#contents table td {
  width: 100%;
  padding: 20px 20px;
}
.confirmation .btn-box {
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  #contents table th {
    padding: 15px 10px;
  }
  #contents table td {
    width: 100%;
    padding: 15px 10px;
  }
  .confirmation .btn-box {
    margin-top: 0;
  }
}