@charset "UTF-8";

/* ============================================================
   目次(このファイルに含まれる主なセクション、上から並んでいる順)
   1. リセット / 基本設定
   2. YouTube動画のアスペクト比調整
   3. ヘッダー(ロゴ・グローバルナビ・ハンバーガーメニュー)
   4. main共通 / セクション見出し
   5. トップイメージ(メインビジュアル)
   6. ABOUT
   7. MOVIE(作品グリッド)
   8. NEWS(お知らせ一覧)
   9. EVENT / 監督トークイベント
   10. SUPPORTER(協賛企業・簡易表示分。詳細はcustom.css側にも追加あり)
   11. ATTENTION(注意事項)
   12. ACCESS(地図)
   13. footer
   14. ふわっアニメーション
   15. 作品詳細ページ: スライダー・プロフィール・タグなど
   16. INFOMATION / ARCHIVE / Facebook埋め込み(front-page追加セクション)
   ============================================================ */

/*====================================
リセット / 基本設定
===================================*/
* {
	/* margin/padding/box-sizingは reset.css (先に読み込み)で
	   既に * に対して設定済みのため、ここでは重複させず
	   このテーマ独自の設定(ライトモード固定)だけ行う */
	color-scheme: light;
}
html {
	scroll-behavior: smooth;
	font-size: 13px; /* モバイル基準: 13px */
}
@media screen and (min-width: 780px) {
	html {
		font-size: 16px; /* PC基準: 16px */
	}
}
body {
	background: #fff;
}
img {
	width: 100%;
	vertical-align: bottom;
}
div, a, p, h1, h2, h3, h4, h5, ul, li, ol, dl, dd {
	font-family: 'Montserrat', sans-serif;
	color: #222;
	text-decoration: none;
	font-feature-settings: "palt";
	list-style: none;
}
div, a, p, ul, li, ol, dl, dd, h4, h5 {
	font-size: 1rem;
	line-height: 2rem;
}
.pc_br {
	display: none;
}
::-webkit-scrollbar {
	background: #555;
	width: 12px;
}
::-webkit-scrollbar-thumb {
	background-color: #ccc;
}
.small {
	font-size: 0.7em;
}
@media screen and (min-width: 780px) {
	.pc_br {
		max-width: 700px;
		display: block;
	}
	.sp_br {
		display: none;
	}
}
.txt_s {
	display: block;
	font-size: 0.8em;
	margin: 5px 0;
	line-height: 1.2em;
}
.inr_txt {
	text-align: left;
	padding: 10px 20px;
}
.txt_c {
	text-align: center;
}

/*=============  HEADER ===============*/
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	z-index: 9999;
}
.faff_splogo {
	padding: 0 10px;
}
.faff_splogo > a {
	color: #fff;
	font-weight: 700;
}
.header__container {
	padding-right: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* サイトタイトルの見た目調整 */
.header__logo__link {
	font-size: 1.25em;
	font-weight: bold;
	color: inherit;
	text-decoration: none;
}
/* ハンバーガーボタンのデザイン調整 */
.header__trigger {
	position: relative;
	width: 40px;
	height: 40px;
	border: none;
	z-index: 9999;
	background: #000;
}
/* ハンバーガーボタン内の線、デザイン調整 */
.header__trigger > span {
	display: block;
	position: absolute;
	left: 50%;
	width: 30px;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
}
/* ハンバーガーボタン内の線、位置調整 */
.header__trigger > span:first-child {
	top: 10px;
}
.header__trigger > span:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}
.header__trigger > span:last-child {
	bottom: 10px;
}
/* ハンバーガーボタンがクリックされた後、中の線デザイン */
.header__trigger.active > span {
	background-color: #fff;
}
.header__trigger.active > span:first-child {
	transform: translate(-50%, 10px) rotate(-45deg);
	transition: transform 0.3s ease;
}
.header__trigger.active > span:nth-child(2) {
	opacity: 0;
	transition: opacity 0.3s ease;
}
.header__trigger.active > span:last-child {
	transform: translate(-50%, -8px) rotate(45deg);
	transition: transform 0.3s ease;
}
/* メニューのデザイン */
.global-nav {
	position: fixed;
	top: 50px;
	left: 100%;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	padding: 20px 0;
	transition: all 0.3s ease;
	font-family: 'Noto Serif JP', serif;
}
.global-nav.active {
	left: 0;
}
.global-nav__menu {
	flex-direction: column;
	list-style: none;
	text-align: center;
}
.global-nav__link {
	font-size: 1.2rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}
