<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&amp;family=Noto+Sans+JP&amp;family=Noto+Serif+JP&amp;display=swap');
/*=========================================================
■ 八幡平市観光協会CSS
■ Copyright(c) スカヘルネット
■ https://isp.sukaheru.net/
=========================================================*/
/* Base
------------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
}
body	{
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	font: 16px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,
div,p,dl,dt,dd,
ul,ol,li,
figure,form {
	margin: 0;
	padding: 0;
	font-size: 1em;
}
/* iframe ----------------------*/
iframe {
	width: 100%;
	border: none;
}
.ifrm-container {
	display: inline-block;
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling:touch;
	margin: auto;
}
.ifrm-container iframe {
	display: block;
	width: 100%;
	height: 100%;
}
/* link --------------------*/
a {
	color: #06f;
	text-decoration: none;
	transition: 0.5s;
	outline: none;
}
a:hover	{
	color: #f60;
	text-decoration: underline;
}
a.btn {
	display: inline-block;
	background: #80b642;
	border-radius: 4px;
	padding: 6px 10px;
	text-align: center;
	font-size: 0.9em;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}
a.btn:hover {
	background: #5E8631;
}
/* pagetop */
.pagetop {
	position: fixed;
	bottom: 18px;
	right: 18px;
	display: none;
}
.pagetop a {
	z-index: 110;
	display: inline-block;
	background: rgba(37,37,170,0.75);
	border-radius: 24px;
	width: 100px;
	padding: 8px;
	text-align: center;
	font-size: 0.9em;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.pagetop a::before {
	content: "▲";
	margin-right: 5px;
}
.pagetop a:hover {
	color: yellow;
	text-decoration: none;
}

/* text --------------------*/
.com	{ padding: 0 10px;	overflow: hidden; }
*+p	{ margin-top: 10px; }
.c	{ text-align: center; }
.r	{ text-align: right; }
.fl	{ float: left; }
.fr	{ float: right; }
.red	{ color: red; }
.blue	{ color: blue; }
.green	{ color: green; }
.pink	{ color: pink; }
.orange	{ color: orange; }
.purple	{ color: purple; }
.grey	{ color: grey; }
.brown	{ color: brown; }
.big	{ font-size: 1.25em; }
.small	{ font-size: 0.85em; }
[data-mark]		{ position: relative;	padding-left: 20px; }
[data-mark]::before	{ content: attr(data-mark);	position: absolute;	left: 0; }
.tel::before	{ content: "TEL."; }
.fax::before	{ content: "FAX."; }
.eml::before	{ content: "E-mail:"; }

/* list --------------------*/
ul {
	list-style-type: none;
}

/* image --------------------*/
img {
	max-width: 100%;
	width: auto;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
img.fl {
	margin-right: 10px;
	margin-bottom: 5px;
}
img.fr {
	margin-left: 10px;
	margin-bottom: 5px;
}
.noimage {
	position: relative;
	max-width: 600px;
	padding-top: 75%;
	border: 1px solid #ccc;
	background: #fff;
}
.noimage::before {
	content: "No Image";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	color: #ccc;
	font-weight: bold;
}

/* table --------------------*/
table {
	width: 100%;
	border: 1px solid #acacac;
	border-collapse: collapse;
	margin: 0 auto;
}
table th,
table td {
	border: 1px solid #acacac;
	padding: 5px;
}
table th {
	background: #9ae292;
}
.scroll-table {
	overflow: auto;
	white-space: nowrap;
}

/* box / flexbox / grid ----------------------------------------*/
/* box ---------*/
.box {
	margin: auto;
	overflow: hidden;
}
*+.box {
	margin-top: 20px;
}

/* flexbox ---------*/
[class*="column"] {
	display: flex;
	flex-wrap: wrap;
}
[class*="column"]&gt;* {
	margin: 0;
	padding: 3px;
}
.column6&gt;*	{ width: calc((100% - 0.01px) / 6);	max-width: calc((100% - 0.01px) / 6); }
.column5&gt;*	{ width: calc(100% / 5);		max-width: calc(100% / 5); }
.column4&gt;*	{ width: calc(100% / 4);		max-width: calc(100% / 4); }
.column3&gt;*	{ width: calc((100% - 0.01px) / 3);	max-width: calc((100% - 0.01px) / 3); }
.column2&gt;*	{ width: calc(100% / 2);		max-width: calc(100% / 2); }

/* grid ---------*/
.grid {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto auto;
	display: -ms-grid;			/* IE11用 */
	-ms-grid-columns: auto auto auto;
	-ms-grid-rows: auto auto auto;
}


/* wrapper / レイアウト
------------------------------------------------------------------------------*/
#wrapper {
/*	max-width: 1000px;
	width: 100%;
	min-width: 900px;*/
	width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 100vh;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-width: 0 1px;
	border-style: solid;
	border-color: #acacac;
}
header {
	position: relative;
	width: 100%;
}
.contents {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	margin: 0 auto 15px;
}
.main {
	position: relative;
	flex: 1 1 auto;
	margin: 0 auto;
	max-width: 930px;
	width: 100%;
	padding: 0 20px 20px;
}
.sidebar {
	width: 460px;
	padding: 0 10px 20px;
	margin-top: 0;
}
footer {
	margin-top: auto;
}


/* breadclumb --------------------*/
.breadcrumb {
	margin: 5px 2%;
	font-size: 0.8em;
}
.breadcrumb li {
	display: inline;
	margin-bottom: 4px;
	line-height: 1.4;
}
.breadcrumb li:not(:last-of-type)::after {
	content: "＞";
	margin-left: 5px;
}

/* header
------------------------------------------------------------------------------*/
header {
	display: flex;
	align-items: center;
/*	justify-content: space-between;*/
	height: 67px;
	margin: 0;
	border-top: 3px solid #006400;
	background: #424d01;
	background: linear-gradient(to right, #424d01, #95a331);
}
/* ロゴ ----------*/
header h1 {
	margin-left: 24px;
	margin-right: auto;
}
/* ロゴ ----------*/
header h1 img {
	width: auto;
	height: 38px;
}
/* キャッチコピー ----------*/
header .catch {
	display: none;
	margin-left: 18px;
/*	margin-right: auto;*/
}
/* ページリンク ----------*/
header .language {
	display: flex;
	margin-left: 20px;
	margin-right: 24px;
}
header .language li {
	margin-left: 6px;
	border: 2px solid #fff;
	width: 50px;
	height: 40px;
}
header .language li a {
	display: flex;
	justify-content: center;
	align-items: center;
/*	width: calc(100% / 0.8);*/
	width: 100%;
	height: 100%;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
/*	transform: scale(0.8,1);
	transform-origin: top left;*/
}
/* 検索 ----------*/
header .search {
	margin: 0 10px 0 5px;
}
header .search input[type="text"] {
	width: 150px;
	margin-right: 2px;
	padding: 3px;
}

/* main navi ----------------------------------------------------*/
.main-navi {
	width: 100%;
	margin: 0 auto 15px;
}

/* first navi ----------*/
.main-navi .primary {
	background: #000;
}
.main-navi .primary ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
}
.main-navi .primary ul li {
	width: calc((100% - 0.01em) / 6);
	text-align: center;
	padding: 1px;
}
.main-navi .primary ul li img {
	width: 100%;
}

/* second navi ----------*/
.main-navi .secondary {
	with: 100%;
	background: #565B00;
	background: linear-gradient(to bottom, #3e4000, #5C6200 30%, #5C6200 75%, #3e4000);
}
.main-navi .secondary ul {
	display: flex;
	justify-content: center;
	max-width: 980px;
	width: 100%;
	margin: auto;
/*	background: #565B00;
	background: linear-gradient(to bottom, #3e4000, #5C6200 30%, #5C6200 75%, #3e4000);*/
}
.main-navi .secondary ul li {
	position: relative;
	width: 97px;
	height: 40px;
	padding-left: 3px;
}
.main-navi .secondary ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	bottom: 7px;
	width: 3px;
	background: rgba(157,166,0,0.5);
	border-radius: 20%;
	box-shadow: 2px 0 1px rgba(0,0,0,0.45) inset;
}
.main-navi .secondary ul li:last-child {
	padding-right: 7px;
}
.main-navi .secondary ul li:last-child::after {
	content: "";
	position: absolute;
	right: 0;
	top: 7px;
	bottom: 7px;
	width: 3px;
	background: rgba(157,166,0,0.5);
	border-radius: 20%;
	box-shadow: 2px 0 1px rgba(0,0,0,0.45) inset;
}
.main-navi .secondary ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% / 0.95);
	height: 100%;
	font-size: 0.8em;
	font-family: 'Noto Sans JP';
	color: #BEC527;
