.casual-meeting-lp {
  min-height: 100vh;
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /*&__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba($black, 0.7), rgba($black, 0.5), transparent);
  }*/
}
@media (min-width: 1024px) {
  .hero-section {
    height: 65vh;
  }
}
.hero-section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .hero-section__image {
    object-position: left;
  }
}
.hero-section__content {
  position: relative;
  z-index: 10;
  max-width: 1536px;
  margin: 0 auto 48px;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-section__content {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-section__content {
    padding: 0 3rem;
  }
}
.hero-section__text-wrapper {
  max-width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-section__text-wrapper {
    max-width: 42rem;
    margin: 0 0 0 auto;
    text-align: right;
  }
}
.hero-section__title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.51);
  letter-spacing: 0.15rem;
  margin-right: -1em;
}
@media (min-width: 768px) {
  .hero-section__title {
    text-align: right;
    font-size: 2rem;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .hero-section__title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section__title-accent {
  color: #0ea5e9;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-right: 8px;
  text-shadow: none;
}
.hero-section__title-accent::before {
  content: "";
  background: #fff;
  width: calc(100% + 8px);
  display: block;
  height: 1.1em;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: -4px;
}
.hero-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0ea5e9;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}
.hero-section__cta:hover {
  background-color: #0284c7;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .hero-section__cta {
    font-size: 1.25rem;
  }
}
.hero-section__cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(90deg);
}

.about-section {
  padding: 6rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image: url("../images/bg1.png"), url("../images/bg2.png");
  background-position: -10% 180%, 110% -20%;
  background-size: 42%, 500px auto;
  background-repeat: no-repeat, no-repeat;
}
.about-section__decoration {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(96px);
}
.about-section__decoration--top {
  top: 0;
  right: 0;
  background-color: rgba(14, 165, 233, 0.05);
}
.about-section__decoration--bottom {
  bottom: 0;
  left: 0;
  background-color: rgba(59, 130, 246, 0.05);
}
.about-section__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .about-section__container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .about-section__container {
    padding: 0 3rem;
  }
}
.about-section__content {
  text-align: center;
}
.about-section__intro {
  color: #374151;
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.about-section__questions {
  padding: 2rem 0;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.about-section__question {
  display: inline-block;
  color: #1f2937;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(transparent 50%, #cdefff 50%);
}
.about-section__question:last-child {
  margin-bottom: 0;
}
.about-section__message {
  padding-top: 1rem;
}
.about-section__message-text {
  color: #374151;
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.about-section__message-emphasis {
  color: #374151;
  line-height: 1.75;
  font-size: 1.125rem;
}

.conditions-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}
.conditions-section__container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) {
  .conditions-section__container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .conditions-section__container {
    padding: 0 3rem;
  }
}
.conditions-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.conditions-section__subtitle {
  color: #9ca3af;
  font-style: italic;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.conditions-section__title {
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
}
.conditions-section__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .conditions-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.condition-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.condition-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.condition-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0ea5e9;
}
.condition-card__title {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  text-align: center;
}
.condition-card__description {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.75;
}

.time-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.time-section__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) {
  .time-section__container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .time-section__container {
    padding: 0 3rem;
  }
}
.time-section__title {
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-align: center;
  margin-bottom: 3rem;
}
.time-section__card-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}
.time-section__card {
  background: linear-gradient(to bottom right, #0ea5e9, #0284c7);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.time-section__icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.time-section__icon {
  /*width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background-color: rgba($white, 0.2);*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*
  svg {
      width: 2.5rem;
      height: 2.5rem;
  }*/
}
.time-section__icon img {
  width: 180px;
  height: auto;
}
.time-section__duration {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.time-section__note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.form-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #00bcd4, #0ea5e9, #3b82f6);
  position: relative;
  overflow: hidden;
}
.form-section__container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) {
  .form-section__container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .form-section__container {
    padding: 0 3rem;
  }
}
.form-section__header {
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}
.form-section__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}
.form-section__subtitle {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
.form-section__form-wrapper {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 640px) {
  .form-section__form-wrapper {
    padding: 3rem;
  }
}
.form-section__form-title {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field__label {
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
}
.form-field__required {
  color: #00bcd4;
  margin-left: 0.25rem;
}
.form-field__input, .form-field__select {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  height: 3rem;
  padding: 0 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  width: calc(100% - 2rem);
}
.form-field__input:focus, .form-field__select:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}
.form-field__input.error, .form-field__select.error {
  border-color: #ef4444;
}
.form-field__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.b_link input[type=submit] {
  padding: 10px 40px !important;
}

.casual-form__privacy {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #fff;
}

.modal__block {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transition: all 1s ease-in-out;
}
.modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.modal__content {
  position: relative;
  overflow-y: auto;
  width: 95%;
  max-width: 740px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  animation: show 0.6s linear 0s;
}
@media (min-width: 1024px) {
  .modal__content {
    padding: 54px;
  }
}
.modal__content .title {
  text-align: center;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .modal__content .text {
    text-align: center;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal .show {
  display: block;
}
.modal__header + .modal__body {
  margin-top: 24px;
}
.modal--close {
  cursor: pointer;
  color: #6b7280;
  font-size: 1.25rem;
  position: absolute;
  top: 13px;
  right: 20px;
}

@media (max-width: 640px) {
  .about-section__intro,
  .about-section__question,
  .about-section__message-text,
  .about-section__message-emphasis {
    font-size: 1rem;
  }
  .conditions-section__title,
  .time-section__title,
  .form-section__title {
    font-size: 1.5rem;
  }
  .form-section__form-title {
    font-size: 1.25rem;
  }
}
.casual-meeting-bnr {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}
@media (min-width: 640px) {
  .casual-meeting-bnr {
    max-width: 560px;
  }
}
.casual-meeting-bnr__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  border: 2px #3b82f6 solid;
  border-radius: 100px;
  transition: 0.3s;
  text-decoration: none;
  padding: 10px 8% 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .casual-meeting-bnr__btn {
    padding: 10px 5% 0;
    gap: 2%;
  }
}
.casual-meeting-bnr__btn:hover {
  background: #fff;
  opacity: 1;
}
.casual-meeting-bnr__btn:hover img {
  opacity: 1;
}
.casual-meeting-bnr__btn:hover .casual-meeting-bnr__title {
  color: #3b82f6;
  opacity: 1;
}
.casual-meeting-bnr__btn img {
  width: 80px;
  height: auto;
}
@media (min-width: 768px) {
  .casual-meeting-bnr__btn img {
    width: 150px;
  }
}
.casual-meeting-bnr__title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .casual-meeting-bnr__title {
    font-size: 20px;
  }
}

.u-hidden--pc {
  display: block;
}
@media (min-width: 768px) {
  .u-hidden--pc {
    display: none;
  }
}