/*------------------------
シンエイフーズ
shineifoods.jp
2025-06-05
------------------------*/
@charset "UTF-8";

/*------------------------
A Modern CSS Reset
------------------------*/
/* Box sizing定義 */
*, *::before, *::after	{ box-sizing: border-box; }
/* デフォルト margin削除 */
body, 
h1, h2, h3, h4, h5, h6,
ul[class], ol[class], li,
figure, figcaption, blockquote, dl	{ margin: 0; }
/* デフォルト padding削除 */
ul[class], ol[class]	{ padding: 0; }
/* デフォルト body定義 */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.6;
}
/* class属性を持つul、ol要素のリストスタイル削除 */
ul[class], ol[class]	{ list-style: none; }
/* classを持たない要素はデフォルトのスタイル取得 */
a:not([class])	{ text-decoration-skip-ink: auto; }
/* img要素の扱いを簡単にする */
img	{ display: block; max-width: 100%; margin: auto; }
/* iframeも簡単に */
iframe	{ display: block; max-width: 100%; margin: auto; }
/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 
article > * + * { margin-top: 1em; }
*/
/* inputやbuttonなどのフォントは継承を定義 */
input, button, textarea, select	{ font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/*----------------------
Inview
----------------------*/
/*
.effect		{ overflow: hidden; }
*/
.ef-fade,
.ef-fade01,
.ef-zoom,
.ef-rotate	{ transition: .6s; }
.ef-fade:nth-child(even)	{ transition: .9s; }
.ef-fade:nth-child(3)	{ transition: 1.2s; }
.ef-fade	{ opacity: 0; transform: translate(0, 60px); -webkit-transform: translate(0, 60px); }
.fade		{ opacity: 1; transform: translate(0, 0); -webkit-transform: translate(0, 0); }
.ef-fade01	{ opacity: 0; }
.fade01		{ opacity: 1; }
.ef-zoom	{ transform: scale(0, 0); -webkit-transform: scale(0, 0); }
.zoom		{ transform: scale(1, 1); -webkit-transform: scale(1, 1); }
.ef-rotate	{ transform: rotateY(0deg); -webkit-transform: rotateY(0deg); }
.rotate		{ transform: rotateY(360deg); -webkit-transform: rotateY(360deg); }


/*----------------------
Customize
--------------------- */
html { scroll-behavior: smooth; }

body	{
	font-size: clamp(.9rem, 2vw, 1.2rem);
	font-family: sans-serif;
	color: #333;
/*
	background:rgba(255,255,255,1.0) url(bg_wave.svg) repeat-y 50% 50%;
	background-size: clamp(600px, 100vw, 2880px);
*/
}

a		{ text-decoration: none; }
a:hover	{ text-decoration: underline; }

table	{ border-collapse: collapse; }

/*----------------------
Form
----------------------
input[type="text"],
input[type="email"],
input[type="password"],
textarea	{ width: 100%; max-width: 800px; }

.submit,
.delete,
input[type="submit"] {
	margin: 1rem auto;
	padding: .6rem 1.2rem;
	color: #fff;
	cursor: pointer;
	border: none;
	border-radius: .2rem;
	background-color: #06c;
	transition: .3s;
	-webkit-appearance: none;
}
input[type="submit"]:hover { background-color: #39f; }

.submit	{ display: inline-block; color: #fff !important; }
.delete	{ display: inline-block; color: #fff !important; background-color: #c62; margin: .5em 0; }

.submit:hover	{ background-color: #39f; text-decoration: none; }
.delete:hover	{ background-color: #f60; text-decoration: none; }
*/

/*----------------------
※印つき<ul>、<ol>リスト
----------------------*/
ul.asterisk		{margin-top: 1em; }
ul.asterisk li	{padding-left: 1em; text-indent: -1em; }
ul.asterisk li:before { content: '※'; display: inline; }
ol.asterisk		{ counter-reset: number; }
ol.asterisk li:before { content: "※"counter(number)" "; counter-increment: number; }

/*----------------------
矢印つき<ul>リスト
----------------------*/
ul.arrow	{margin-top: 1em; }
ul.arrow li	{padding-left: 1em; text-indent: -1em; }
ul.arrow li:before { content: '\f138'; font-family: fontawesome; padding-right: .5em; opacity: .3; }

/*----------------------
ステップバー<ul>リスト
----------------------*/
ul.progressbar	{ position: relative; margin: 0; padding: 0; list-style-type: none; }
ul.progressbar	{ display: flex; flex-wrap: wrap; justify-content: space-between; }
ul.progressbar li	{ flex: 1; position: relative; text-align: center; color: #999; counter-increment: steps; }
ul.progressbar li:before	{
	content: counter(steps);
	width: 3em; aspect-ratio: 1/1; margin: auto;
	display: flex; align-items: center; justify-content: center;
	background-color: #F5F5F5;
	border-radius: 50%;
}
ul.progressbar li:after {
	content: '';
	position: absolute; top: 1.5em; left: -50%;
	width: 100%; height: 2px;
	background-color: #F5F5F5;
	z-index: -1;
}
ul.progressbar li:first-child:after { content: none; }
ul.progressbar li.active,
ul.progressbar li.complete	{ color: #0070BD; }
ul.progressbar li.active:before,
ul.progressbar li.complete:before { color: #FFF; background-color: #0070BD; }
ul.progressbar li.active:after,
ul.progressbar li.complete:after { background-color: #0070BD; }


/*----------------------
h*
----------------------*/
h1	{ color: #334; font-size: clamp(1.4rem, 8vw, 2.4rem); text-align: center; }
h2	{ color: #334; font-size: clamp(1.2rem, 6vw, 2.0rem); text-align: center; }
h3	{ color: #334; font-size: clamp(1.2rem, 4vw, 2.0rem); text-align: center; }
h4	{ color: #334; font-size: clamp(1.0rem, 3vw, 1.4rem); text-align: center; }
h5	{ color: #334; font-size: clamp(1.0rem, 3vw, 1.2rem); }

h2	{ padding: 10px; line-height: 1; color: #fff; background-color: #5e76a6; }
/*
h3	{ margin-bottom: 8px; padding-bottom: 4px; border-bottom: 3px solid #7d6e9299; }
h3.plain	{ padding-bottom: 0; border-bottom: none; }
*/

.bar	{ text-align: center; }
.bar:after	{ content: ''; display: block; margin: .5em auto 0; height: 1px; background-color: #333; }

.cbar	{ text-align: center; }
.cbar:after	{ content: ''; display: block; margin: .5em auto 0; height: 3px; background-color: #d2be96; border-radius: 1em; }
.cbar span	{ display: block; font-size: clamp(.6rem, 2vw, .9rem); font-weight: normal; letter-spacing: .25rem; }

.lbar	{ color: #333; padding: 5px 13px; border-left: 6px solid #679c; }

.bgbar	{ display: flex; align-items: center; gap: .5em; padding: 1em 0; }
.bgbar	{ color: #0068b4; background-color: transparent; }
.bgbar::before,
.bgbar::after	{
	content: '';
	flex: 1 0 auto;
	height: 10px;
	background-image: repeating-linear-gradient(135deg, #0068b4, #0068b4 1px, transparent 2px, transparent 5px);
	background-size: 7px 7px;
}


/*----------------------
	共通要素
--------------------- */
/*section:not([class])	{ background-color: rgba(255,255,255,1.0); }*/
/*section:not([class]):nth-child(odd)	{ background:rgba(255,255,255,1.0) url(bg_wave.svg) no-repeat 50% 50% / cover; }*/
/*section:not([class]):nth-child(even)	{ background-color: rgba(250,250,250,1.0); }*/
/*section:not([class]):nth-child(even)	{ background-color: rgba(245,250,255,.5); }*/
section:not([class]):nth-child(odd)	{ background-color: #ece9da7d; }

.inner {
	max-width: 1200px;
	margin: auto;
	padding: 2em 1em;
}
.inner > * + h2	{ margin-top: 4rem; }
.inner > h2 + *	{ margin-top: 2rem; }
.inner > * + h3	{ margin-top: 3rem; }
.inner > h3 + *	{ margin-top: 1rem; }
.inner > * + h4	{ margin-top: 3rem; }
.inner > h4 + *	{ margin-top: 1rem; }
.inner > * + h5	{ margin-top: 2rem; }
.inner > h5 + *	{ margin-top: 1rem; }
.inner > .cbar + *	{ margin-top: 3rem; }

.more	{ max-width: 280px; margin: 2rem auto 1rem; text-align: center; }
.more a	{ display: inline-block; padding: .5rem 2rem; border-radius: 3em; transition: .2s; }
/*.more a	{ font-size: 1rem; }*/
.more a	{ color: #0f3190; border: thin solid #0f319099; border-width: 2px; }
.more a:hover { transform: scale(1.1); text-decoration: none; }

.more.x2	{ max-width: none; display: flex; justify-content: center; gap: 1em; }

.morebtn	{ display: inline-block; padding: .5rem 1rem; }
.morebtn	{ color: #fff; background-color: #06c; border-radius: 3em; transition: .2s; }
.morebtn:hover { background-color: #039; text-decoration: none; }

.none	{
	padding: 0 !important;
	background: none !important;
	box-shadow: none !important;
}

.shadow	{ border-radius: .3em; box-shadow: 0 0 12px rgba(0,0,0,.1); }


/*----------------------
Grid
----------------------*/
.grid	{
	margin: 0;
	padding: 0;
	display: grid;
	grid-gap: 1.5rem;
	align-items: stretch;
	font-size: clamp(.9rem, 2vw, 1.0rem);
}
.grid		{ grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid.x2	{ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid.x4	{ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid .img	{ text-align: center; }

.grid > *	{
	list-style-type: none;
	position: relative;
	padding: 1rem;
	background-color: rgba(255,255,255,1);
	border-radius: .3em;
	box-shadow: 0 0 12px rgba(0,0,0,.1);
}
.grid.plain > *	{ padding: 0; background: none; box-shadow: none; }

/*----------------------
Flexbox
----------------------*/
.flex	{
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2em;
}
.flex > *	{ min-width: 280px; }
.flex.vt	{ align-items: start; }
.flex.rvs	{ flex-direction: row-reverse; }
.flex .img	{ flex: 1 0 auto; max-width: 50%; }
.flex.x2 > *	{ flex: 1 0 40%; }
.flex.x3 > *	{ flex: 1 0 30%; }

.flex .cph	{ margin: auto; max-width: 40%; }
.flex .cph img	{ margin: auto; width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 100em; }

.flex+.flex,
.flex+.grid,
.grid+.flex,
.grid+.grid	{ margin-top: 1.5rem; }

/*-- Flexbox ul or ol --*/
/*
.flex	{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.flex	{ margin: 0; padding: 0; list-style-type: none; }
.flex > *	{ flex: 1 0 40%; padding: .5em; box-shadow: 0 0 .5em rgba(0,0,0,.25); }
.flex a	{ display: block; text-decoration: none; transition: .2s; }
.flex a:hover	{ opacity: .9; }
.flex img	{ max-width: 100%; }
*/


.xs	{ font-size: .6rem; }
.s	{ font-size: .8rem; }
.m	{ font-size: 1rem; }
.lg	{ font-size: clamp(1.2rem, 3vw, 1.4rem); }
.xl	{ font-size: 1.5rem; }

.l	{ text-align: left;  }
.r	{ text-align: right; }
.c	{ text-align: center; }
.vt	{ vertical-align: top; }

.fl	{}
.fr	{}
.clr, .clear	{ clear: both; }

.caution{ color:#c00; }
.red	{ color:#e00; }
.date	{ color: #393; }
.url	{ color: #393; word-break: break-all; }

.indent	{ padding-left: 1em; text-indent: -1em; }

.marker,
.marker.yellow	{ background: linear-gradient(transparent 50%, #ffee99 50%); }	/* 黄色 */
.marker.lime	{ background: linear-gradient(transparent 50%, #99eecc 50%); }	/* 黄緑色 */
.marker.water	{ background: linear-gradient(transparent 50%, #99ccee 50%); }	/* 水色 */
.marker_pink	{ background: linear-gradient(transparent 50%, #ee99cc 50%); }	/* 桃色 */

/* アイコン付加 */
a[href$=".pdf"]:after	{ content: '\f1c1'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
a[href$=".docx"]:after,
a[href$=".doc"]:after	{ content: '\f1c2'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
a[href$=".xlsx"]:after,
a[href$=".xls"]:after	{ content: '\f1c3'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
a[href$=".zip"]:after	{ content: '\f1c6'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
a[href^="http"]:after	{ content: '\f08e'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
a[href^="mailto:"]:after{ content: '\f0e0'; font-family: fontAwesome; margin-left: .5em; opacity: .7; }
/* No Icon */
.no_icon:after {
	content: '' !important;
	margin-left: 0 !important;
}


/*----------------------
	Fit Center
----------------------*/
.fit-center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	max-width: 960px;
}

/*----------------------
レスポンシブ対応（横スクロール）
<div class="scroll-box">
	<table>〜</table>
</div>
----------------------*/
.scroll-x {
/*	white-space: nowrap;*/
	overflow-x: auto;
	overflow-y: hidden;
}

/*----------------------
レスポンシブ対応（横スクロール）
<div class="scroll-table">
	<table>〜</table>
</div>
----------------------*/
.scroll-table {
	overflow: auto;
	white-space: nowrap;
}

/*--------*/
table.solid		{ margin-left: auto; margin-right: auto; width: clamp(80px, 100%, 800px); }
table.solid th,
table.solid td	{ padding: .5em; border: 1px solid #ccc; }
table.solid th	{ background-color: #f2f6f999; color:#333; }
table.solid td	{ background-color: #ffff; overflow-wrap: break-word; }
table.solid .dc	{ white-space: nowrap; text-align: center; background-color: #f5ecd9; color: #666; font-size: smaller; }
table.solid .ng	{ color: #666; text-decoration: line-through; background-color: #f8f8f8; }
table.solid .none	{ height: 1.5em; border: none; }
table.solid .d	{ background-color:#f0f8ff; }
table.solid .e	{ background-color:#d0d8df; }
table.solid ul,
table.solid ol	{ margin: 0; padding-left: 1.5em; }

/*
table.solid th	{ padding: .5em; vertical-align: top; border: 1px solid #bbb; color:#333; }
table.solid td	{ padding: .5em; vertical-align: top; border: 1px solid #bbb; }
table.solid .ng	{ color:#666; text-decoration:line-through; background-color: #f8f8f8; }
table.solid .ec	{ white-space: nowrap; text-align: center; background-color: #f0f0f0; }
table.solid .dc	{ white-space: nowrap; text-align: center; background-color: #ffc; color: #975; }
table.solid .e	{ white-space: nowrap; background-color: #f0f0f0; }
table.solid .d	{ white-space: nowrap; background-color: #eee; }
*/

table.nline		{}
table.nline td	{ padding-right: .8em; vertical-align: top; }
table.nline .e	{ white-space: nowrap; background-color: #f0f0f0; }
table.nline .d	{ white-space: nowrap; background-color: #ddd; }

/*----------------------
画像・サムネイル表示
----------------------*/
.phbox_l,	.phbox_nl,
.phbox_r,	.phbox_nr	{
	margin-bottom:10px; padding:5px; text-align:center;
	color:#666; font-size:0.8em; line-height:1.5;
}
.phbox_l,	.phbox_nl	{ float:left; margin-right:10px; }
.phbox_r,	.phbox_nr	{ float:right; margin-left:10px; }

.phbox_l,	.phbox_r	{ background-color:#fff; border:1px solid #ccc; }

.phbox_l img,	.phbox_r img	{ border:0px solid #ccc; }
.phbox_nl img,	.phbox_nr img	{ border:0px solid #ccc; }

/*----------------------
画像ギャラリー（Thumbnails）
----------------------*/
.ph_gallery	{ margin: 2em auto; }
.ph_gallery	{ display: flex; flex-wrap: wrap; gap: 1em; }
.ph_gallery > *	{ text-align: center; color:#666; font-size: .8em; line-height: 1.5; }
.ph_gallery > *	{ flex: 1 0 30%; }
/*.ph_gallery > *:nth-child(1)	{ flex-basis: 100%; }*/
/*.ph_gallery img	{ display: block; padding: clamp(.5rem, 3vw, 1rem); box-shadow: 0 0 .75em #3333; }*/
.ph_gallery > *	{ padding: clamp(.5rem, 3vw, 1rem); background-color: #fff; box-shadow: 0 0 .75em #3333; }
.ph_gallery img	{ display: block; }
.ph_gallery p	{ margin-bottom: 0; }
.ph_gallery .none	{ padding: 0; color: inherit; background: none; box-shadow: none; overflow-wrap: break-word; }

/*----------------------
マップ埋込
----------------------*/
.maps_embed	{}
.maps_embed iframe	{ width: 100%; }

/*----------------------
お問い合わせ
----------------------*/
.form	{ max-width: 800px; margin: auto; }
.form form	{ display: block; margin: 2em auto; }
.required label:after	{ display: inline-block; }
.required label:after	{ content: '＊'; margin-left: .5rem; font-size: .9rem; font-weight: normal; color: #e66; }

/*----------------------
Header
----------------------*/
.header	{
	background: #652250ee url(_japanese-paper_3.jpg) no-repeat 50% 50% / 100%;
	width: 100%;
	z-index: 10;
}
.header .inner	{ position: relative; min-height: 90px; padding: 0; }
.header .inner	{ display: flex; justify-content: space-between; align-items: center; }
.header .logo	{ padding: 2vw 1vw; }
.header .logo a	{
	display: block;
	width: clamp(200px, 60vw, 320px);
	aspect-ratio: 4/1;
	background-image: url(logo4x1.png);
	background-size: cover;
	text-indent: -9999px;
	transition: .2s;
}
.header .inquiry a	{ display: none; }

/*----------------------
Header Fixed
----------------------*/
.header.fixed { position: sticky; top: 0; }
.header.fixed {
	background-image: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	/*-webkit-backdrop-filter: saturate(180%) blur(20px);*/
	/*backdrop-filter: saturate(180%) blur(20px);*/
}
.header.fixed .logo	{ padding: 0 1vw; }
.header.fixed .logo a	{ width: clamp(180px, 40vw, 240px); }


/*----------------------
PC Navigation
----------------------*/
.nav-pc { display: none; }
.nav-pc {
	position: relative;
	padding: .5em;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 2em;
	z-index: 2;
}
.nav-pc ul	{ margin: 0 auto; padding: 0; max-width: 1000px; list-style-type: none; }
.nav-pc ul	{ display: flex; justify-content: space-around; }
.nav-pc li	{ flex: 1; border-right: 1px solid rgba(255, 255, 255, .7); }
.nav-pc li:last-child	{ border-right: none; }
.nav-pc a	{ display: block; padding: .5em; color: #fff; text-align: center; }
.nav-pc a:hover	{ background-color: #e83; }
.nav-pc .fa	{ display: block; margin: .1em; font-size: 2.2em; opacity: .8; }

/*----------------------
Mobile Navigation
----------------------*/
/* .dr-open	{ position: absolute; top: 2vw; right: 2vw; z-index: 2; } */
.dr-open	{
	display: block;
	aspect-ratio: 1/1;
	width: 15vw; max-width: 70px;
	margin: auto;
	text-indent: -9999px;
	background: url(menu@2x.png) no-repeat 50% 50% / contain;
	border-radius: 3px;
	cursor: pointer;
	transition: .2s;
}
.dr-open:hover	{ transform: scale(1.1); }
.dr-close,
.dr-content	{ position: fixed; width: 100vw; height: 100vh; transition: .3s; }
.dr-close	{ top: 0; left: 0; background-color: #000; z-index: 99; }	/* 閉じる用の薄黒カバー（全体） */
.dr-content { width: 80%; max-width: 400px; padding: 20px; background-color: #653457; z-index: 9999; overflow: auto; }	/* ドロワーコンテンツ（最前面） */
.dr-content label	{ display: block; padding: 1em; color: #fff; cursor: pointer; }
.dr-content a	{ display: block; padding: 1em; color: #fff; border-bottom: thin solid #fff3; transition: .2s }
.dr-content a:hover	{ background-color: #0002; text-decoration: none; }
.dr-content >:nth-child(2)	{ border-top: thin solid rgba(255,255,255,.3); }
.dr-content .fa	{ margin-right: .5em; opacity: .5; }
.dr-content .close-x	{ display: block; margin: 0; padding: 0 0 20px; font-size: clamp(10px,10vw,32px); text-align: right; color: #fff; }
.dr-content .close-x:before	{ content: '✕'; cursor: pointer; }
.dr-unshown	{ display: none; }	/* チェックボックス等は非表示に */
/* 下階層 */
.dr-content ul	{ margin: 0; padding: 0; display: block; }
.dr-content ul	{ background-color: rgba(0, 0, 0, .1); border-bottom: thin solid rgba(255,255,255,.3); }
.dr-content li	{ padding-left: 2em; line-height: 1.0; list-style-type: none; }
.dr-content li	{ height: 0; overflow: hidden; transition: .4s; }
/* 初期値 */
.dr-close	{ display: none; opacity: 0; }
.dr-content	{ top: 0; right: 0; transform: translateX(105%); }	/* 右に隠しておく */
/* .dr-content	{ top: 0; left: 0; transform: translateX(-105%); }	/* 左に隠しておく */
/* チェック→カバー＆メニュー表示（スライド） */
#nav-input:checked ~ .dr-close { display: block; opacity: .7; }
#nav-input:checked ~ .dr-content {
	transform: translateX(0%);
	box-shadow: -6px 0 25px rgba(0,0,0,.5);
}
/* SNS Icon */
.dr-content .sns	{ position: initial; display: flex; background-color: transparent; }
.dr-content .sns li	{ padding: 1rem 0; line-height: initial; }
.dr-content .sns li	{ height: auto; }
.dr-content .sns a	{ display: flex; padding: 0; }


/* Basic code - don't modify */
#nav { display: block; margin: 0; padding: 0; position: relative; }
#nav li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
#nav a { display: block; }
#nav ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
#nav ul li { float: none; }
#nav ul ul { top: 0; }

/* Essentials - configure this */
#nav a			{ padding:14px 0 0 10px; color:#ccc; font-size:14px; line-height:1.0; text-align:center; border-right:1px solid #666; }

/* Everything else is theming */
#nav ul { top: 40px; }
#nav ul a {  }
#nav ul a:hover { text-decoration:none; background-color: #960; }




#pankz	{ min-height: auto; color: #666; font-size: .8em; background-color: #ece9dad9; }
#pankz .inner	{ padding: 1em; text-indent: 1.5em; }


/*----------------------
Page Title
----------------------*/
/*
#main	{ background-color: #3971e0; }
#main	{ background-color: #19caad; }
#main	{ background-color: #5bd7c3; }
*/
#pgtitle	{ height: clamp(200px, 40vh, 468px); }
#pgtitle	{ position: relative; background-color: #444; }
#pgtitle	{ display: flex; align-items: center; justify-content: center; text-align: center; }
/*#pgtitle	{ background: url(../images/lighthouse-5525698_1920.jpg) no-repeat 50% 45% / cover; }*/
#pgtitle	{ background: url(../images/2305913_m.jpg) no-repeat 50% 40% / cover; }
/*
#pgtitle:before	{ position: absolute; width: 100%; height: 100%; content: ''; }
#pgtitle:before	{ background: url(./bg_dot.png) repeat 0% 0%; }
#pgtitle:before {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
*/
#pgtitle .inner	{ padding: 1em; }
#pgtitle h1	{ color: #fff; font-size: clamp(1.4rem, 8vw, 3.4rem); z-index: 2; }
#pgtitle h1	{ text-shadow: 0px 0px 8px #036; }
#pgtitle span	{ display: block; font-size: 40%; font-weight: normal; letter-spacing: .1rem; }
#pgtitle img	{ display: block; margin: auto; width: 100%; max-width: 750px; }

#pgtitle.pg-township{ background: url(../images/img39.jpg) no-repeat 50% 40% / cover; }
#pgtitle.pg-sdgs	{ background: url(../images/img65.jpg) no-repeat 50% 50% / cover; }
#pgtitle.pg-recruit	{ background: url(../images/img30.jpg) no-repeat 50% 50% / cover; }

/*----------------------
Footer
----------------------*/
.footer	{ display: flex; flex-direction: column; align-items: center; }
.footer	{ position: relative; background: url(../images/lighthouse-5525698_1920.jpg) no-repeat 50% 100% / cover; }
.footer	{ background-attachment: fixed; }
.footer:before	{ position: absolute; width: 100%; height: 100%; content: ''; }
/*#pgtitle:before	{ background: url(./bg_dot.png) repeat 0% 0%; }*/
.footer:before {
	background-color: #2203;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.footer .aboutus	{ height: clamp(150px, 30vh, 300px); }
.footer .aboutus	{ display: flex; align-items: center; justify-content: center; text-align: center; }
.footer .more	{ margin: auto; z-index: 1; }
.footer .more a	{ color: #fff; font-size: 120%; border: thin solid #fff9; }
/*
.footer .aboutus .picture	{ flex: 1 0 30%; background: #568 url(../images/itc.jpg) no-repeat 50% 50% / cover; }
.footer .aboutus .picture img	{ display: none; }
.footer .aboutus .profile	{ flex: 1 0 auto; }
.footer .aboutus .profile span	{ display: inline-block; }
.footer .aboutus .access	{ flex: 1 0 30%; }
.footer .aboutus .access iframe	{ min-height: 280px; }
*/
.footer .cprt	{
	width: 100%;
	line-height: 5;
	font-size: 70%;
	font-family: arial;
	text-align: center;
	color: #fff9;
	background-color: #4a2033;
	z-index: 1;
}


/*-----------------------------
	Page Top
-----------------------------*/
#pagetop { position: fixed; bottom: 1rem; right: 1rem; z-index: 99; }
#pagetop {
	width: 4rem;
	aspect-ratio: 1/1;
	line-height: 1;
	font-size: 12px;
	text-align: center;
	color: white;
	background-color: orange;
	border-radius: 3em;
}
#pagetop	{ display: flex; flex-flow: column; justify-content: center; align-items: center; }
/*#pagetop	{ opacity: .6; }*/
#pagetop a	{ display: block; width: 100%; padding: .5em 0 1em; color: inherit; text-decoration: none; }
#pagetop a:before { content: '\f106'; display: block; font-size: 200%; font-family: fontawesome; }







/* for SmartPhone Landscape (横) */
@media screen and (min-width:480px) { 

	.dr-open		{ top: 3.5vw; }

	#footer .sitemap	{ padding: 2em 1em; }
	#footer .sitemap ul	ul { display: block; }
	#footer .sitemap ul ul li	{ margin-right: 0; }
}


/* for Tablet */
@media screen and (min-width:768px) { /* and ( max-width:1024px) { */

	h2	{ padding: 30px 20px; }

	.inner { padding: 2em 1em; }

	.scroll-table { overflow: initial; white-space: normal; }

	.fl	{ float: left; }
	.fr	{ float: right; }

	.mbo	{ display: none; }
	.pco	{ display: initial; }

	.flex	{ gap: 3em; }
	.ph_gallery	{ gap: 2em; }

	.ctrl	{ display: block; }

	.headline .date	{ padding: 0 1em; }

	.dr-open	{ top: 50px; right: 10px; }

	#footer .sitemap	{ justify-content: space-around; }
}


/* for PC */
@media screen and (min-width:1000px) {

	.inner { padding: 3em 1em; }

	#footer .sitemap	{ padding: 3em 1em; }
}

