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


/* container
-----------------------------------------------*/
#container {
  padding: 0 40px;
}
#contents {
  max-width: 800px;
  margin: 60px auto 0;
}
@media only screen and (max-width: 767px) {
  #container {
    padding: 0 20px;
  }
}


/* form
-----------------------------------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
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 #mail {
  font-size: 12px;
  margin-top: 5px;
  padding: 0;
  height: auto;
  border: none;
  line-height: 1.5;
}
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;
}
/* select */
form .box .select-list.col3 {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
form .box select {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border-radius: 3px;
  font-size: 14px;
  border: 1px solid var(--accent-color);
  background: transparent;
  cursor: pointer;
  color: var(--accent-color);
}
form .box .select-wrap {
  position: relative;
}
form .box .select-wrap::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  transform: rotate(45deg);
}
/* radio */
 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;
}
/* checkbox */
form .box .checkbox-list.col3 {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
form .box .checkbox-list input {
  display: none;
}
form .box .checkbox-list label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
form .box .checkbox-list label::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 0;
  border: 1px solid var(--accent-color);
	border-radius: 3px;
  background: transparent;
  transition: background .2s;
}
form .box .checkbox-list label:hover::before {
  background: #f2f2f2;
}
form .box .checkbox-list label::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
  border-radius: 3px;
  background: var(--accent-color);
  transition: opacity .2s;
}
form .box .checkbox-list input:checked + label::after {
  opacity: 1;
}
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: 30px;
  }
  /* checkbox */
  form .box .checkbox-list.col3 {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  form .btn-box button {
    max-width: 245px;
    height: 60px;
    font-size: 14px;
  }
}