.global-nav__link > span {
	font-size: 0.6em;
	display: block;
	line-height: 1;
}
body.active {
	height: 100%;
	overflow: hidden;
}
.global-nav__item {
	padding: 20px 0;
}
@media screen and (min-width: 780px) {
	.header__trigger {
		display: none;
	}
	.global-nav {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background: none;
		padding: 0 0 0;
	}
	.global-nav__menu {
		height: 50px;
		flex-direction: row;
		background: #000;
	}
	.global-nav__item {
		padding: 0 5px;
		display: inline-block;
		line-height: 1;
	}
}
@media screen and (min-width: 1200px) {
	.faff_splogo {
		padding-left: 30px;
	}
	.header__container {
		padding-right: 20px;
	}
	.global-nav__item {
		padding: 0 10px;
	}
}

/*========= main ===============*/
main {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 50px;
	left: 0;
}
section {
	margin: 0 auto;
	scroll-margin-top: 100px;
}
.section_title {
	text-align: center;
	margin: 30px auto 20px;
}
.section_title > span {
	font-size: 0.8rem;
	display: block;
	line-height: 1;
}

/*================= トップイメージ ===============*/
.top_img {
	width: 100%;
	background: #000;
	text-align: center;
}
.tate {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}
.yoko {
	display: none;
}
@media screen and (min-width: 480px) {
	.tate {
		display: none;
	}
	.yoko {
		max-width: 800px;
		margin: 0 auto;
		display: block;
	}
}
.youtube {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

/*================ about ===============*/
#about {
	width: calc(100% - 20px);
	margin: 0 auto;
	padding: 30px 0;
	max-width: 800px;
}
#about > h2 {
	text-align: center;
	margin-bottom: 15px;
}
#about > p {
	padding: 0 10px;
	font-size: 0.9rem;
}
.about_text_p > p {
	font-size: 1rem;
	line-height: 2rem;
	text-align: left;
}
@media screen and (min-width: 480px) {
	#about > p {
		text-align: center;
	}
	.about_text_p > p {
		text-align: center;
	}
}
#end_txt {
	width: 500px;
	display: block;
	margin: 20px auto 5px;
	color: #fff;
	background: #dc143c;
}

/*=============  link_area ===============*/
#link_area {
	width: calc(100% - 20px);
	margin: 30px auto 80px;
	max-width: 600px;
	text-align: center;
}
#link_area > a:hover {
	opacity: .5;
	transition: 0.3s;
}

