/* リセットCSS */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
address {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: rgba(0, 0, 0, 0)
}

body {
	line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
address {
	display: block
}

nav ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: ""
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: rgba(0, 0, 0, 0)
}

del {
	text-decoration: line-through
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

hr {
	display: block;
	border: 0;
	margin: 0;
	padding: 0
}

input,
select {
	vertical-align: middle
}

img {
	vertical-align: bottom
}

input[type=submit],
input[type=button] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none
}

input[type=submit]::focus,
input[type=button]::focus {
	outline-offset: -2px
}

article h1,
aside h1,
nav h1,
section h1 {
  font-size: 2em;
}

html {
	height: 100%;
	font-size: 62.5%
}

/* ボディ */
.body {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	color: #222;
	background-color: #FFFDF7;
	background-image: url(../img/background.png);
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
}

.is-sp {
	display: none;
}

@media (max-width: 768px) {
	.is-sp {
		display: block;
	}
}

.is-pc {
	display: block;
}

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

/* ヘッダー */
.header {
	box-sizing: border-box;
}

.header__container {
	padding: 0 20px;
	background-color: #ffffff;
	border: 2px solid #1E5CD1;
	border-radius: 16px;
	box-shadow: 6px 6px 0 0 #1E5CD1;
	width: 95%;
	max-width: 1000px;
	position: fixed;
	z-index: 1000;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
}

.header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	position: relative;
}

@media (max-width: 768px) {
	.header__content {
		padding: 12px 0;
	}
}

.header__text {
	flex: 1;
}

.header__title a {
	color: #1E5CD1;
	font-size: 2rem;
	font-weight: bold;
	margin: 0;
	text-decoration: none;
}

@media (max-width: 768px) {
	.header__title a {
		font-size: 1.6rem;
	}
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__button {
	background: #E45825;
	color: white;
	text-align: center;
	text-decoration: none;
	border: none;
	padding: 8px 60px;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header__button::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.header__button:hover {
	transform: scale(1.04);
}

.header__button-text {
	margin: 0;
}

.header__button-arrow {
	font-size: 1.6rem;
	font-weight: bold;
}

.header__menu-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.header__menu {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px;
}

.header__menu-line {
	width: 24px;
	height: 2px;
	background-color: #0066cc;
	border-radius: 1px;
}

.header__menu-label {
	font-size: 1.2rem;
	color: #1E5CD1;
	font-weight: bold;
	margin: 0;
	text-align: center;
}

.header__dropdown {
	position: absolute;
	top: 210%;
	right: 0;
	background: white;
	border: 2px solid #0066cc;
	border-radius: 8px;
	box-shadow: 8px 8px 0 0 #1E5CD1;
	min-width: 250px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.header__dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__menu-item {
	border-bottom: 1px solid #e0e0e0;
}

.header__menu-item:last-child {
	border-bottom: none;
}

.header__menu-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
	.header {
		margin: 10px;
	}

	.header__divider {
		display: none;
	}
	
	.header__title {
		font-size: 1.6rem;
	}
	
	.header__button {
		display: none;
	}
	
	.header__actions {
		gap: 15px;
	}
	
	.header__menu-label {
		font-size: 1rem;
	}
}



.mainvisual {
	padding: 0 20px;
	background: linear-gradient(
		to bottom,
		#00000000 0%,
		#00000000 24%,
		#55BF8D30 24%,
		#55BF8D30 32%,
		#00000000 32%,
		#00000000 36%,
		#55BF8D30 36%,
		#55BF8D30 44%,
		#00000000 44%,
		#00000000 48%,
		#55BF8D30 48%,
		#55BF8D30 56%,
		#00000000 56%,
		#00000000 60%,
		#55BF8D30 60%,
		#55BF8D30 68%,
		#00000000 68%,
		#00000000 72%,
		#55BF8D30 72%,
		#55BF8D30 80%,
		#00000000 80%,
		#00000000 84%,
		#55BF8D30 84%,
		#55BF8D30 92%,
		#00000000 92%,
		#00000000 100%
	);
	background-size: 100% 100%;
	position: relative;
}



.mainvisual__inner {
	max-width: 1200px;
	margin: 0 auto 80px;
}

.mainvisual__image {
	width: 100%;
	height: auto;
}

.main {
	padding-top: 100px;
}

/* メインコンテンツ */
.section {
	padding: 0 20px;
}

.section--second-page {
	padding-top: 100px;
}

@media (max-width: 768px) {
	.section--second-page {
		padding-top: 60px;
	}
}

.section__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px 80px;
	background-color: white;
	border-radius: 16px;
	border: 2px solid #1E5CD1;
	box-shadow: 8px 8px 0 0 #1E5CD1;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.section__inner {
		padding: 0 16px 32px;
	}
}

