@charset "utf-8";

html {
  font-size: 100%;
}
body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500 700;
  font-size: 16px;
  color: #000;
}
main {
  margin-top: 120px;
}
a {
  text-decoration: none;
  transition: .5s;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
.wrapper {
  max-width: 1200px;
  margin: 80px auto 100px auto;
  font-size: 16px;
  padding:0 4%;
}
.site-ttl {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
.site-ttl a {
  display: block;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;
  background-color: #FFCC75;
}

/* kv-1 */
.kv-1 {
  width: 100%;
  height: 48vw;
  background-image: url(../img/KV-BI.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.kv-1 img {
  width: 600px;
  height: 300px;
  position: absolute;
  top: 180px;
  right: 60px;
}
.kv-1 p {
  font-size: 64px;
  font-weight: bold;
  line-height: 2;
  position: absolute;
  top: 200px;
  left: 100px;
}

/* form */
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.Form-Item {
  border-top: 1px solid #DBD8D8;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #DBD8D8;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
.Form-Item-Label .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.Form-Item-Label-Required,.Form-Item-Label-Required-any {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  
  font-size: 14px;
}
.Form-Item-Label-Required {
  background: #FFB9B9;
  color: #F20303;
}
.Form-Item-Label-Required-any {
  background: #CDCDCD;
  color: #4F4F4F;
}
.Form-Item-Input {
  border: 1px solid #DBD8D8;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #F3FAFF;
  font-size: 18px;
}
.Form-Item-Textarea {
  border: 1px solid #DBD8D8;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #F3FAFF;
  font-size: 18px;
}
.Form-Btn {
  border-radius: 15px;
  margin: 60px auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  background: #E26C17;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.complete {
	text-align: center;
  font-size: 32px;
}
/* .error {
	width: 60%;
	margin: 0 auto 30px;
}
.error li {
	color: red;
} */
.error {
  background: #ffe0e0;
  border: 1px solid #ff6b6b;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  color: #d8000c;
  font-weight: bold;
  animation: fadeIn 0.5s ease forwards;
}
.error li {
  margin-bottom: 5px;
  list-style: none;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.error-input {
  border: 2px solid red;
}
.error-message {
  margin-top: 5px;
  font-size: 0.9em;
  color: red;
}

/* footer */
.footer {
  background-color: #FFCC75;
  height: 400px;
}
.footer .footer-nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}
.footer .footer-nav-menu li {
  font-size: 20px;
  font-weight: bold;
  color: #E26C17;
}
.footer-content {
  text-align: center;
  line-height: 2;
  letter-spacing: 2px;
  padding-top: 50px;
}
.copyright {
  display: block;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 30px;
}

/* 768 */
@media screen and (max-width: 960px) {
  /* kv-1 */
  .kv-1 img {
    width: 450px;
    height: 300px;
  }
  .kv-1 p {
    font-size: 48px;
    font-weight: bold;
  }

  /* form */
  .Form-Btn {
    margin-top: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 220px;
    font-size: 18px;
  }
}

/* 375 */
@media screen and (max-width: 768px) {
  .site-ttl {
    font-size: 24px
  }

  /* kv-1 */
  .kv-1 img {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50px;
    right: 60px;
  }
  .kv-1 p {
    font-size: 24px;
    position: absolute;
    top: 90px;
    left: 60px;
  }

  /* form */
  .Form {
    margin-top: 40px;
  }
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  .Form-Item-Label-Required,.Form-Item-Label-Required-any {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }

  /* footer */
  .footer .footer-nav-menu li {
    font-size: 16px;
  }
  .footer {
    height: 430px;
  }
  .footer-content {
    padding: 30px 0;
    border-bottom: solid 1px #333;
  }
  .footer-content p {
    padding: 20px;
  }
  .copyright {
    padding-top: 40px;
  }
}