/*================ movie ===============*/
#movie {
	max-width: 1040px;
	padding: 0 10px;
	margin: 80px auto;
	text-align: center;
}
.movie_content {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}
.movie_btn {
	width: 100%;
	border-radius: 5px;
	border: solid 1px #b3881b;
	background: #fff;
	transition: 0.3s;
}
.movie_btn:hover {
	opacity: .6;
}
.kikaku_title {
	margin: 50px 0 5px;
	text-align: center;
	font-size: 1.2em;
}
.kikaku_title > .txt_s {
	margin-bottom: 5px;
}
.free, .charity {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 8px;
	color: #fff;
	border-radius: 5px;
	font-size: 0.8em;
}
.library_fl {
	width: calc(100% - 20px);
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column-reverse;
}
.library_fl > div > h3 {
	text-align: left;
	margin: 5px 0 10px;
	padding: 0 10px;
}
.library_fl > div > p {
	width: calc(100% - 20px);
	margin: 0 auto;
	font-size: 0.9rem;
	text-align: left;
}
.library_fl > p {
	max-width: 300px;
	margin: 0 auto;
	padding: 10px 0;
}
.free {
	background: #ff8c00;
}
.charity {
	background: #800080;
}
.movie_btn > div {
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.movie_btn > div:first-child {
	height: 100%;
}
.movie_btn > .category_box {
	padding: 0 10px 10px;
}
.movie_til {
	font-size: 1rem;
}
.movie_til_flag img {
	width: 30px;
	margin: 0 2px 5px;
	display: inline-block;
	border: solid 1px #ccc;
	vertical-align: text-bottom;
}
.movie_img {
	overflow: hidden;
	width: 100%;
	height: 170px;
	position: relative;
	margin-bottom: 10px;
}
.movie_img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	display: block;
}
.no_category {
	margin-top: 20px;
}
.faff {
	display: block;
	font-size: 0.7em;
	line-height: 1.2em;
	color: #dc143c;
}
.ajibi_til > h3, .cinela_til > h3 {
	margin: 50px auto 10px;
	padding: 5px;
	background: #555;
	color: #fff;
	text-align: center;
}
.place {
	width: calc(100% - 20px);
	font-size: 1.2em;
	text-align: left;
	margin: 5px auto 10px;
}
.place_small {
	text-align: left;
	font-size: 0.8em;
	line-height: 1.5;
}
.ajibi_til > p:last-of-type {
	font-size: 0.9em;
}
.place > span {
	width: calc(100% - 20px);
	font-size: 0.8em;
	text-align: left;
	margin: 5px auto 10px;
	padding: 2px 8px;
	margin-right: 10px;
	border: solid 1px #333;
}
.category_til {
	display: block;
	position: relative;
	top: -7px;
	height: 30px; /*リボンの高さ*/
	line-height: 28px; /*リボンの高さ*/
	padding: 2px 30px 0; /*横の大きさ*/
	font-size: 1rem;
	background: #b3881b; /*塗りつぶし色*/
	color: #FFF; /*文字色*/
}
.category_til:before, .category_til:after {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 1;
}
.category_til:before {
	top: 0;
	left: 0;
	border-width: 15px 0px 15px 15px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.category_til:after {
	top: 0;
	right: 0;
	border-width: 15px 15px 15px 0px;
	border-color: transparent #fff transparent transparent;
	border-style: solid;
}
@media screen and (min-width: 780px) {
	#movie {
		text-align: center;
	}
	.ajibi_til > p, .cinela_til > p {
		text-align: center;
	}
	.library_fl {
		width: calc(100% - 20px);
		margin: 0 auto;
		max-width: 850px;
		flex-direction: row;
	}
	.library_fl > p {
		width: 37%;
		margin-right: 3%;
	}
	.library_fl > div {
		width: 60%;
	}
	.ajibi > p {
		text-align: center;
	}
}

/*----------- News -----------*/
.news-list {
	width: calc(100% - 10px);
	margin: 50px auto 100px;
	max-width: 900px;
	list-style: none outside;
}
.news-list .item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #CCC;
	padding: 20px 10px;
}
.news-list .item:first-child a {
	border-top: 1px solid #CCC;
}
.news-list .item .date {
	margin: 0;
	min-width: 140px;
	font-size: 0.9em;
	color: #333;
	padding: 0 20px 0 0;
}
.news-list .item .category {
	margin: 0;
	min-width: 140px;
	padding: 0 20px 0 0;
}
.news-list .item .category span {
	background: #999;
	color: #FFF;
	text-align: center;
	display: inline-block;
	padding: 5px 20px;
	font-size: 12px;
	line-height: 1;
}
.news-list .item .title {
	margin: 0;
	width: 100%;
	transition: 0.3s;
	font-size: 0.9em;
}
.news-list .item a:hover .title {
	color: #ccc;
}
@media screen and (max-width: 767px) {
	.news-list .item a {
		flex-wrap: wrap;
	}
	.news-list .item .date {
		min-width: 100px;
	}
	.news-list .item .title {
		margin-top: 10px;
	}
}