.section:not(:first-child) {
	margin-top: 80px;
}

/* ウェルカムバナー */
.welcome-banner {
	text-align: center;
	max-width: 600px;
	margin: -40px auto 0;
}

.welcome-banner__title img {
	width: 100%;
	height: auto;
}

/* キャラクターセクション */
.character-section {
	display: grid;
	grid-template-columns: 40% 55%;
	align-items: center;
	gap: 5%;
	margin-bottom: 80px;
}

@media (max-width: 768px) {
	.character-section {
		grid-template-columns: 1fr;
	}
}

.character-section__characters {
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.character-section__characters img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
}

.character-section__image {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.character-section__image {
		width: 300px;
		display: block;
		margin: 0 auto;
	}
}

.character-section__text {
	text-align: justify;
}

.character-section__text p {
	font-size: 2rem;
	color: #1E5CD1;
	line-height: 2;
}

@media (max-width: 768px) {
	.character-section__text p {
		font-size: 1.4rem;
	}
}

/* 動画セクション */
.video-section {
	margin-bottom: 3rem;
	max-width: 700px;
	margin: 0 auto 80px;
}

@media (max-width: 768px) {
	.video-section {
		margin-bottom: 40px;
	}
}

.video-section__placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f0f0f0;
	border: 2px dashed #ccc;
	border-radius: 8px;
	padding: 4rem 2rem;
	text-align: center;
	color: #666;
	font-size: 1.2rem;
	aspect-ratio: 16/9;
}

.video-section__caption {
	font-size: 1.6rem;
	color: #1E5CD1;
	line-height: 2;
	text-align: center;
}

@media (max-width: 768px) {
	.video-section__caption {
		font-size: 1.2rem;
	}
}

/* 展示プレビュー */
.exhibition-preview {
	margin-bottom: 100px;
}

@media (max-width: 768px) {
	.exhibition-preview {
		margin-bottom: 40px;
	}
}

.exhibition-preview__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media (max-width: 768px) {
	.exhibition-preview__images {
		flex-direction: column;
		align-items: center;
	}
}

.exhibition-preview__image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.exhibition-preview__image {
		width: 100%;
		max-width: 300px;
	}
}

/* CTAボタン */
.cta-section {
	margin-bottom: 80px;
	text-align: center;
}

.cta-button {
	background: #E45825;
	width: 100%;
	color: white;
	border: none;
	padding: 28px 32px;
	border-radius: 20px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.2em;
	cursor: pointer;
	position: relative;
}

@media (max-width: 768px) {
	.cta-button {
		font-size: 1.4rem;
	}
}

.cta-button::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 150px;
	height: 130px;
	background: url(../img/char_btn.png) no-repeat center;
	background-size: contain;
}

@media (max-width: 768px) {
	.cta-button::before {
		width: 100px;
		height: 80px;
	}
}

.cta-button::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

@media (max-width: 768px) {
	.cta-button::after{
		width: 16px;
		height: 16px;
}
}

.cta-button:hover {
	background: #ff6b35;
	transform: scale(1.02);
}


.cta-button__text {
	margin-left: 70px;
}

@media (max-width: 768px) {
	.cta-button__text {
		margin-left: 50px;
	}
}

/* 使い方セクション */
.howto-section {
	margin-top: 100px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.howto-section {
		margin-top: 40px;
		margin-bottom: 0;
	}
}

.howto-section__title {
	border: 1px dotted #1E5CD1;
	margin-bottom: 80px;
	position: relative;
}


@media (max-width: 768px) {
	.howto-section__title {
		margin-bottom: 40px;
	}
}

.howto-section__title-inner {
	text-align: center;
	font-size: 2rem;
	font-weight: normal;
	color: #fff;
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	background: #1E5CD1;
	padding: 4px 48px;
	border-radius: 100px;
	transform: translateX(-50%);
}

@media (max-width: 768px) {
	.howto-section__title-inner {
		font-size: 1.6rem;
		bottom: -17px;
		min-width: 100px;
	}
}

.howto-section__instructions {
	display: flex;
	gap: 20px;
	justify-content: center;
}

