@charset "UTF-8";
/* ====================
	base
==================== */
* {
	box-sizing: border-box;
}

body {
	color: #333;
	font-family: 'Kosugi Maru', sans-serif;
}

img {
	vertical-align: bottom;
}

a:link,
a:visited {
	color: #0ac;
	text-decoration: none;
}

a:hover,
a:active {
	color: #0ac;
	text-decoration: underline;
}

p, dl, ol, ul {
	margin-bottom: 0;
}

/* ====================
	common
==================== */
#wrapper {
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
}

header {
	display: flex;
	align-items: center;
	position: fixed;
	background: #000;
	max-width: 1000px;
	width: 100%;
	top: 0;
	z-index: 1;
}

header h1 {
	margin: 0;
}

header h1 img {
	width: 192px;
	height: 60px;
}

header nav {
	width: 100%;
}

header nav ul {
	display: flex;
	justify-content: flex-end;
}

header nav ul li {
	width: 40px;
}

header nav ul li#hover {
	background: #999;
}

header nav ul li a {
	display: block;
	font-size: 18px;
	text-align: center;
	line-height: 30px;
}

header nav ul li a span {
	display: block;
	font-size: 14px;
	line-height: 15px;
}

header a:link,
header a:visited,
header a:hover,
header a:active,
a.btn:link,
a.btn:visited,
a.btn:hover,
a.btn:active {
	color: #fff;
}

main {
	margin: 75px 15px 0;
}

main h2 {
	padding-left: 10px;
	border-left:10px solid #c30;
	background: #eabd00;
	font-size: 150%;
	line-height: 2em;
}

main div.content {
	margin-bottom: 15px;
}

#page_top {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 0;
	bottom: -50px;
	background: #c33;
	opacity: 0.6;
}

#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top a:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

footer {
	background: #000;
	color: #fff;
	font-size: 90%;
	text-align: center;
	line-height: 30px;
}

/* ====================
	汎用
==================== */
.flexBox {
	display: flex;
}

.margin_top_0 {
	margin-top: 0;
}

.xs_display_block {
	display: block;
}


/* ====================
	index.html
==================== */
img#key_visual {
	margin: 60px 0 15px;
	max-width: 1000px;
	width: 100%;
	height: 100%;
}

div#share ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

div#share li {
	margin-left: 10px;
	margin-right: 10px;
}

div#share_title {
	text-align: center;
}

.share_icon {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	line-height: 30px;
}

a.share_icon:link,
a.share_icon:visited,
a.share_icon:hover,
a.share_icon:active {
	color: #fff;
}

.bg_twitter {
	background-color: #00acee;
}

.bg_facebook {
	background-color: #2066b1;
}

.bg_line {
	overflow: hidden;
	background-color: #fff;
	font-size: 35px;
}

.bg_line img {
	width: 30px;
	height: 30px;
}

.bg_mail {
	background-color: #2f70be;
}

/* ====================
	menu.html
==================== */
#carousel_photo {
	margin: 0 auto;
	border: 1px solid #999;
	width: 300px;
	height: 300px;
}

#carousel_photo img {
	width: 100%;
	height: 100%;
	text-align: center;
}

#menu td {
	text-align: right;
}

#menu th ul {
	padding-left: 2rem;
	list-style: disc;
}

/* ====================
	アコーディオン
==================== */
/*ボックス全体*/
.accbox {
    margin: 15px 0;
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    font-weight: bold;
    background: #fc9;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    padding-right: 8px;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #fff;
    opacity: 1;
}

.accbox .accshow p {
	margin: 15px 10px
}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}

/* ====================
	access.html
==================== */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 75%;
	position: relative;
}

.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

#entrance img {
	max-width: 1000px;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 481px) {
	/* ====================
		common
	==================== */
	header h1 {
		margin-left: 20px;
	}

	header nav ul li {
		margin-right: 20px;
	}

	/* ====================
		汎用
	==================== */
	.xs_display_block {
		display: inline;
	}

	.xs_display_block:before {
		content: " ";
	}

}

@media screen and (min-width: 769px) {
	/* ====================
		menu.html
	==================== */
	div#menu_header {
		display: flex;
		justify-content: space-between;
	}

	div#album {
		margin-left: 20px;
	}

	.menu_group {
		width: 50%;
		margin-left: 5px;
		margin-right: 5px;
	}

	#carousel_photo {
		width: 400px;
		height: 400px;
	}

	/* ====================
		アコーディオン
	==================== */
	.accbox {
		display: flex;
	}

	.accbox label {
		cursor :default;
	}
	
	.accbox label:before {
		content: "";
	}

	.accbox .accshow {
		height: auto;
		padding: 5px;
		background: #fff;
		opacity: 1;
	}

	.cssacc:checked + label:before {
		content: "";
	}
}