/*----------- Event -----------*/
.event_list {
	margin: 0 0 100px;
}
.event_list > div {
	text-align: center;
}
.event_list > div > h2 {
	max-width: 900px;
	margin: 0 auto;
	padding: 5px;
	font-size: 1.1em;
	border-top: dotted 1px #000;
	border-bottom: dotted 1px #000;
}
.event_list > div, .event_talk > div {
	max-width: 900px;
	margin: 10px auto;
	padding: 5px;
	font-size: 1em;
}
.event_list > div > p, .event_talk > div > p {
	padding: 10px 0 0;
}
.price_small {
	max-width: 500px;
	margin: 10px auto;
	text-align: left;
}
.event_talk > div > h3, .event_talk > div > p {
	margin-bottom: 10px;
}
.award > p:first-of-type img {
	max-width: 200px;
	padding: 6px;
	margin: 0 auto 5px;
	border: solid 1px #ccc;
}
.dir_txt {
	text-align: left;
}
.dir img {
	max-width: 200px;
	margin: 0 auto;
}
@media screen and (min-width: 751px) {
	.award {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.award > p:first-of-type {
		margin-right: 10px;
	}
	.dir_profile {
		display: flex;
		align-items: center;
	}
	.dir img {
		width: 30%;
		padding-right: 20px;
		min-width: 220px;
	}
}
.talk_event {
	margin: 20px 0;
}
.ribbon {
	margin-left: 20px;
	background: #AE8748;
	line-height: 25px;
	color: #fff;
	display: flex;
	align-items: center;
}
.ribbon > img {
	width: 50px;
	position: relative;
	right: 25px;
}
.prof_name {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 5px;
}
.report {
	text-align: center;
	margin: 0 auto;
}
.report > a {
	margin: 5px;
	padding: 3px 5px;
	display: inline-block;
	text-decoration: none;
	font-size: 0.8em;
	border: solid 1px #333;
	transition: 0.3s;
}
.report > a:hover {
	opacity: 0.5;
}
rt {
	font-size: 0.5em;
}


/* ==========================================================
   SUPPORTER セクション
   ========================================================== */
.supporter_area {
	max-width: 1200px;
	margin: 60px auto 0;
	padding: 40px 20px 60px;
	box-sizing: border-box;
	text-align: center;
}

.supporter_logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 32px;
	margin: 40px auto 0;
}

.supporter_logo_item a {
	display: block;
	line-height: 0;
}

/* ロゴの縦横比はそのまま、高さだけ揃えて自然にサイズが並ぶようにする。
   sponsor_size が入力されている場合はインラインstyleで個別に上書きされる */
.supporter_logo_item img {
	display: block;
	height: 70px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
}

@media screen and (max-width: 599px) {
	.supporter_logo_item img {
		height: 50px;
		max-width: 200px;
	}
}

.supporter_cooperation_text {
	max-width: 900px;
	margin: 40px auto 0;
	font-size: 0.85rem;
	line-height: 1.9;
	color: #555;
}

/* 会社名の途中で改行されないようにする(区切りの／の前後では改行可) */
.supporter_cooperation_item {
	white-space: nowrap;
}

.supporter_cooperation_text a {
	color: #555;
	text-decoration: underline;
}
.supporter_cooperation_text a:hover {
	opacity: 0.7;
}


.supporter_cooperation_note {
	color: #888;
}

/*----------- supporter -----------*/
#supporter {
	margin: 0 auto;
	padding: 30px 0;
}
.supporter_inr {
	margin: 10px;
}
.supporter_inr > dl {
	margin-bottom: 15px;
}
.supporter_inr dt {
	font-weight: bold;
}