@media (max-width: 768px) {
	.howto-section__instructions {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

.howto-section__instruction {
	text-align: center;
	flex: 1;
}

@media (max-width: 768px) {
	.section-content__illustration img {
		width: 70%;
		display: block;
		margin: 0 auto;
	}
}

.howto-section__image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.howto-section__text {
	font-size: 1rem;
	color: #333;
	line-height: 1.6;
}

/* セクションヘッダー */
.section-header:not(.section-header--no-border) {
	border-top: 1px dotted #1E5CD1;
}

.section-header__title {
	max-width: 665px;
	margin: 0 auto 40px;
}

.section-header__image {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.section-header__image {
		display: block;
		width: 96%;
		height: auto;
		margin: 0 auto;
	}
}

/* セクションコンテンツ */
.section-content {
	display: grid;
	grid-template-columns: 36% 60%;
	gap: 4%;
	margin-bottom: 3rem;
	position: relative;
}

.section-content--reverse {
	grid-template-columns: 60% 36%;
}

.section-content--reverse {
	.section-content__illustration {
		order: 1;
	}
}

@media (max-width: 768px) {
	.section-content--reverse {
		.section-content__text {
			order: 2;
		}
	}
}

.section-content__title {
	color: #46A87A;
	font-size: 2.6rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.section-content__title {
		font-size: 1.8rem;
	}
}

.section-content__text {
	margin-bottom: 2rem;
}

.section-content__description {
	text-align: justify;
	color: #333;
	font-size: 2rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.section-content__illustration {
	text-align: center;
	margin-bottom: 2rem;
}

.section-content__image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* スクロールアニメーション用スタイル */
.animate-on-scroll {
	opacity: 0;
	visibility: hidden;
}

.animate-on-scroll.animate__bounceIn {
	opacity: 1;
	visibility: visible;
}

.section-content__button {
	display: flex;
	justify-content: center;
}

/* セクションボタンコンテナ */
.section-content__buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* セカンダリセクションボタン */
.section-button--secondary {
	background: #3498db;
}

.section-button--secondary:hover {
	background: #2980b9;
}

/* セクションボタン */
.section-button {
	background: #27A168;
	color: white;
	text-align: center;
	text-decoration: none;
	border: none;
	min-width: 150px;
	padding: 8px 80px;
	border-radius: 8px;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.section-button {
		font-size: 1.6rem;
	}
}

.section-button::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.section-button:hover {
	transform: scale(1.04);
}

/* 投票セクション */
.vote-section {
	margin-bottom: 4rem;
}

/* 地図セクション */
.map-section {
	margin-bottom: 4rem;
}

.map-section__title {
	border-top: 1px dotted #1E5CD1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.map-section__title-inner {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.2em;
	background: #1E5CD1;
	padding: 16px 120px;
	border-radius: 0 0 16px 16px;
}

.map-section__iframe {
	margin-top: 40px;
}

/* PDFセクション */
.pdf-section {
	margin-bottom: 4rem;
}

@media (max-width: 768px) {
	.section-content {
		grid-template-columns: 1fr;
	}

	
	.section-header__title {
		font-size: 1.5rem;
	}
	
	.section-content__subtitle {
		font-size: 1.4rem;
	}
	
	.section-content__description {
		font-size: 1.4rem;
	}
	
	.section-button {
		font-size: 1.4rem;
	}
}

/* ページトップへボタン */
.page-top {
	margin-top: 160px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.page-top {
		margin-top: 120px;
	}
}

.page-top__button {
	position: relative;
	background: #1E5CD1;
	border: none;
	cursor: pointer;
	padding: 20px 60px;
	border-radius: 16px 16px 0 0;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

.page-top__button:hover {
	transform: scale(1.02);
}

@media (max-width: 768px) {
	.page-top__button {
		padding: 12px 48px;
		font-size: 1.4rem;
	}
}

.page-top__button::after {
	content: '';
	background: url(../img/top_top.png) no-repeat center bottom;
	background-size: contain;
	width: 120px;
	height: 90px;
	position: absolute;
	bottom: 50px;
	right: 50%;
	transform: translateX(50%);
}

.page-top__button:hover::after {
	transform: translate(50%, -4px);
}

@media (max-width: 768px) {
	.page-top__button::after {
		width: 100px;
		height: 80px;
		bottom: 40px;
	}
}

.page-top__button:hover {
	
}

.page-top__image {
	width: 80px;
	height: auto;
}

@media (max-width: 768px) {
	.page-top__image {
		width: 60px;
	}
}

/* サイトフッター */
.site-footer {
	padding: 0 20px;
}

.site-footer__container {
	max-width: 1000px;
	margin: 0 auto;
	background-color: white;
	border-radius: 12px;
	padding: 60px 20px 20px;
	border-radius: 16px 16px 0 0;
	border: 2px solid #1E5CD1;
	border-bottom: none;
	background: #FFF;
	box-shadow: 8px 8px 0 0 #1E5CD1;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.site-footer__container {
		padding: 20px 16px;
	}
}


/* サイトフッターナビゲーション */
.site-footer__nav {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.site-footer__nav {
		margin-bottom: 0;
	}
}

.site-footer__nav-list {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.site-footer__nav-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 20px 0 0;
		font-size: 1.4rem;
	}
}

.site-footer__nav-item:first-child {
	padding-top: 4px;
}

.site-footer__nav-link {
	color: #1E5CD1;
	padding-bottom: 2px;
	transition: color 0.3s;
	&:hover {
		text-decoration: none;
	}
}

/* サイトフッターコンテンツ */
.site-footer__content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
	.site-footer__content {
		flex-direction: column;
	}
}

/* ロゴセクション */
.site-footer__logo-section {

}

@media (max-width: 768px) {
	.site-footer__logo-section {
		flex-direction: column;
		text-align: center;
	}
}

.site-footer__logo {
	width: 150px;
	height: auto;
}

/* 連絡先情報 */
.site-footer__contact-title,
.site-footer__contact-address,
.site-footer__contact-phone,
.site-footer__contact-fax,
.site-footer__contact-email {
	font-size: 1.4rem;
	color: #1E5CD1;
	margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
	.site-footer__contact-title,
	.site-footer__contact-address,
	.site-footer__contact-phone,
	.site-footer__contact-fax,
	.site-footer__contact-email {
		font-size: 1.1rem;
	}
}

/* 著作権表示 */
.site-footer__copyright {
	text-align: center;
}

.site-footer__copyright-text {
	color: #1E5CD1;
	font-size: 1.2rem;
}

.site-footer__copyright-note {
	color: #1E5CD1;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.site-footer__copyright-note {
		font-size: 1rem;
	}
}

