{% extends 'default_frame.twig' %}
{% block main %}
<div id="iframe-container" style="width: 100%; overflow: hidden;">
<iframe
id="opinion-frame"
src="https://docs.google.com/forms/d/e/1FAIpQLScIpwCFxDrZp37mo1tiYjX9rSsA664qTRKUQIcLTuigZn3ctg/viewform?embedded=true"
style="width: 100%; border: none;"
loading="lazy"
allowfullscreen
marginwidth="0">読み込んでいます…</iframe>
</div>
<style>
body {
padding-top:150px;
}
</style>
<script>
function resizeIframe() {
const header = document.querySelector('#site_header'); // ←ヘッダー要素のID
const footer = document.querySelector('#site_footer'); // ←もしあれば
const headerHeight = header ? header.offsetHeight : 0;
const footerHeight = footer ? footer.offsetHeight : 0;
const availableHeight = window.innerHeight - headerHeight - footerHeight;
document.getElementById('opinion-frame').style.height = availableHeight + 'px';
}
window.addEventListener('load', resizeIframe);
window.addEventListener('resize', resizeIframe);
</script>
{% endblock %}