/*----------- attention -----------*/
#attention {
	margin: 100px auto;
	width: calc(100% - 20px);
	max-width: 1000px;
}
.attention_box {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.attention_box > p {
	width: calc(96% / 2);
	min-width: 120px;
	font-size: 0.8em;
	line-height: 1.2em;
	text-align: center;
}
.attention > div > p > img {
	width: 50%;
	margin: 5px 0;
	min-width: 120px;
}
.attention ul {
	margin: 10px 0;
}
.attention_txt li {
	list-style: circle;
	margin-left: 1em;
}
.attention_red {
	color: #dc143c;
}
.attention > p > a {
	font-weight: bold;
	color: #000;
	display: inline-block;
	margin-bottom: 10px;
	border-bottom: solid 1px #000;
}
.attention > p > a:hover {
	opacity: .7;
}
.ticket {
	margin: 10px 0;
	color: #b3881b;
}
.ticket > span {
	font-size: 0.9em;
	padding: 4px 8px;
	margin-right: 10px;
	border: solid 1px #b3881b;
	color: #b3881b;
}
.attention_small {
	font-size: 0.8em;
}
.attention_small li {
	text-indent: -1em;
	padding-left: 1em;
	list-style: none;
}
.attention_txt2 li {
	text-indent: -1em;
	padding-left: 1em;
	list-style: none;
}
.attention_txt2 > li::before {
	content: "◎";
}
.special_gift {
	display: inline-block;
	margin: 20px 0 5px;
	padding: 5px 10px;
	color: #fff;
	background: #dc143c;
}
.ticket_buy {
	margin-top: 20px;
}
.ticket_buy_fl {
	margin-top: 10px;
	display: flex;
}
.ticket_buy_txt {
	font-size: 1em;
}
.ticket_buy_txt > span {
	font-weight: bold;
	font-size: 0.9em;
	padding: 4px 8px;
	margin-right: 10px;
	border: solid 1px #000;
	white-space: nowrap;	
}
.border {
	border-bottom: solid 1px #333;
}
.pay_area {
	max-width: 200px;
	display: block;
	padding: 5px 10px;
	margin: 10px 0;
	border: solid 1px #000;
}
.pay_area > div {
	display: flex;
	justify-content: space-around;
	padding: 10px 0 0;
}

/*----------- Access -----------*/
#access > div {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
#access > div > div {
	width: 49%;
	display: block;
}
.map {
	max-width: 700px;
	margin: 0 auto 30px;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.access_title {
	max-width: 700px;
	font-size: 0.8em;
	text-align: center;
	margin: 10px auto 0;
	padding: 5px;
	background: #333;
	color: #fff;
}
.access_small {
	margin-bottom: 50px;
	text-align: left;
	font-size: 0.8em;
	line-height: 1.5;
}
@media screen and (max-width: 480px) {
	#access > div {
		display: block;
	}
	#access > div > div {
		width: 100%;
	}
}

/*----------- footer -----------*/
footer {
	margin-top: 50px;
}
.copy {
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding: 10px 0 15px;
	font-size: 0.8rem;
	line-height: 1.5rem;
	border-top: 0;
	color: white;
	background: #000;
}


/*====================================
ふわっアニメーション
===================================*/
.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime; /*アニメーションの名前*/
	-webkit-animation-duration: 1s;
	animation-duration: 1s; /*アニメーションの実行時間*/
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards; /*アニメーション後、要素が表示されたままにする*/
}
@-webkit-keyframes fadeUpAnime {
	0% {
		opacity: 0; /*非表示*/
		-webkit-transform: translateY(100px);
		transform: translateY(100px); /*縦方向に100pxずらす*/
	}
	100% {
		opacity: 1; /*表示*/
		-webkit-transform: translateY(0);
		transform: translateY(0); /*元の位置*/
	}
}
@keyframes fadeUpAnime {
	0% {
		opacity: 0; /*非表示*/
		-webkit-transform: translateY(100px);
		transform: translateY(100px); /*縦方向に100pxずらす*/
	}
	100% {
		opacity: 1; /*表示*/
		-webkit-transform: translateY(0);
		transform: translateY(0); /*元の位置*/
	}
}
.fadeUpTrigger {
	opacity: 0; /*非表示*/
}

/*----------- slider -----------*/
.movie_area {
	overflow-y: auto;
	overflow-x: none;
	padding: 20px 10px 60px;
	background: #fff;
	height: 100vh;
}
.caption, .story {
	margin: 20px auto;
}
.cap_til_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.movie_title {
	font-size: 1.8rem;
	margin: 10px 0;
}
.movie_til_box {
	font-size: 1rem;
	background: #33C;
	margin: 0 3px;
	padding: 0 5px;
	border-radius: 3px;
	font-weight: bold;
	display: inline-block;
}
.movie_btn_fl {
	margin-top: 3px;
	display: flex;
	justify-content: center;
}
h3 > .movie_til_box {
	width: calc(100% - 20px);
	margin: 0 auto;
	vertical-align: middle;
}
.slider > div {
	height: auto;
	margin: 0 auto;
	position: relative;
}
.slider > div > ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	overflow: hidden;
	white-space: nowrap;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}