/* オーバーレイ */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1010;
}

.overlay.active {
	display: block;
	opacity: 1;
	visibility: visible;
}

/* メニューナビゲーション */
.menu-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2000;
	overflow-y: auto;
	display: none;
	align-items: center;
	justify-content: center;
}

.menu-nav.active {
	display: flex;
	transform: scale(1);
	opacity: 1;
}

.menu-nav__container {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.menu-nav.active {
	.menu-nav__container {
		padding: 0;
	}
}

.menu-nav__header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 60px;
}

.menu-nav__close {
	position: absolute;
	right: 10px;
	top: 10px;
	background: none;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-nav__close-line {
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #1E5CD1;
	border-radius: 1px;
}

.menu-nav__close-line:first-child {
	transform: rotate(45deg);
}

.menu-nav__close-line:last-child {
	transform: rotate(-45deg);
}

.menu-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	padding: 0 20px;
	box-sizing: border-box;
}

.menu-nav__item {
	text-align: center;
}

.menu-nav__link {
	color: #1E5CD1;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border: 2px solid #1E5CD1;
	border-radius: 8px;
	position: relative;
}



.menu-nav__link:hover {
	color: white;
	background: #1E5CD1;
	padding: 20px 30px;
	margin: 0 -16px;
	border-radius: 8px;
}

.menu-nav__link-text {
	flex: 1;
}

@media (max-width: 768px) {
	.menu-nav__link-text {
		font-size: 1.6rem;
	}
}

.menu-nav__link::after {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../img/rightarrow_blue.svg) no-repeat center;
	background-size: contain;
	transition: all 0.3s ease;
}

