.m_contact-btn._auto-width {
	width: max-content;
	padding: 0 3em;
}
.m_contact-btn._icon {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
}
.m_contact-btn._icon::after {
	content: '';
	width: 1.2em;
	height: 1.2em;
	background: center no-repeat;
}
.m_contact-btn._icon._icon-out::after {
	background-image: url(../images/global/icon_out.svg);

}

.index_activity {
	background: transparent;
	padding-top: 0;
}
.index_activity .m_heading {
	margin-bottom: clamp(20px,20px + 20*(100vw - 375px)/393,40px);
}
.activity__contents {
	background: #fffbda;
}
.activity__image {
}
.activity__image img {
	height: 100%;
	object-fit: cover;
}
.activity__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
}
.activity__text h3 {
	text-align: center;
	font-size: clamp(16px,16px + 6*(100vw - 375px)/393,22px);
	font-weight: 400;
	color: #000;
}
.activity__text p {
	text-align: center;
	margin-top: 1em;
	font-size: clamp(12px,12px + 2*(100vw - 375px)/393,14px);
}
.activity__buttons {
	margin-top: clamp(20px,20px + 10*(100vw - 375px)/393,30px);
}
@media only screen and (min-width: 960px) {
	.activity__contents {
		display: flex;
	}
	.activity__image {
		flex-basis: 50%;
	}
	.activity__text {
		flex-basis: 50%;
	}
	.activity__text h3 {
		text-align: left;
	}
	.activity__text p {
		text-align: left;
	}
}

.index_attempt__lead {
	line-height: 2;
	text-align: center;
	margin-top: clamp(20px,20px + 10*(100vw - 375px)/393,30px);
}
.index_attempt__buttons {
	margin-top: clamp(20px,20px + 10*(100vw - 375px)/393,30px);
}
.index_attempt__buttons .m_contact-btn {
	margin-top: 0;
}


.footer-logo {
	width: 100%;
	max-width: 400px;
}
.footer-logo a {
	display: block;
}


/* モーダル用 */
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes mmslideIn {
	from {
		transform: translateY(10%);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-5%);
	}
}
.movie-modal {
}
.movie-modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 500;
}
.movie-modal__container {
	width: 85%;
	max-width: 1200px;
	height: auto;
	max-height: 100vh;
	overflow-y: auto;
	box-sizing: border-box;
}
.movie-modal__close {
	position: fixed;
	right: 20px;
	top: 20px;
	text-indent: -999em;
	display: block;
	width: 32px;
	height: 32px;
	transition: opacity 0.25s;
}
.movie-modal__close::before,
.movie-modal__close::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #fff;
	left: 0;
	top: 50%;
	display: block;
}
.movie-modal__close::before {
	transform: rotate(45deg);
}
.movie-modal__close::after {
	transform: rotate(-45deg);
}
.movie-modal__close:hover {
	opacity: 0.75;
}
.movie-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.movie-modal__title {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}
.movie-modal__content {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	/* padding: 40px; */
	display: flex;
}
.micromodal-slide {
display: none;
}
.micromodal-slide.is-open {
display: block;
}
.micromodal-slide[aria-hidden="false"] .movie-modal__overlay {
animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
/* .micromodal-slide[aria-hidden="false"] .movie-modal__container {
animation: mmslideIn 0.5s cubic-bezier(0, 0, 0.2, 1);
} */
.micromodal-slide[aria-hidden="true"] .movie-modal__overlay {
animation: mmfadeOut 0.5s cubic-bezier(0, 0, 0.2, 1);
}
/* .micromodal-slide[aria-hidden="true"] .movie-modal__container {
animation: mmslideOut 0.5s cubic-bezier(0, 0, 0.2, 1);
} */
.micromodal-slide .movie-modal__container,
.micromodal-slide .movie-modal__overlay {
will-change: transform;
}

.movie-modal__movie {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	box-sizing: border-box;
}
.movie-modal__movie	iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}
.movie-modal__movie	video {
	width: 100%;
	height: auto;
	display: block;
}
.index_movie .m_heading {
	margin-bottom: clamp(20px,20px + 20*(100vw - 375px)/393,40px);
}
.movie-gallery__thumbs {
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
}
.movie-gallery__thumb {
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	transition: opacity 0.25s;
}
.movie-gallery__thumb:hover {
	opacity: 0.75;
}
.movie-gallery__imgage {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.movie-gallery__imgage img {
}
.movie-gallery__caption {
	font-size: clamp(12px,12px + 2*(100vw - 375px)/393,14px);
	margin-top: 0.5em;
	text-align: center;
}
@media only screen and (min-width: 960px) {
	.movie-gallery__thumb {
		flex-basis: calc((100% - 60px * 1) / 2);
	}
}