{% extends 'pages/base.html.twig' %}
{% block title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
{% block meta_og_title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
{% block meta_twitter_title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
{% block meta_description %}株式会社平塚富士キッチン採用サイトのお問い合わせフォームです。ご不明な点等ございましたら、必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
{% block meta_og_description %}株式会社平塚富士キッチン採用サイトのお問い合わせフォームです。ご不明な点等ございましたら、必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
{% block body %}
<main>
{#<div class="breadcrumb">
<a class="breadcrumb-item" href="{{ path('top') }}">
TOP
</a>
<a class="breadcrumb-item" href="{{ path('contact_index')}}">
お問い合わせ
</a>
</div>#}
{% if not retry %}
{% include "layout/_aside.html.twig" %}
{# ページコンテンツここに #}
<div class="c-contact_content">
<div class="c-contact_main-title">
{% include "components/common/_main-title.html.twig" with {
title: 'お問い合わせ',
text: '-CONTACT-',
class: 'c-main-title',
}%}
</div>
<p class="c-contact_intro-text">
下記フォームに必要事項をご記入の上、お進みください。
</p>
{% else %}
{{ form_errors(form) }}
{% endif %}
{{ form_start(form, {
action: path('contact_confirm')
}) }}
{% include "components/form/_common_field.html.twig" %}
{% include "components/form/_agreement.html.twig" %}
{% include "components/_google_recaptcha.html.twig" %}
<div class="c-contact_button-area">
<div class="c-contact-reverse_button">
{% include "components/common/_button.html.twig" with {
text: 'TOPへ戻る',
src: 'build/images/common/double_arrow_white.svg',
href: path('top'),
width: '12',
height: '10',
class: 'c-white-border-rev_button',
}%}
</div>
<button class="c-contact-submit_button" type="submit">
{% include "components/common/_button.html.twig" with {
text: '入力内容を確認する',
src: 'build/images/common/double_arrow_black.svg',
width: '12',
height: '10',
class: 'c-white_button',
}%}
</button>
</div>
{{ form_end(form) }}
</div>
</main>
{% endblock %}