.menu-nav__link:hover::after {
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

@media (max-width: 768px) {
	.menu-nav__link {
		font-size: 1.6rem;
		padding: 15px 0;
	}
	
	.menu-nav__link:hover {
		padding: 15px 20px;
		margin: 0 -20px;
	}
	
	.menu-nav__link::after {
		width: 16px;
		height: 16px;
	}
}

.menu-nav__item--close {
	margin-top: 60px;
}

.menu-nav__close-button {
	background: none;
	color: #fff;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 12px 24px;
	border-radius: 6px;
	border: none;
	background-color: #1E5CD1;
	cursor: pointer;
	width: 50%;
}

.menu-nav__close-button:hover {
	opacity: .8;
}

@media (max-width: 768px) {
	.menu-nav__container {
		padding: 20px;
	}
	
	.menu-nav__list {
		gap: 30px;
	}
	
	.menu-nav__link {
		font-size: 2rem;
		padding: 15px;
	}
	
} 

/* 投票ページ */
.vote-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

.vote-page__title {
	font-size: 2.8rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 20px;
}

.vote-page__description {
	font-size: 1.6rem;
	color: #333;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.8;
}

.vote-form {
	background: white;
	border: 3px solid #1E5CD1;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 8px 8px 0 0 #1E5CD1;
}

.vote-form__title {
	font-size: 2rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.vote-page__title {
		font-size: 1.6rem;
	}
}

.vote-form__options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.vote-option {
	position: relative;
	cursor: pointer;
}

.vote-option:hover {
	transform: scale(1.02);
}

.vote-option.voted {
	pointer-events: none;
}

.vote-option__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.vote-option__label {
	display: block;
	padding: 20px;
	border: 2px solid #1E5CD1;
	border-radius: 12px;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.vote-option__input:checked + .vote-option__label {
	background: #1E5CD1;
	color: white;
	transform: scale(1.02);
	box-shadow: 4px 4px 0 0 #0d3a7a;
}

.vote-option__label:hover {
	background: #f0f8ff;
	transform: scale(1.01);
}

.vote-option__text {
	font-size: 1.6rem;
	font-weight: bold;
}

.vote-form__submit {
	background: #27A168;
	color: white;
	border: none;
	border-radius: 12px;
	padding: 20px 60px;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: block;
	margin: 0 auto;
	position: relative;
}

.vote-form__submit::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.vote-form__submit:hover {
	background: #1e7a4d;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.vote-page {
		padding: 20px;
	}	
	.vote-page__description {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	
	.vote-form {
		padding: 20px;
	}
	
	.vote-form__title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
	
	.vote-form__options {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.vote-option__label {
		padding: 15px;
	}
	
	.vote-option__text {
		font-size: 1.4rem;
	}
	
	.vote-form__submit {
		padding: 15px 40px;
		font-size: 1.6rem;
	}
} 

/* 記憶地図ページ */
.map-page {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
}

.map-page__title {
	font-size: 2.8rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 20px;
}

.map-page__description {
	font-size: 1.6rem;
	color: #333;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.8;
}

.map-container {
	background: white;
	border: 3px solid #1E5CD1;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 8px 8px 0 0 #1E5CD1;
}

.map-container__header {
	margin-bottom: 30px;
}

.map-container__title {
	font-size: 2rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 20px;
}

.map-container__controls {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.map-control {
	background: white;
	border: 2px solid #1E5CD1;
	color: #1E5CD1;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.map-control:hover {
	background: #f0f8ff;
	transform: scale(1.05);
}

.map-control--active {
	background: #1E5CD1;
	color: white;
}

.map-display {
	position: relative;
	margin-bottom: 40px;
}

.map-display__placeholder {
	position: relative;
	width: 100%;
	height: 400px;
	background: #f8f9fa;
	border-radius: 12px;
	overflow: hidden;
}

.map-display__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.map-display__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.map-point {
	position: absolute;
	cursor: pointer;
	transition: all 0.3s ease;
}

.map-point__marker {
	display: block;
	width: 20px;
	height: 20px;
	background: #E45825;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-point:hover .map-point__marker {
	background: #1E5CD1;
	transform: scale(1.2);
}

.map-point__info {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border: 2px solid #1E5CD1;
	border-radius: 8px;
	padding: 15px;
	width: 250px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
}

.map-point:hover .map-point__info {
	opacity: 1;
	visibility: visible;
}

.map-point__info h4 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 8px;
}

.map-point__info p {
	font-size: 1.2rem;
	color: #333;
	line-height: 1.5;
}

.map-info {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 30px;
}

.map-info__title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 15px;
}

.map-info__content p {
	font-size: 1.4rem;
	color: #333;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.map-page {
		padding: 20px;
	}
	
	.map-page__title {
		font-size: 2.2rem;
	}
	
	.map-page__description {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	
	.map-container {
		padding: 20px;
	}
	
	.map-container__title {
		font-size: 1.8rem;
	}
	
	.map-container__controls {
		gap: 8px;
	}
	
	.map-control {
		padding: 8px 16px;
		font-size: 1.2rem;
	}
	
	.map-display__placeholder {
		height: 300px;
	}
	
	.map-point__info {
		width: 200px;
		padding: 12px;
	}
	
	.map-point__info h4 {
		font-size: 1.2rem;
	}
	
	.map-point__info p {
		font-size: 1rem;
	}
	
	.map-info {
		padding: 20px;
	}
	
	.map-info__title {
		font-size: 1.6rem;
	}
	
	.map-info__content p {
		font-size: 1.2rem;
	}
} 

/* 展示パネルPDFページ */
.pdf-page {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
}

.pdf-page__title {
	font-size: 2.8rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 20px;
}

.pdf-page__description {
	font-size: 1.6rem;
	color: #333;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.8;
}

.pdf-panels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.pdf-panel {
	background: white;
	border: 3px solid #1E5CD1;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 8px 8px 0 0 #1E5CD1;
	transition: all 0.3s ease;
}

.pdf-panel:hover {
	transform: translateY(-5px);
	box-shadow: 12px 12px 0 0 #1E5CD1;
}

.pdf-panel__image {
	margin-bottom: 20px;
	text-align: center;
}

.pdf-panel__img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pdf-panel__content {
	text-align: center;
}

.pdf-panel__title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 15px;
}

.pdf-panel__description {
	font-size: 1.4rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 20px;
}

.pdf-panel__button {
	display: inline-block;
	background: #27A168;
	color: white;
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	transition: all 0.3s ease;
	position: relative;
}

.pdf-panel__button::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.pdf-panel__button:hover {
	background: #1e7a4d;
	transform: scale(1.05);
}

.pdf-download {
	background: white;
	border: 3px solid #E45825;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 8px 8px 0 0 #E45825;
	text-align: center;
}

.pdf-download__title {
	font-size: 2rem;
	font-weight: bold;
	color: #E45825;
	margin-bottom: 15px;
}

.pdf-download__description {
	font-size: 1.4rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 30px;
}

.pdf-download__button {
	display: inline-block;
	background: #E45825;
	color: white;
	text-decoration: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: bold;
	transition: all 0.3s ease;
	position: relative;
}

.pdf-download__button::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.pdf-download__button:hover {
	background: #c94a1f;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.pdf-page {
		padding: 20px;
	}
	
	.pdf-page__title {
		font-size: 2.2rem;
	}
	
	.pdf-page__description {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	
	.pdf-panels {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}
	
	.pdf-panel {
		padding: 20px;
	}
	
	.pdf-panel__title {
		font-size: 1.6rem;
	}
	
	.pdf-panel__description {
		font-size: 1.2rem;
	}
	
	.pdf-panel__button {
		padding: 10px 25px;
		font-size: 1.2rem;
	}
	
	.pdf-download {
		padding: 30px 20px;
	}
	
	.pdf-download__title {
		font-size: 1.8rem;
	}
	
	.pdf-download__description {
		font-size: 1.2rem;
	}
	
	.pdf-download__button {
		padding: 12px 30px;
		font-size: 1.4rem;
	}
} 

.pdf-section {
	
}

.pdf-section__title {
	font-size: 4rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin: 40px 0 40px;
}

@media (max-width: 768px) {
	.pdf-section__title {
		font-size: 1.6rem;
		margin: 20px 0 20px;
	}
}

.pdf-section__description {
	margin-bottom: 40px;
}

.pdf-section__button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

.pdf-button {
	background: #27A168;
	color: white;
	text-align: center;
	text-decoration: none;
	border: none;
	min-width: 200px;
	padding: 15px 60px;
	border-radius: 12px;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pdf-button::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../img/rightarrow_white.svg) no-repeat center;
	background-size: contain;
}