.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
}
.slider > div > ul > li {
	list-style: none;
	display: inline-block;
	scroll-snap-align: center;
	width: 100%;
	height: 100%;
}
.award_tag {
	margin-top: 5px;
	display: block;
	font-size: 0.9rem;
	line-height: 1.2rem;
	font-weight: bold;
	color: #191970;
}
.category {
	font-size: 1rem;
	line-height: 1.2rem;
	font-weight: bold;
}
.flag {
	margin: 0 5px 5px;
	display: flex;
}
.flag > img {
	width: 50px;
	border: solid 1px #ccc;
}
.flag > img:first-of-type {
	margin-right: 3px;
}
.flag > img:not(:first-of-type) {
	margin: 0 3px;
}
.s_txt {
	font-size: 0.7rem;
	line-height: 1.2rem;
}
.s_txt > a {
	font-size: 0.7rem;
	line-height: 1.2rem;
}
.cap_txt, .story_txt, .profile_txt {
	margin: 10px 0;
	font-size: 0.8rem;
}
.cap_txt, .story_txt {
	margin: 10px 0;
	font-size: 1rem;
}
.profile_fl {
	padding: 20px 0;
	display: flex;
}
.profile_img {
	width: 20%;
	max-width: 250px;
	margin: 0 auto;
}
.profile_fl > .profile_txt {
	width: calc(80% - 20px);
	margin: 0 0 0 20px;
}
.tag_area {
	margin: 5px 0;
}
.tag1 {
	display: inline-block;
	background: #33C;
	color: #fff;
	padding: 3px 10px;
	font-weight: bold;
	border-radius: 3px;
}
@media screen and (max-width: 480px) {
	.profile_fl {
		display: block;
	}
	.profile_img {
		width: 100%;
		max-width: 200px;
		margin: 0 auto 20px;
	}
	.profile_fl > .profile_txt {
		width: 100%;
		margin: 0;
	}
}
@media screen and (max-width: 480px) {
	.slider > div > ul {
		overflow-x: none;
		width: 100%;
		height: 200px;
	}
}
.slider .thumbs {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	font-size: 0;
}
.slider .thumbs li {
	display: inline-block;
	cursor: pointer;
	width: 25%;
	height: 60px;
	opacity: 0.5;
}
.slider .thumbs li.selected {
	opacity: 1;
}
.slider .thumbs img {
	width: 100%;
	object-fit: cover;
	padding: 0;
}
.first_box_red {
	font-size: 0.8em;
	background: #AD3034;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_blue {
	font-size: 0.8rem;
	background: #30318D;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_purple {
	font-size: 0.8rem;
	background: #6a3d9a;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_pink {
	font-size: 0.8rem;
	background: #D6336C;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_orenge {
	font-size: 0.8rem;
	background: #E07B17;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_green {
	font-size: 0.8em;
	background: #55B192;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
.first_box_gray {
	font-size: 0.8em;
	background: #555;
	color: #fff;
	margin: 0 3px;
	padding: 3px 10px;
}
@media screen and (min-width: 751px) {
	.movie_area {
		padding: 40px 60px 40px;
	}
	.movie_btn {
		width: calc((100% - 40px) / 2);
	}
	.movie_caption {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		gap: 30px;
	}
	.caption {
		width: 50%;
		margin: 0 auto 20px;
		box-sizing: border-box;
	}
	.story {
		width: 100%;
	}
}
@media screen and (min-width: 1080px) {
	.movie_btn {
		width: calc((100% - 40px) / 3);
	}
}

/* NEW バッジ(お知らせ一覧・トップページで投稿から10日以内の記事に表示) */
.new {
	margin: 0 5px;
	padding: 2px 5px;
	font-size: 0.8em;
	background: #ccb129;
	animation: blink 1s ease-in-out infinite alternate;
}
@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ==========================================================
   INFOMATION セクション
   ========================================================== */
.information_area {
	margin: 60px auto 0;
	padding: 40px 20px 60px;
	box-sizing: border-box;
	background-color: #f7f0e3;
	background-image: radial-gradient(#e8ddc4 1px, transparent 1px);
	background-size: 14px 14px;
}

.information_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1000px;
	margin: 40px auto 0;
}
@media screen and (min-width: 780px) {
	.information_grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* カード: 二重罫線風(外枠+内側にもう1本)にして画像のデザインに寄せる */
.information_card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid #b3881b;
	padding: 40px 24px 32px;
	box-sizing: border-box;
}
.information_card::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid #b3881b;
	pointer-events: none;
}

