@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

body {
	color: #333;
}
img {
	max-width: 100%;
}
a:hover {
	cursor: pointer;
	color: #000;
}
.film_logo {
	margin: 30px auto;
	text-align: center;
}
.menu_film {
	position: relative;
	margin: 0 auto 30px;
	width: 100%;
	background: #f2f2f2;
}
.menu_film ul {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	font-size: clamp(0.75rem, 0.25rem + 0.83vw, 0.875rem);
	font-size: 0.75rem;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.menu_film ul li {
	text-align: center;
	width: 160px;
	position: relative;
	display: flex;
	justify-content: center;
}
.menu_film ul li::before {
	content: '';
	height: 18px;
	width: 1px;
	border-left: 1px dotted #999;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.menu_film ul li:first-child::before {
	display: none;
}
.menu_film ul li a {
	text-decoration: none;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1.5rem 0;
}
.menu_film ul li::after {
	content: '';
	width: 100px;
	height: 4px;
	background: #87CBE0;
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform-origin: center top;
	transform: translateX(-50%) scale(0, 1);
	transition: transform .3s;
}
.menu_film ul li:hover::after {
	transform: translateX(-50%) scale(1, 1);
}
.menu_film.fixed {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
.film_main h4 {
	font-size: 1.75rem;
	line-height: 1.3;
	font-family: 'Noto Serif JP', serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	padding: 0 1rem 1rem 3.5rem;
	margin: 40px auto;
	background: url('../img/border_tit.png');
	background-position: left bottom;
	background-size: 100% 4px;
	background-repeat: no-repeat;
	position: relative;
}
.film_main h4::before {
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-58%);
	content: '';
	width: 45px;
	height: 38px;
	background-repeat: no-repeat;
}
.film_main h4:nth-of-type(n+2) {
	margin-top: 100px;
}
.film_main.toppage h4:first-of-type::before,
.film_main.toppage h4:nth-of-type(2)::before,
.film_main.supportedworks h4::before {
	background: url('../img/icon002.png');
}
.film_main.toppage h4:nth-of-type(3)::before,
.film_main.participation h4:first-of-type::before {
	background: url('../img/icon003.png');
}
.film_main.participation h4:nth-of-type(2)::before,
.film_main.participation.tmpl h4::before,
.film_main.contact h4::before {
	background: url('../img/icon003-2.png');
}
.film_main.about h4::before {
	background: url('../img/icon001.png');
}
.film_main.search h4::before {
	background: url('../img/icon004.png');
}
.film_main.shootingsupport h4::before {
	background: url('../img/icon005.png');
}
.film_main.location h4::before {
	background: url('../img/icon007.png');
}
.film_main h5 {
	font-size: 1.25rem;
	line-height: 1.3;
	font-family: 'Noto Serif JP', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 30px;
	padding: 25px 0;
	position: relative;
}
.film_main h5::before {
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	width: 75px;
	height: 77px;
	background: url('../img/icon_tit.png');
	background-repeat: no-repeat;
}
.film_main h5 span {
	z-index: 2;
	position: relative;
}
.film_main.toppage h5 {
	padding: 25px 0 0;
	margin-bottom: 10px;
}
.film_main.toppage h5::before {
	left: -15px;
	transform: translateY(-25%);
}
.film_main h6 {
	font-size: 1.125rem;
	margin: 40px auto 30px;
	position: relative;
	padding: 0 1rem 0.5rem;
}
.film_main h6::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6px;
	background: repeating-linear-gradient(-45deg,#AFAFAF 0,#AFAFAF 1px,#fff 1px,#fff 6px);
	background-size: 8px 8px;
}
.film_main.toppage h6 {
	padding: 0 0.5rem 1rem;
	margin: 1rem auto;
	font-weight: normal;
}
.film_main.toppage h6::before {
	height: 9px;
	background: repeating-linear-gradient(-45deg,#77D6EC 0,#77D6EC 1px,#fff 1px,#fff 3px);
	background-size: 4px 4px;
	width: calc(100% - 1rem);
	left: 50%;
	transform: translateX(-50%);
}
/*
.film_main.toppage p {
	font-size: 0.75rem;
}*/
.film_main {
	margin-bottom: 70px;
}
.film_main .btn_box {
	margin: 100px auto 0;
	text-align: center;
}
.film_main .btn_box > a {
	display: inline-block;
}
.film_main .btn_box > a:not(.main_btn) {
	display: block;
	width: 100%;
}
.film_main .btn_box:has(.main_btn + .main_btn) {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}
.film_main .main_btn {
	border: 1px solid #24C5E1;
	color: #24C5E1;
	font-size: 1rem;
	padding: 1rem 2rem;
	margin-bottom: 1rem;
	text-decoration: none;
	transition: .5s;
}
.film_main .main_btn[href$=".doc"],
.film_main .main_btn[href$=".docx"],
.film_main .main_btn[href$=".pdf"] {
	background: none;
}
.film_main .main_btn:hover {
	color: #fff;
	background: #24C5E1;
}
.film_main .btn_box img {
	/*noscript—p*/
	margin-bottom: 1rem;
}

.film_foot {
	margin: 20px auto;
	text-align: center;
	background: repeating-linear-gradient(-45deg, #90e8fd 0, #90e8fd 1px, #fff 1px, #fff 3px);
	background-size: 4px 4px;
}
.film_foot img {
	margin: 20px 10px;
	vertical-align: middle;
}

@media screen and (max-width:974px) {
	.menu_film ul li {
		width: calc(100% / 3);
		position: relative;
	}
	.menu_film ul li:nth-child(4)::before {
		display: none;
	}
}
@media screen and (max-width:960px) {
	.film_main h5::before {
		left: -12px;
	}



}
@media screen and (max-width:768px) {




}
@media screen and (max-width: 480px) {
	.menu_film ul li {
		width: calc(100% / 2);
	}
	.menu_film ul li::after {
		bottom: 0.5rem;
	}
	.menu_film ul li a {
		padding: 0.75rem 0;
	}
	.menu_film ul li:nth-child(4)::before {
		display: block;
	}
	.menu_film ul li:nth-child(odd)::before {
		display: none;
	}
	.film_foot {
		max-width: 90%;
	}
	.film_foot span {
		padding: 0px 0px 20px;
		display: block;
	}
	.film_foot img {
		margin: 20px auto 0px;
		vertical-align: middle;
	}



}