.pdf-button:hover {
	background: #1e7a4d;
	transform: scale(1.05);
}

.pdf-button__text {
	margin-right: 20px;
}

/* PDFボタンコンテナ */
.pdf-section__buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* セカンダリPDFボタン */
.pdf-button--secondary {
	background: #3498db;
}

.pdf-button--secondary:hover {
	background: #2980b9;
}

/* PDFダウンロードリンク */
.pdf-download-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 3rem;
	padding-left: 2rem;
}

.pdf-download-link {
	text-align: left;
	width: 100%;
}

.pdf-download-link a {
	color: #2c3e50;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 0.8rem 1.5rem;
	display: block;
	background-color: #f8f9fa;
	border-radius: 8px;
	position: relative;
}

.pdf-download-link a:hover {
	background-color: #e3f2fd;
	color: #1976d2;
	border-left-color: #1976d2;
	transform: translateX(5px);
}

.pdf-download-link a::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('../img/rightarrow_blue.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 0.8rem;
	vertical-align: middle;
}

.pdf-download-link a:hover::before {
	transform: translateX(3px);
}

@media (max-width: 768px) {

	
	.pdf-section__description {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	
	.pdf-section__button {
		margin-bottom: 40px;
	}
	
	.pdf-button {
		min-width: 180px;
		padding: 12px 40px;
		font-size: 1.6rem;
	}
	
	.pdf-button__text {
		margin-right: 15px;
	}
	
	.pdf-section__buttons {
		gap: 1rem;
	}
	
	.pdf-download-links {
		gap: 0.8rem;
		margin-top: 2rem;
		padding-left: 1rem;
	}
	
	.pdf-download-link a {
		font-size: 1.2rem;
		padding: 0.6rem 1rem;
	}
	
	.pdf-download-link a::before {
		width: 14px;
		height: 14px;
		margin-right: 0.6rem;
	}
}

/* セクションボタンのレスポンシブ */
@media (max-width: 768px) {
	.section-content__buttons {
		gap: 1rem;
	}
}

/* 記憶地図ページ */
.memory-map {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

.memory-map__header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	.memory-map__header {
		margin-bottom: 40px;
	}
}

.memory-map__title {
	font-size: 7rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.memory-map__title {
		font-size: 4rem;
	}
}

.memory-map__subtitle {
	font-size: 2rem;
	color: #1E5CD1;
	font-weight: bold;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.memory-map__subtitle {
		font-size: 1.6rem;
	}
}

.memory-map__instruction {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 2rem;
	line-height: 1.2;
}

.memory-map__marker {
	width: 26px;
}

@media (max-width: 768px) {
	.memory-map__marker {
		width: 18px;
	}
}


.memory-map__marker img {
	width: 100%;
}

.memory-map__instruction-text {
	font-weight: bold;
	font-size: 2rem;
	background: linear-gradient(transparent 60%, #ffff66 60%);
}

@media (max-width: 768px) {
	.memory-map__instruction-text {
		font-size: 1.4rem;
	}
}

/* 地図セクション */
.map-sections {
	margin-bottom: 80px;
}

.map-section {
	margin-bottom: 40px;
}

.map-section__title {
	border-top: 1px dotted #1E5CD1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.map-section__title-inner {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.2em;
	background: #1E5CD1;
	padding: 16px 120px;
	border-radius: 0 0 16px 16px;
}

@media (max-width: 768px) {
	.map-section__title-inner {
		font-size: 1.6rem;
		padding: 8px 80px;
	}
}

.map-section__button {
	background: #1E5CD1;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 15px 40px;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.map-section__button:hover {
	background: #0d3a7a;
	transform: scale(1.05);
}

.map-section__button--active {
	background: #E45825;
}

.map-section__button--active:hover {
	background: #c94a1f;
}

.map-section__content {
	display: none;
}

.map-section__content.active {
	display: block;
}

.map-container {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 30px;
	background: white;
	border: 3px solid #1E5CD1;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 8px 8px 0 0 #1E5CD1;
}

@media (max-width: 768px) {
	.map-container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}
}

.map-display {
	position: relative;
}

.map-placeholder {
	position: relative;
	width: 100%;
	height: 400px;
	background: #f8f9fa;
	border-radius: 12px;
	overflow: hidden;
}

@media (max-width: 768px) {
	.map-placeholder {
		height: 300px;
	}
}

.map-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.map-markers {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.map-marker {
	position: absolute;
	cursor: pointer;
	transition: all 0.3s ease;
}

.map-marker__pin {
	display: block;
	font-size: 2rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.map-marker:hover .map-marker__pin {
	transform: scale(1.2);
}

.map-marker__label {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border: 2px solid #1E5CD1;
	border-radius: 6px;
	padding: 5px 10px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #1E5CD1;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
}

.map-marker:hover .map-marker__label {
	opacity: 1;
	visibility: visible;
}

/* 情報パネル */
.map-info-panel {
	background: white;
	border: 2px solid #E45825;
	border-radius: 12px;
	overflow: hidden;
}

.map-info-panel__header {
	background: #E45825;
	color: white;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.map-info-panel__back {
	background: none;
	border: none;
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
	padding: 0;
}

.map-info-panel__title {
	font-size: 1.6rem;
	font-weight: bold;
}

.map-info-panel__content {
	padding: 20px;
}

@media (max-width: 768px) {
	.map-info-panel__content {
		padding: 15px;
	}
}

.map-info-panel__facility {
	font-size: 1.4rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 10px;
}

.map-info-panel__description {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 20px;
}

.map-info-panel__details h4 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	margin: 15px 0 5px;
}

.map-info-panel__details p {
	font-size: 1.2rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 10px;
}

.map-info-panel__details a {
	color: #1E5CD1;
	text-decoration: none;
}

.map-info-panel__details a:hover {
	text-decoration: underline;
}

/* 日常記憶地図とは？セクション */
.memory-map-explanation {
	background: white;
	border: 2px dotted #1E5CD1;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	.memory-map-explanation {
		padding: 30px 20px;
	}
}

.memory-map-explanation__title {
	font-size: 1.7rem;
	font-weight: bold;
	color: #1E5CD1;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.memory-map-explanation__title {
		font-size: 1.6rem;
	}
}

.memory-map-explanation__content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.memory-map-explanation__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.memory-map-explanation__text p {
	font-size: 1.7rem;
	line-height: 1.8;
	color: #1E5CD1;
	text-align: justify;
}

@media (max-width: 768px) {
	.memory-map-explanation__text p {
		font-size: 1.4rem;
	}
}

.memory-map-explanation__image {
	text-align: center;
}

.memory-map-explanation__img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.memory-map-explanation__credit {
	font-size: 1rem;
	color: #1E5CD1;
}

/* サトウアヤコセクション */
.ayako-sato {

}

.ayako-sato__title {
	font-size: 1.7rem;
	line-height: 1.8;
	font-weight: bold;
	color: #1E5CD1;
}

@media (max-width: 768px) {
	.ayako-sato__title {
		font-size: 1.6rem;
	}
}

.ayako-sato__description {
	font-size: 1.7rem;
	color: #1E5CD1;
	line-height: 1.8;
	text-align: justify;
}

@media (max-width: 768px) {
	.ayako-sato__description {
		font-size: 1.4rem;
	}
}

/* 参加者セクション */
.participants {

}

.participants__intro {
	font-size: 2rem;
	color: #333;
	line-height: 1.8;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.participants__intro {
		font-size: 1.4rem;
	}
}

.participants__list {
	list-style: none;
	margin: 30px 0;
}

.participants__item {
	font-size: 2rem;
	line-height: 1.8;
	padding-left: 20px;
}

@media (max-width: 768px) {
	.participants__item {
		font-size: 1.2rem;
	}
}

.participants__conclusion {
	font-size: 2rem;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.participants__conclusion {
		font-size: 1.4rem;
	}
}

/* 投票ページ */

.vote-header {
	text-align: center;
	margin-bottom: 40px;
}

.vote-header__title {
	font-size: 3.2rem;
	font-weight: bold;
	color: #1E5CD1;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.vote-header__title {
		font-size: 2.4rem;
	}
}

