@charset "utf-8";
.cautionsContainer {
  width: 100vw;
  height: 100dvh;
  padding: 150px 0 100px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 1111;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.cautionsContainer.active {
  opacity: 1;
  visibility: visible;
}

.cautionsCloseBtn {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 10px;
  cursor: pointer;
  color: #fff;
}

.cross {
  width: 24px;
  height: 24px;
  position: relative;
}

.cross span {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cross span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cautionsContents {
  width: 90%;
  max-width: 800px;
  margin: 10px auto 0;
  padding: 60px 60px;
  box-sizing: border-box;
  background: #fff;
}

.cautionsText:first-of-type {
  margin-bottom: 70px;
}

.cautionsText dt {
  font-size: 26px;
  line-height: 1.4;
  color: var(--titleFontColor);
  text-align: center;
  position: relative;
}

.cautionsText dt::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--titleFontColor);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.cautionsText dd {
  margin-top: 50px;
  font-size: 14px;
  color: #000;
}

#appContainer .title {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.title h2 {
  font-size: 60px;
  line-height: 1.2;
  color: var(--titleFontColor);
}

.title p {
  margin-top: 10px;
  font-size: 20px;
}

.appText {
  width: 90%;
  margin: 70px auto 0;
  text-align: center;
}

.appText p {
  font-size: 18px;
}

.formContainer {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 100px 70px;
  box-sizing: border-box;
  background: #F3F2F0;
}

.formGroup {
  margin-bottom: 40px;
}

.itemName {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  color: #000;
}

.must {
  margin-left: 5px;
  font-size: 12px;
  color: var(--titleFontColor);
}

.itemName > small {
  margin-left: 10px;
  font-weight: 500;
}

.answer {
  display: flex;
  gap: 0 16px;
}

.answer.radio {
  gap: 0 25px;
}

.answer.text label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

input[type="text"], input[type="date"],select{
  width: 100%;
  flex: 0 1 100%;
  max-width: 292px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
}

.email input[type="text"], .email_confirm input[type="text"] {
  max-width: 454px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px 10px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
}

.agree a {
  color: #000;
  text-decoration: underline;
  display: inline;
}

.agree label {
  display: block;
  color: #000;
}

.agree input {
  margin-right: 5px;
}

#btn {
  display: block;
  width: 300px;
  height: 70px;
  margin: 50px auto 0;
  font-size: 20px;
  letter-spacing: 30px;
  text-indent: 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #fff;
  font-weight: bolder;
  box-sizing: border-box;
  font-size: 20px;
  position: relative;
  background: url(../img/btn-bg.png)no-repeat center / auto 120%;
  cursor: pointer;
}

#btn:hover::after {
  right: 10px;
}

#btn::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.btnConfirm {
  display: block;
  margin-top: 50px;
  color: #000;
}

#privacypolicyText {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #E0E0E0;
}

#privacypolicyText small {
  display: block;
  line-height: 1.7;
  color: #000;
}

#privacypolicyText small a {
  color: var(--titleFontColor);
  text-decoration: underline;
  display: inline;
}
#privacypolicyText small a.ad {
  color: #202B46;
  text-decoration: none;
}

#submitResult {
  font-size: 20px;
  text-align: center;
  color: var(--titleFontColor);
  text-decoration: underline;
}

.error {
  flex: 1 1 100%;
  font-size: 1.1em;
  color: red;
}

@media (max-width: 1024px) {

.appText {
  margin: 40px auto 0;
}

.answer.text label {
  gap: 10px 16px;
}

  input[type="text"], input[type="date"], select{
    max-width:100%;
  }

}


@media (max-width: 560px) {

/* ポップアップ */
.cautionsContainer {
  /* width: 100vw;
  height: 100dvh; */
  padding: 20px 0 50px;
  /* box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s; */
}

/* .cautionsContainer.active {
  opacity: 1;
  visibility: visible;
} */

.cautionsCloseBtn {
  /* width: 90%;
  max-width: 800px;
  margin: 0 auto; */
  font-size: 18px;
  /* display: flex;
  align-items: center;
  justify-content: flex-end; */
  gap: 0 6px;
  /* cursor: pointer; */
}

.cross {
  width: 20px;
  height: 20px;
  /* position: relative; */
}

.cross span {
  width: 24px;
  /* height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

/* .cross span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
} */

.cautionsContents {
  /* width: 90%;
  max-width: 800px;
  margin: 10px auto 0; */
  padding: 30px 4%;
  /* box-sizing: border-box;
  background: #fff; */
}

.cautionsText:first-of-type {
  margin-bottom: 50px;
}

/* .cautionsText dt {
  font-size: 20px;
  line-height: 1.4;
  color: var(--titleFontColor);
  text-align: center;
  position: relative;
}

.cautionsText dt::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--titleFontColor);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.cautionsText dd {
  margin-top: 50px;
  font-size: 14px;
  color: #000;
} */

/* #appContainer .title {
  width: 90%;
  margin: 0 auto;
  text-align: center;
} */

.appText {
  /* width: 90%; */
  margin: 30px auto 0;
  /* text-align: center; */
}

.appText p {
  font-size: 15px;
}

.formContainer {
  /* width: 90%;
  max-width: 800px; */
  margin: 30px auto 0;
  padding: 30px 5%;
  /* box-sizing: border-box;
  background: #F3F2F0; */
}

.formGroup {
  margin-bottom: 30px;
}

/* .itemName {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}

.must {
  margin-left: 5px;
  font-size: 12px;
  color: var(--titleFontColor);
} */

.itemName > small {
  margin: 3px 0 0 0;
  font-weight: 500;
}

/* .answer {
  display: flex;
  gap: 0 16px;
} */

.answer.radio {
  flex-wrap: wrap;
  /* gap: 0 25px; */
}

/* .answer.text label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
} */

input[type="text"], input[type="date"] {
  /* width: 100%; */
  flex: 0 1 100%;
  max-width: none;
  /* height: 40px;
  padding: 0 12px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px; */
}

/* .email input[type="text"], .email_confirm input[type="text"] {
  max-width: 454px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px 10px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
}

.agree a {
  color: #000;
  text-decoration: underline;
}

.agree label {
  display: block;
}

.agree input {
  margin-right: 5px;
} */

#btn {
  /* display: block;
  width: 300px;
  height: 70px; */
  margin: 30px auto 0;
  /* font-size: 20px;
  letter-spacing: 30px;
  text-indent: 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: var(--titleFontColor);
  font-weight: bolder;
  border: 2px solid var(--titleFontColor);
  box-sizing: border-box;
  font-size: 20px;
  position: relative;
  cursor: pointer; */
}

/* #btn::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background: var(--titleFontColor);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
} */

.btnConfirm {
  /* display: block; */
  margin-top: 30px;
  text-align: left;
}

#privacypolicyText {
  margin-top: 50px;
  padding-top: 40px;
  /* border-top: 1px solid #E0E0E0; */
}

/* #privacypolicyText small {
  display: block;
  line-height: 1.7;
}

#privacypolicyText small a {
  color: var(--titleFontColor);
  text-decoration: underline;
}

#submitResult {
  font-size: 20px;
  text-align: center;
  color: var(--titleFontColor);
  text-decoration: underline;
}

.error {
  flex: 1 1 100%;
  font-size: 1.1em;
  color: red;
} */

}