/*
Theme Name: New Thema
Description: 女性タレント求人LP
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
}
.lp {
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.lp img {
  width: 100%;
  height: auto;
  display: block;
}

/* FV */
.fv-wrap {
  position: relative;
}
.fv-wrap a {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 87.1%;
}
.fv-line {
  width: 100% !important;
}

/* img5 */
.img5-wrap {
  position: relative;
}
.img5-wrap a:nth-child(2) {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 87.1%;
}
.img5-line {
  width: 100% !important;
}
.img5-wrap a:nth-child(3) {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 68%;
}
.img5-btn {
  width: 100% !important;
}

/* 募集要項 */
.recruit-heading {
  background: #656565;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-heading p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.recruit-table {
  background: #fff9fa;
  padding: 30px 20px;
}
.recruit-table dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruit-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recruit-row dt {
  font-family: 'Yusei Magic', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #f96b8a;
}
.recruit-row dd {
  font-family: 'Yusei Magic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #170f15;
}

/* お問い合わせフォーム */
.contact-form {
  background: #f96b8a;
  padding: 30px 20px;
}
.contact-form .wpcf7-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-group label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
.form-group input {
  width: 100%;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  outline: none;
}
.form-group textarea {
  width: 100%;
  height: 129px;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 15px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.form-group .wpcf7-form-control-wrap {
  display: block;
}
.submit-btn-wrap {
  text-align: center;
}
.submit-btn-wrap input[type="submit"] {
  width: 265px;
  height: 47px;
  background: #ff4070;
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: 0px 4px 0px 0px #ff4d97;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.submit-btn-wrap input[type="submit"]:hover {
  opacity: 0.9;
}

/* CF7 デフォルトスタイル上書き */
.wpcf7-form p {
  display: contents;
}
.wpcf7 .wpcf7-response-output {
  color: #fff;
  border-color: #fff;
}
.wpcf7-not-valid-tip {
  color: #fff;
  font-size: 12px;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 固定ボタン */
.fixed-line {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  padding: 0 6.45%;
  z-index: 100;
}
.fixed-line img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグ ホバー */
.lp a,
.fixed-line a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.lp a:hover,
.fixed-line a:hover {
  animation: punipuni 0.6s ease;
}
@keyframes punipuni {
  0%   { transform: scale(1); }
  25%  { transform: scale(0.92); }
  50%  { transform: scale(1.05); }
  75%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