/*	font-weight: bold;*/
	text-decoration: none;
	transform: scale(0.95,1);
	transform-origin: top left;
}
.main-navi .secondary ul li a:hover {
	color: #fff;
}

/* contents
------------------------------------------------------------------------------*/
.breadcrumb+.contents {
	margin-top: 15px;
}

/* コンテンツバナー -----------------------*/
.contents-banner {
	width: calc(100% - 7px);
	margin: 10px auto 3px;
	text-align: center;
}

/* ページタイトル ---------------------*/
h2 {
	position: relative;
	margin: 0 auto 10px;
	font-size: 1.8em;
	font-family: 'Kosugi Maru';
	color: #178913;
	font-weight: normal;
	line-height: 1.2;
}
h2[data-title] {
	background: linear-gradient(to bottom, #178913, #178913 40%, #89A203 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255,255,255,0.0);
	text-shadow: 2px 1px 2px rgba(23,137,19,0.6);
}
h2[data-title]::before {
	position: absolute;
	content: attr(page-title);
	left: 0;
	top: 0;
	background: linear-gradient(to bottom, #178913, #178913 40%, #89A203 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255,255,255,0.0);
	color: rgba(0,0,0,0);
	text-shadow: none;
}
@media all and (-ms-high-contrast: none) { /* IE10,11用 */
	h2[data-title]	{
		background: none;
		color: #178913;
	}
	h2[data-title]::before	{
		background: none;
	}
}
/* ページサブタイトル ---------------------*/
h3 {
	position: relative;
	margin: 0 auto 5px;
	padding: 4px;
	font-size: 1.5em;
	color: #178913;
}
h3[data-sub-title] {
	font-family: 'Kosugi Maru';
	font-size: 1.5em;
	color: #66A500;
	font-weight: normal;
	text-shadow: 2px 2px 1px rgba(23,137,19,0.4);
}

/* ページイメージ ---------------------*/
.page-image {
	margin: 0 auto  30px;
	width: 98%;
	text-align: center;
}

/* sidebar
------------------------------------------------------------------------------*/
.sidebar ul.list {
	border-collapse: collapse;
	width: 100%;
	margin: auto;
	overflow: hidden;
}
.sidebar ul.list li {
	border-top: 1px solid #6c7a1b;
	padding: 0;
}
.sidebar ul.list li:last-of-type {
	border-bottom: 1px solid #6c7a1b;
}
.sidebar ul.list li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;
	font-size: 0.9em;
	color: #414d01;
	line-height: 1.3;
	text-decoration: none;
}
.sidebar ul.list li a:hover {
	background: #f5f8e4;
}
.sidebar ul.list li a span {
	width: 100%;
	font-size: 0.7rem;
}
.sidebar *+ul.list {
	margin-top: 20px;
}
.sidebar *+.box {
	margin-top: 15px;
}

/* footer
------------------------------------------------------------------------------*/
footer {
	margin-top: auto;
	width: 100%;
}

/* copyright --------------------*/
footer .cr-com {
	width: 100%;
	margin: 4px auto;
	text-align: center;
	font-size: 0.75em;
	color: #5f5f5f;
}
footer .copyright {
	width: 100%;
	background: #008000;
	text-align: center;
	padding: 7px 0 5px;
	font-size: 0.85em;
	color: #fff;
	line-height: 1;
}
footer .copyright::before {
	content: "Copyright";
	margin-right: 5px;
}
footer .copyright::after {
	content: "All Rights reserved.";
	margin-left: 5px;
}


/* タブレット版
==============================================================================*/
@media screen and (max-width:800px) {
	body {
	}

	/* レイアウト
	------------------------------------------------------------------------------*/
	#wrapper {
		width: 100%;
		border: 0;
	}
	.contents {
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.sidebar {
		width: 98%;
		margin: 0 auto;
	}

	/* breadclumb --------------------*/
	.breadcrumb {
		font-size: 0.8em;
	}

	/* header
	------------------------------------------------------------------------------*/
	header {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		background: #F5F8E4;
		border-bottom: 1px solid #E0E3CC;
		height: 70px;
		padding-left: 13px;
	}
	header h1 {
		order: 2;
		margin-left: 0;
	}
	header h1 img {
		width: auto;
		height: 34px;
	}
	header .catch {
		order: 1;
		margin: -10px 0 3px;
	}
	header .catch img {
		width: auto;
		height: 19px;
	}
	header .language {
		display: none;
	}
	/* main navi ----------------------------------------------------*/
	/* second navi ----------*/
	.main-navi .secondary {
		background: #fff;
		border-bottom: 1px solid #acacac;
	}
	.main-navi .secondary ul {
		flex-wrap: wrap;
	}
	.main-navi .secondary ul li {
		position: relative;
		width: calc(100% / 5);
		height: 35px;
		padding: 0;
	}
	.main-navi .secondary ul li:hover {
		background: #424d01;
	}
	.main-navi .secondary ul li:nth-of-type(-n+5) {
		border-bottom: 1px solid rgba(0,0,0,0.25);
	}
	.main-navi .secondary ul li:not(:nth-of-type(5n)) {
		border-right: 1px solid rgba(0,0,0,0.25);
	}
	.main-navi .secondary ul li::before,
	.main-navi .secondary ul li:last-child::after {
		display: none;
	}
	.main-navi .secondary ul li a {
		font-size: 0.8em;
		color: #5C6200;
	}

	/* contents
	------------------------------------------------------------------------------*/
	h2 {
		font-size: 1.5em;
	}
	h2[data-title] {
		-webkit-text-fill-color: inherit;
		color: #178913;
		text-shadow: none;
	}
	h2[data-title]::before {
		display: none !important;
	}
	h3[data-sub-title] {
		font-size: 1.35em;
		font-weight: bold;
		text-shadow: none;
	}

	/* footer
	------------------------------------------------------------------------------*/
	/* copyright --------------------*/
	footer .copyright::before,
	footer .copyright::after {
		display: none;
	}
}

@media screen and (max-width:680px) {
	/* first navi ----------*/
	.main-navi .primary ul {
		flex-wrap: wrap;
	}
	.main-navi .primary ul li {
		max-width: calc((100% - 0.01px) / 3);
		width: calc((100% - 0.01px) / 3);
	}
}


/* スマートフォン版
==============================================================================*/
@media screen and (max-width:500px) {
	body {
		font-size: 15px;
	}

	/* wrapper / レイアウト
	------------------------------------------------------------------------------*/
	.main {
		padding: 0 10px 20px;
	}

	/* link --------------------*/
	/* pagetop */
	.pagetop {
		position: fixed;
		bottom: 0;
		right: 0;
		display: none;
	}
	.pagetop a {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		background: rgba(0,0,0,0.5);
		border-radius: 0;
		width: 60px;
		height: 50px;
		line-height: 1;
	}
	.pagetop a::before {
		content: "▲";
		width: 100%;
		margin: 0;
	}

	/* header
	------------------------------------------------------------------------------*/
	header {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		height: 60px;
		margin: 0 auto;
		padding-left: 10px;
	}

	header h1 img {
		height: 28px;
	}
	header .catch img {
		height: 16px;
	}

	/* main navi ----------------------------------------------------*/
	.main-navi .primary,
	.main-navi .secondary {
		display: none;
	}

	/* contents
	------------------------------------------------------------------------------*/
	h2 {
		font-size: 1.3em;
	}

	/* footer
	------------------------------------------------------------------------------*/
	/* copyright --------------------*/
	footer .copyright {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 50px;
	}

}
</pre></body></html>