@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 span {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #container {
    padding: 0 20px;
  }
  #contents > p {
    text-align: left;
    margin-bottom: 30px;
  }
}


/* form
-----------------------------------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form .wide {
  margin: 20px 0;
}
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;
}
/* 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);
}
.complete .btn-box {
  margin-top: 20px;
}
.complete .btn-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  height: 65px;
  box-shadow: 5px 5px 0 var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  margin: 0 auto;
  transition: box-shadow .2s;
  text-align: center;
}
.complete .btn-box a: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;
}
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";
}
@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;
  }
  .complete .btn-box a {
    max-width: 245px;
    height: 60px;
    font-size: 14px;
  }
}


/* modal
-----------------------------------------------*/
#over.cover {
  position: relative;
  padding-bottom: 150px;
  margin-bottom: -150px;
}
.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(250, 250, 250, .95) 0%, rgba(250, 250, 250, .95) 100%);
  padding: 140px 0 150px 0;
  overflow: scroll;
}
.modal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.modal > p {
  text-align: center;
  width: 100%;
}
.member {
  padding: 40px 60px;
  margin-top: 60px;
  text-align: center;
}
.member .img {
  margin-top: 30px;
}
.member .img img {
  max-width: 266px;
  margin: 0 auto;
}
.member > p {
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}
.member h3 {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
}
.member .box p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  margin-top: 10px;
}
.member .box {
  margin-top: 10px;
}
.member .box h2 {
  font-size: 46px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 100;
  border-bottom: 1px solid #000;
  height: 50px;
  display: inline-block;
  padding: 0 60px;
  margin-top: 60px;
}
.member .box h3 {
  margin: 10px 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.member .box h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
}
.member .box p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
.member .box .note {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}
.member .box .note a {
  text-decoration: underline;
}
.member .box ul {
  margin-top: 40px;
  padding: 40px;
  background-color: #EDEDED;
}
.member .box li {
  margin-top: 40px;
}
.member .box li p {
  margin-top: 0;
}
.member .box li p a {
  text-decoration: underline;
}
.member .box li:first-child {
  margin-top: 0;
}
.member .method p strong {
  text-align: center
}
.member .btn {
  text-align: center;
  display: flex;
}
.member .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  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;
  text-align: center;
}
.member .btn a:hover {
  box-shadow: 2px 2px 0 var(--accent-color);
}
@media only screen and (max-width:767px) {
  #over.cover {
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
  .modal {
    padding: 60px 0 50px 0;
  }
  .member {
    padding: 60px 20px;
    margin-top: 0;
  }
  .member .img img {
    width: 100%;
  }
  .member .box {
    margin-top: 30px;
  }
  .member .box ul {
    padding: 40px 20px;
  }
  .member .btn {
    margin-top: 60px;
  }
  .member .box h2 {
    display: block;
    padding: 0 20px;
  }
  .member .btn a {
    font-size: 16px;
    height: 60px;
  }
}


/* 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;
  }
}