@charset "utf-8";

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

body {
  font-family: 'Oswald', sans-serif;
  position: relative;
  width: 100%;
  height: auto;
  background: rgb(10,84,16);
  background: radial-gradient(circle, rgba(10,84,16,1) 0%, rgba(217,113,45,0.639093137254902) 0%, rgba(231,95,6,0.639093137254902) 42%),url(../img/back-image.jpg); 
  background-position: center; 
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
}

.main {
  width: 100%;
}


/* メニューボタン */
.menu li {
  padding: 5px 0;
  line-height: 48px;
  color: #f4f5f7;
} 

.menu li a {
  text-align: left;
  font-size: 18px;
  font-weight: bold; 
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  background-color: #000000c5;
  padding: 3px 10px;
  line-height: 60px;
  text-decoration: none;
  width: 120px;
  border-radius: 2%;
  margin: 2px 0;
  transition: 0.5s;
}

.menu li a:hover {
  transform: translate(20px, 0);
  background-color: #09776852;
}

.menu ul {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 200;
}


/* タイトル */
.title {
  margin: 0 auto;
  color: #f4f5f7;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  padding-bottom: 80px;
  margin-top: 200px;
}

.title::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: #f4f5f7;
  margin-top: 20px;
  margin: 0 auto;
}


/* フォームエリア */
.form-area {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  height: 900px;
  margin: 0 auto;
  padding: 50px 90px 50px 90px;
  background-color: #f4f5f7;
  box-shadow: 5px 5px 10px #000000c5;
  border-radius: 5%;
}


/* フォームの入力 */
.form-area dt {
  width: 220px;
  padding: 20px;
  font-weight: bold;
  line-height: 30px;
  font-family: 'Klee One', cursive;
}

.form-area dd {
  width: calc(100% - 220px);
  padding: 15px 0;
}

.form-area dt .required::after {
  content: '必須';
  font-size: 11px;
  font-family: 'Klee One', cursive;
  color: rgb(238, 44, 44);
  margin-left: 15px;
}

.input-text {
  width: 60%;
  min-width: 280px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.radio-button {
  display: block;
  margin-top: 20px;
  font-family: 'Klee One', cursive;
  font-size: 15px;
}

.radio-button:nth-child(1) {
  margin-top: 0;
}

.radio-button input {
  margin-right: 8px;
}

.message {
  width: 100%;
  height: 260px;
  padding: 10px;
  line-height: 1.5;
}

.confirm-text {
  width: 100%;
  height: 20px;
  text-align: center;
  font-size: 30px;
  font-family: 'Klee One', cursive;
  line-height: 50px;
  margin-top: 30px;
  color: #f4f5f7;
}

.submit-button {
  display: inline-block;
  min-width: 100px;
  line-height: 100px;
  border-radius: 100px;
  font-size: 20px;
  border: none;
  text-align: center;
  background-color: #09776852;
  color: #f4f5f7;
  margin-top: 30px;
  box-shadow: 5px 5px 10px #000000c5;
  cursor: pointer;
}

.submit-button-area {
  width: 100%;
  height: 50px;
  margin-top: 50px;
  text-align: center;
}

.submit-button:hover {
  /* background-color: rgb(204, 231, 227); */
  background-color: #f4f5f76b;
}




/* ★レスポンシブここから★ */
@media (max-width: 800px) {
.main {
  margin-top: 200px;
}


/* メニューボタン */
.menu li {
  padding: 2px 0;
  line-height: 10px;
}

.menu li a {
  padding: 3px 5px;
  line-height: 22px;
  width: 70px;
  font-size: 14px;
}

.menu ul {
  position: fixed;
  top: 25vh;
  right: 0;
  z-index: 200;  
} 

/* フォームエリア */
.form-area {
  width: 90%;
  height: 900px;
  margin: 0 auto;
  padding: 50px 30px 50px 30px;
  box-shadow: 5px 5px 10px #000000c5;
  border-radius: 10px;
}


/* タイトル */
.title {
  width: 100%;
  text-align: center;
  margin-top: 0;
  font-size: 15px;
}
  
.title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  margin-top: 10px;
  margin: 0 auto;
}


/* フォームの入力 */
.input-text {
  width: 85%;
  min-width: 200px;
  height: 40px;
  padding-left: 0;
  padding-right: 0;
}

.form-area dt {
  width: 190px;
  padding: 5px;
  font-weight: bold;
  line-height: 20px;
}

.form-area dd {
  width: calc(100% - 20px);
  padding: 15px 0;
}

.confirm-text {
  width: 100%;
  height: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 30px;
  margin-top: 30px;
}
}