@charset "UTF-8";
.page__fv {
  background: #FDF1EA;
  padding: 200px 40px 80px;
  position: relative;
  overflow: hidden;
  /* アニメーション */
}
@media screen and (max-width: 768px) {
  .page__fv {
    padding: 53.3333333333vw 4vw 16vw;
  }
}
.page__fv--inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page__fv--title {
  color: #F08F56;
  font-weight: bold;
  font-size: 64px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page__fv--title {
    font-size: 12.8vw;
  }
}
.page__fv--subTitle {
  color: #F08F56;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page__fv--subTitle {
    font-size: 5.3333333333vw;
  }
}
.page__fv--text {
  line-height: 1.7;
  color: #F08F56;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page__fv--text {
    font-size: 4.2666666667vw;
  }
}
.page__fv .page__fv--en {
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.page__fv .page__fv--en--inner {
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  animation: scrollX 40s linear infinite;
}
.page__fv .page__fv--en--inner p {
  display: inline-block;
  margin-right: 70px;
  /* 画像の間隔を調整 */
}
.page__fv .page__fv--en--inner img {
  width: 905px;
  /* サイズはお好みで */
  height: auto;
}
@media screen and (max-width: 768px) {
  .page__fv .page__fv--en--inner img {
    width: 600px;
  }
}
@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.entry {
  padding: 100px 40px;
  background: #fff;
  position: relative;
  z-index: 2;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .entry {
    padding: 26.6666666667vw 4vw;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
}
.entry__inner {
  max-width: 800px;
  margin: 0 auto;
}
.entry__form--item {
  margin-bottom: 35px;
}
.entry__form--item .title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .entry__form--item .title {
    margin-bottom: 10px;
  }
}
.entry__form--item .title p {
  font-size: 16px;
  font-weight: bold;
  color: #5F5F5F;
}
.entry__form--item .title .require {
  background: #DD000F;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding: 5px;
  display: inline-block;
  margin-right: 10px;
}
.entry__form--item .title .norequire {
  background: #B5B5B5;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding: 5px;
  display: inline-block;
  margin-right: 10px;
}
.entry__form--item .content {
  font-size: 16px;
  font-weight: bold;
  color: #5F5F5F;
}
.entry__form--item .content.flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.entry__form--item .content.flex .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .entry__form--item .content.flex .wpcf7-radio {
    margin-top: 20px;
    gap: 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .entry__form--item .content.flex {
    gap: 20px 30px;
  }
}
.entry__form--item .content label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.entry__form--item .content label input {
  margin: 0;
}
.entry__form--item .content input[type=text],
.entry__form--item .content input[type=email],
.entry__form--item .content input[type=tel] {
  width: 100%;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  height: 55px;
  box-sizing: border-box;
  padding: 10px;
}
.entry__form--item .content textarea {
  width: 100%;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px;
  height: 250px;
}
.entry__form--item .content input.w100 {
  width: 100px;
}
.entry__form--privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .entry__form--privacy {
    margin: 40px auto;
  }
}
.entry__form--privacy label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5F5F5F;
  font-weight: bold;
}
.entry__form--privacy label a {
  color: #5F5F5F;
  text-decoration: underline;
}
.entry__form--submit {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .entry__form--submit {
    margin-top: 40px;
  }
}
.entry__form--submit input {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  background: #00A63C;
  border-radius: 50px;
  padding: 20px 55px;
  cursor: pointer;
  border: none;
}
.entry__form--submit.flex p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.entry__form--submit.flex input {
  margin: 0;
}
.entry__form.confirm .entry__form--item {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .entry__form.confirm .entry__form--item {
    display: block;
  }
}
.entry__form.confirm .entry__form--item .title {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .entry__form.confirm .entry__form--item .title {
    width: 100%;
  }
}
.entry__form.confirm .entry__form--item .content {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .entry__form.confirm .entry__form--item .content {
    width: 100%;
  }
}
.entry__form.confirm .entry__form--privacy {
  display: none;
}
.entry__tel {
  margin-top: 100px;
  background: #FDF1EA;
  border: 3px solid #F08F56;
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
  background-image: url(../img/culture-logo.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 45%;
}
@media screen and (max-width: 768px) {
  .entry__tel {
    margin-top: 60px;
    padding: 50px 25px;
    background-size: 100%;
    border-radius: 15px;
  }
}
.entry__tel--title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #5F5F5F;
}
@media screen and (max-width: 768px) {
  .entry__tel--title {
    font-size: 5.6vw;
  }
}
.entry__tel--number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F08F56;
}
@media screen and (max-width: 768px) {
  .entry__tel--number {
    font-size: 8vw;
  }
}
.entry__tel .time {
  font-size: 16px;
  font-weight: bold;
  color: #5F5F5F;
}
@media screen and (max-width: 768px) {
  .entry__tel .time {
    font-size: 4.2666666667vw;
  }
}
.entry__text {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
  font-weight: bold;
  font-size: 16px;
  color: #F08F56;
}

.thanks {
  padding: 250px 40px 150px;
  background: #FDF1EA;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding: 48vw 4vw 40vw;
  }
}
.thanks__inner {
  max-width: 800px;
  margin: 0 auto;
}
.thanks__title {
  text-align: center;
  color: #F08F56;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .thanks__title {
    font-size: 6.4vw;
  }
}
.thanks__title::after {
  content: "";
  width: 108px;
  display: block;
  margin: 50px auto;
  background: #F08F56;
  height: 3px;
}
.thanks__text {
  max-width: 444px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #5F5F5F;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 4.2666666667vw;
  }
}
.thanks .topBtn {
  margin-top: 50px;
}

.wpcf7-spinner {
  display: none !important;
}/*# sourceMappingURL=page.css.map */

.privacyCheck .wpcf7-list-item-label {
	display:none !important;
}