.information_card_title {
	display: block;
	height: 90px;
	width: auto;
	max-width: 100%;
	margin: 0 auto 16px;
}
@media screen and (max-width: 779px) {
	.information_card_title {
		height: 70px;
	}
}
.information_card_text {
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 20px;
	text-align: left;
}
.information_highlight {
	color: #dc143c;
}

/* 1・2枚目: 写真プレースホルダー */
.information_card_image {
	width: 100%;
	max-width: 340px;
	aspect-ratio: 4 / 3;
	background: #777;
	border-radius: 20px;
	overflow: hidden;
}
.information_card_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 3枚目: イラスト */
.information_card_illustration {
	max-width: 160px;
	margin: 0 auto 20px;
}
.information_card_illustration img {
	width: 100%;
	height: auto;
	display: block;
}

/* 3枚目: リンクボタン(グレー矢印) */
.information_link_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 340px;
	padding: 14px 20px;
	background: #6b6b6b;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	box-sizing: border-box;
	transition: 0.2s;
}
.information_link_btn::after {
	content: "";
	flex-shrink: 0;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #fff;
}
.information_link_btn:hover {
	opacity: 0.85;
}

/* 4枚目: 赤いピル型ボタン */
.information_price_badge {
	display: inline-block;
	padding: 12px 28px;
	background: #dc143c;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 999px;
	transition: 0.2s;
}
.information_price_badge:hover {
	opacity: 0.85;
}
/* ==========================================================
   ARCHIVE セクション(過去年度アーカイブ)
   ========================================================== */
.archive_area {
	max-width: 1000px;
	margin: 60px auto 0;
	padding: 40px 20px 60px;
	box-sizing: border-box;
	text-align: center;
}

.archive_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 14px;
	margin: 40px auto 0;
}

.archive_link {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	min-width: 88px;
	padding: 12px 18px;
	border: 1px solid #b3881b;
	border-radius: 999px;
	color: #333;
	font-weight: bold;
	font-size: 1rem;
	text-decoration: none;
	background: #fff;
	transition: 0.2s;
	box-sizing: border-box;
}
.archive_link_suffix {
	font-size: 0.75rem;
	font-weight: normal;
	margin-left: 2px;
}
.archive_link:hover {
	background: #b3881b;
	color: #fff;
}

@media screen and (max-width: 599px) {
	.archive_link {
		min-width: 76px;
		padding: 10px 14px;
		font-size: 0.9rem;
	}
}
/* ==========================================================
   Facebookページプラグイン埋め込み
   ========================================================== */
.fb {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;	
	margin: 100px 0;
}
.fb_embed {
	max-width: 500px;
	overflow-x: auto; /* 画面が狭い場合はスクロールで表示崩れを防ぐ */
}
.fb_embed iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
/* ==========================================================
   フロントページ右下固定の予約フォームボタン
   ========================================================== */
.fixed_reservation_btn {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 999;
	display: block;
	width: 90px;
	transform: rotate(-8deg);
	transition: 0.2s;
}
.fixed_reservation_btn img {
	display: block;
	width: 100%;
	height: auto;
}
.fixed_reservation_btn:hover {
	opacity: 0.85;
	transform: rotate(-8deg) scale(1.05);
}
@media screen and (min-width: 780px) {
	.fixed_reservation_btn {
		right: 24px;
		bottom: 24px;
		width: 120px;
	}
}
 