/* ============================================
   お問い合わせ
============================================ */
.contact-page_intro {
  padding: 0 0 0 0;
}

.contact-page_intro__text {
  font-size: 15px;
  line-height: 2;
}

.contact-page_form {
  /* padding: 60px 0; */
}

.contact-page_form__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page_form__inner .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-page_form__inner input[type="text"],
.contact-page_form__inner input[type="email"],
.contact-page_form__inner input[type="tel"],
.contact-page_form__inner textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-page_form__inner input[type="text"]:focus,
.contact-page_form__inner input[type="email"]:focus,
.contact-page_form__inner input[type="tel"]:focus,
.contact-page_form__inner textarea:focus {
  border-color: #333;
}

.contact-page_form__inner textarea {
  height: 200px;
  resize: vertical;
}

.contact-page_form__inner input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 8px auto 0;
  padding: 16px 40px;
  background: #333;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-page_form__inner input[type="submit"]:hover {
  opacity: 0.7;
}

.entry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    width: 100%;
}
.entry-form__row {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.entry-form__input{
    width: calc(100% - 240px);
}

.entry-form__input span input,
.entry-form__input span textarea{
    width: 100%;
    display: block;
    padding: 14px 18px;
    background: #F4F4F4;
    border-radius: 10px;
}
.entry-form__label p{
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    width: 200px;
    align-items: center;
}

.entry-form__label span{
    line-height: 14px;
    font-size: 10px;
    background-color: #000;
    letter-spacing: .1em;
    color: #fff;
    font-weight: 700;
    display: flex;
    padding: 4px 10px;
    border-radius: 5px;
    justify-content: space-between;
}
span.tag.tag--optional {
    background: #ccc;
}
.entry-form__input.has-note {
    display: flex;
    align-items: center;
    gap: 20px;
}

span.note {
    font-size: 12px;
}

.entry-form__consent {
    text-align: center;
}
.entry-form__consent p{
	line-height:1.5;
}

.entry-form__consent span.wpcf7-list-item {
    margin: auto;
}

.entry-form__consent a{
	text-decoration:underline;
}

.entry-form__submit {
    position: relative;
    text-align: center;
}

/* 送信ボタン本体 */
.entry-form__submit input.wpcf7-submit {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    max-width: 318px; /* デザインに合わせて調整してください */
    height: 70px;
    background:  #000;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.2em; /* タイポグラフィの20%に相当 */
    border: none;
    border-radius: 20px; /* 高さの半分で完全な角丸 */
    cursor: pointer;
    transition: opacity 0.3s;
    padding: 0 60px; /* 矢印のスペースを確保 */
    position: relative;
    display: inline-block;
}
@media screen and (max-width: 768px) {
.entry-form__submit input.wpcf7-submit {
	height:52px;
    font-size: 14px;

	}
}

.entry-form__submit input.wpcf7-submit:hover {
    opacity: 0.8;
}

/* 矢印の「>」部分 */
.entry-form__submit::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px; /* 円の中に収まるように調整 */
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 2;
    background-image: url(../img/lp202603/arrows.webp);
    background-size: contain;
}

@media screen and (max-width: 1024px) {
    .entry-form__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .entry-form__input {
        width: 100%;
    }
    .entry-form__label {
        margin-bottom: 8px;
    }
    .entry-form__label p {
        justify-content: flex-start;
        gap: 12px;
    }
}

/* 画面幅が狭い時のレスポンシブ調整 */
@media screen and (max-width: 480px) {
    .entry-form__submit::after,
    .entry-form__submit::before {
        right: 25px; /* スマホ時は右端に固定 */
    }
}


.entry-form__submit {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
}