.vote-header__subtitle {
	font-size: 2rem;
	font-weight: bold;
	color: #1E5CD1;
}

@media (max-width: 768px) {
	.vote-header__subtitle {
		font-size: 1.6rem;
	}
}

.vote-intro {
	margin-bottom: 50px;
}

.vote-intro__title {
	font-size: 4rem;
	font-weight: bold;
	color: #1E5CD1;
	text-align: center;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.vote-intro__title {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
}

.vote-intro__description {
	font-size: 1.6rem;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.vote-intro__description {
		font-size: 1.4rem;
	}
}

.vote-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px 20px;
}

@media (max-width: 768px) {
	.vote-options {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.vote-option:nth-child(1) {
		order: 1;
	}
	.vote-option:nth-child(2) {
		order: 3;
	}
	.vote-option:nth-child(3) {
		order: 5;
	}
	.vote-option:nth-child(4) {
		order: 2;
	}
	.vote-option:nth-child(5) {
		order: 4;
	}
	.vote-option:nth-child(6) {
		order: 6;
	}
}

@media (max-width: 480px) {
	.vote-options {
		gap: 48px 16px;
	}
}



.vote-option:hover {

}

.vote-option__mailbox::after {
	content: '';
	position: absolute;
	left: calc(50% - 30px);
	top: 0;
	width: 60px;
	height: 60px;
	background: url(../img/char_btn.png) no-repeat center;
	background-size: contain;
	opacity: 0;
	transform: translateX(-50%) translateY(30px);
	transition: all 0.1s ease;
	z-index: 0;
}

.vote-option:hover .vote-option__mailbox::after {
	opacity: 1;
	transform: translateX(-50%) translateY(-60px) scale(1.5);
}

.vote-option__mailbox {
	max-width: 200px;
	margin: 0 auto 15px;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.vote-option__mailbox--red {
	background-image: url(../img/vote_red.png);
}

.vote-option__mailbox--green {
	background-image: url(../img/vote_green.png);
}

.vote-option__mailbox--blue {
	background-image: url(../img/vote_blue.png);
}

.vote-option__mailbox-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.vote-option__count-container {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	line-height: 1;
	display: flex;
	align-items: flex-end;
	gap: 4px;
}

.vote-option__count {
	color: white;
	font-size: 5rem;
	line-height: 1;
}

.vote-option__count-unit {
	color: white;
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.vote-option__count {
		font-size: 4rem;
	}
}

@media (max-width: 480px) {
	.vote-option__count {

	}
}

.vote-option__content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.vote-option__description {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	margin: 0;
	text-align: center;
}

@media (max-width: 768px) {
	.vote-option__description {
		font-size: 1.6rem;
	}
}

.vote-option__button {
	background: #27A168;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	min-width: 200px;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 auto;
}

.vote-option.voted .vote-option__button {
	background: #E45825;
}

.vote-option__button:not(.voted):hover {
	background: #1e7a4d;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.vote-option__button {
		padding: 10px 20px;
		font-size: 1.4rem;
	}
}

.vote-option__button-text {
	font-weight: bold;
}

.vote-option__button-arrow {
	font-size: 1.2rem;
	color: white;
}

.vote-option__button-arrow-img {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
	display: inline-block;
	vertical-align: middle;
}

@media (max-width: 768px) {
	.vote-option__button-arrow-img {
		width: 14px;
		height: 14px;
	}
}

.video-section__video {
	border-radius: 16px;
	width: 100%;
	height: auto;
	border: 3px solid #1E5CD1;
}

@media (max-width: 768px) {
	.video-section__video {
		height: 300px;
	}
}