@charset "UTF-8";
/* Scss Document */
/* 変数 */
/* color */
/* 色、ボタン、文字、段落、汎用パーツ */
.green {
	color: #00a199;
}

.blue,
.pink {
	color: #2d8056;
}
svg{
	width:100%;
	height:auto;
}



.wrapper {
	font-size: 1.6rem;
	line-height: normal;
	color: #333;
/* 	font-family: "Noto Sans JP","Noto Sans","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",メイリオ,Meiryo,sans-serif; */
	font-family: "Noto Serif JP", serif;
	box-sizing: border-box;
}
.wrapper * {
	box-sizing: border-box;
}

body.small main {
	font-size: 1.4rem;
}
body.large main {
	font-size: 1.8rem;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}
a:hover {
	transition: 0.2s ease;
	opacity: 0.7;
}

h1, h2, h3, h4, h5 {
	margin: 0 auto;
	line-height: normal;
	font-weight: bold;
}

ul,li,ol{
	list-style: none;
}

ul, ol, li, dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}

section:after,
ul:after,
ol:after,
dl:after {
	content: "";
	clear: both;
	display: block;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
}

h2, .h2 {
	font-size: 3rem;
	font-weight: bold;
	position: relative;
	margin: 0 auto 30px;
}
h2 .sub, .h2 .sub {
	font-size: 1.6rem;
	display: block;
}

h3, .h3 {
	font-size: 2.4rem;
	text-align: left;
	margin: 0 0 20px;
	border-bottom: double rgba(45,128,86,.8);
	padding-bottom: 5px;
}

h4 {
	font-size: 1.8rem;
	margin: 0 0 10px;
	padding-left: 10px;
	border-left: solid 5px #2d8056;
}

h5 {
	font-size: 1.6rem;
	margin: 0 0 10px;
}

p {
	margin: 0 0 15px;
	word-break: break-word;
}
p:last-child {
	margin: 0;
}

.anker {
	padding-top: 100px;
	margin-top: -100px;
}

.fs20 {
	font-size: 2rem;
}

.fs18 {
	font-size: 1.8rem;
}

.fs16 {
	font-size: 1.6rem;
}

.fs14 {
	font-size: 1.4rem;
}

.fs12 {
	font-size: 1.2rem;
}

.fs115 {
	font-size: 115%;
	margin: 0 1px;
}

.fs85 {
	font-size: 85%;
}

.fwn {
	font-weight: normal;
}

.fwb {
	font-weight: bold;
}

.btn {
	text-align: center;
	width:18em;
	padding-top:1em;
	padding-bottom:1em;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: 0.2s ease;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	margin: 30px auto 0;
	border-radius: 50px;
	color: #fff;
	background: #2d8056;
	border: solid 2px #2d8056;
	transition: 0.1s ease;
	line-height:1;
}
.btn:hover {
	opacity: 1;
	background: #fff;
	color: #2d8056;
	line-height:1;
}
.btn.mini {
	width: 200px;
	height:50px;
	font-size: 1.4rem;
	margin: 10px auto 0;
	padding: 5px 10px;
	display:flex;
	justify-content:center;
	align-items:center;
	line-height:1;
}

.page_ttl {
	height: 200px;
	background: #999;
	display: flex;
	align-items: center;
	position: relative;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
}
.page_ttl .inner {
	z-index: 2;
}
.page_ttl h1, .page_ttl .title {
	font-size: 3.6rem;
}
.page_ttl h1 br, .page_ttl .title br {
	display: none;
}
.page_ttl .caption {
	font-weight: 1.6rem;
	margin-top: 10px;
}
.page_ttl .bg {
	/* background: url(../img/page_ttl.jpg) no-repeat center/cover; */
	background: url("https://kiyosekeyakihall.jp/wp-content/uploads/2024/03/ce6adf516472d2008d010b7694927a33.jpg") no-repeat center/cover;
	z-index: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.page_ttl .white {
	display: table;
	text-align: left;
	background: rgba(255, 255, 255, 0.9);
	position: relative;
	padding: 20px 20px 20px 0;
}
.page_ttl .white:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 1000px;
	left: -1000px;
	top: 0;
	background: rgba(255, 255, 255, 0.9);
}
.page_ttl .over {
	opacity: 0.5;
	z-index: 1;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	filter: brightness(0.6);
}

.intro {
	text-align: center;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
select,
textarea {
	border: solid 1px #CCC;
	border-radius: 5px;
	height: 50px;
	padding: 10px;
	background-color: #fff;
	cursor: pointer;
}
input[type=text].error:not(:disabled),
input[type=email].error:not(:disabled),
input[type=number].error:not(:disabled),
input[type=tel].error:not(:disabled),
select.error:not(:disabled),
textarea.error:not(:disabled) {
	background-color: #fff3f2;
	border-color: #f75c4d;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
	color: #ccc;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 30px;
	background: #fff url("../img/select_icon.png") no-repeat center right 10px;
	background-size: 10px 6px;
}

select::-ms-expand {
	display: none;
}

select:-moz-focusring {
	color: transparent;
}

.event_list {
	display: flex;
	flex-wrap: wrap;
}
.event_list li {
	width: calc(25% - 15px);
	margin-right: 20px;
	background: #fff;
	position: relative;
}
.event_list li:nth-child(4n) {
	margin-right: 0;
}
.event_list li:nth-child(n+5) {
	margin-top: 20px;
}
.event_list li .link {
	background: #fff;
	display: block;
	height: 100%;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	position: relative;
}
.event_list li .link > .tag {
	display: inline-block;
	text-align: center;
	color: #fff;
	background: #2d8056;
	padding: 2px 5px;
	font-weight: bold;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	font-size: 1.2rem;
}
.event_list li .link > .tag span + span:before {
	content: "/";
	display: inline-block;
	margin: 0 2px;
}
.event_list li .link .picture {
	padding: 28.12% 50%;
	overflow: hidden;
	position: relative;
}
.event_list li .link .picture .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: no-repeat center/cover;
}
.event_list li .link .text {
	padding: 10px 10px 35px;
}
.event_list li .link .text .title {
	line-height: 1.1;
	margin-bottom: 5px;
	line-height: 1.2;
	margin: 0;
}
.event_list li .link .detail {
	font-size: 1.3rem;
	margin-bottom: 5px;
}
.event_list li .link .detail .tag {
	display: inline-block;
	text-align: center;
	margin-right: 5px;
	color: #fff;
	background: #2d8056;
	border-radius: 3px;
	padding: 2px 8px;
	font-weight: bold;
	margin-bottom: 5px;
}
.event_list li .link .detail time {
	font-weight: bold;
	font-size: 1.3rem;
}

.small .event_list li .link .detail time {
	font-size: 1.2rem;
}

.large .event_list li .link .detail time {
	font-size: 1.4rem;
}

.news_list li:not(:last-child) {
	margin-bottom: 20px;
}
.news_list li a {
	display: flex;
	justify-content: start;
}
.news_list li a time {
	margin: 5px 20px 0 0;
	width: 80px;
	font-size: 1.4rem;
}
.news_list li a .tag {
	display: inline-block;
	text-align: center;
	margin-right: 20px;
	color: #fff;
	background: #2d8056;
	width: 90px;
	border-radius: 5px;
	padding: 2px 8px;
	font-weight: bold;
	font-size: 1.4rem;
}
.news_list li a p {
	margin-top: 2px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: calc(100% - 220px);
}

.dot_list li {
	position: relative;
	padding-left: 15px;
}
.dot_list li:not(:last-child) {
	margin-bottom: 5px;
}
.dot_list li:before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 9px;
	border-radius: 50%;
	margin: auto;
	background: #2d8056;
	z-index: 1;
}
.dot_list li a {
	display: inline-block;
	text-decoration: underline;
	color: #2d8056;
}
.dot_list li a[target="_blank"]:after {
	content: url(../img/blank.png);
	left: 5px;
	top: -1px;
	position: relative;
}
.dot_list.kome li {
	padding-left: 20px;
}
.dot_list.kome li:before {
	content: "※";
	top: 0;
	background: none;
}

/* .archives_list li:not(:last-child) {
	margin-bottom: 15px;
	border-bottom: solid 1px #eee;
	padding-bottom: 15px;
} */
.archives_list li {
	margin-bottom: 15px;
	border-bottom: solid 1px #eee;
	padding-bottom: 15px;
}
.archives_list li .btn {
	display: flex;
	align-items:center;
	justify-content:center;
	margin: 0;
}
.archives_list li a {
	display: block;
}
.archives_list li a .tag {
	display: inline-block;
	text-align: center;
	color: #fff;
	background: #2d8056;
	border-radius: 5px;
	padding: 2px 8px;
	font-weight: bold;
	font-size: 1.4rem;
}
.archives_list li a time {
	/* margin: 7px 10px 0 0; */
	width: 75px;
	display: inline-block;
	font-size: 1.4rem;
}
.archives_list li a p {
	margin-top: 5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.doc_list {
	margin: 20px 0;
	display: flex;
	justify-content: center;
}
.doc_list li {
	width: calc(33.33% - 20px);
	margin-right: 30px;
	float: left;
}
.doc_list li:nth-child(3n) {
	margin-right: 0;
}
.doc_list li:nth-child(n+4) {
	margin-top: 20px;
}
.doc_list li a {
	text-align: center;
	width: 100%;
	border: solid 2px #2d8056;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-size: 1.6rem;
	padding: 10px;
	color: #2d8056;
	background: #fff;
}

.num_list {
	counter-reset: number;
}
.num_list > li {
	position: relative;
	padding-left: 3rem;
}
.num_list > li:not(:last-child) {
	margin-bottom: 5px;
}
.num_list > li:before {
	counter-increment: number;
	content: counter(number) ".";
	display: inline-block;
	position: absolute;
	left: 3px;
	top: 0;
	text-align: right;
}

.table_dl {
	margin-top: 20px;
}
.table_dl dt {
	width: 16rem;
	font-weight: bold;
	margin-bottom: 10px;
	/* padding-left: 15px; */
	position: relative;
}
/* .table_dl dt:before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0px;
	top: 10px;
	bottom: 0;
	margin:0;
	background: #2d8056;
	border-radius: 50%;
	display: inline-block;
} */
.table_dl dd {
	width: calc(100% - 16rem);
	margin-bottom: 10px;
}

.pager ul {
	display: flex;
	justify-content: center;
}
.pager ul li {
	margin: 0 5px;
}
.pager ul li a, .pager ul li span {
	height: 40px;
	min-width: 40px;
	padding: 7px;
	border: solid 1px #666;
	display: block;
	text-align: center;
	border-radius: 5px;
}
.pager ul li .current {
	background: #666;
	color: #fff;
}

.page_controls {
	display: flex;
	justify-content: center;
	gap:10px;
}
.page_controls li {
}
.page_controls li a, .page_controls li span {
/* 	height: 40px; */
	min-width: 40px;
	padding: 3px 14px;
	border: solid 1px #666;
	display: block;
	text-align: center;
	border-radius: 5px;
}
.page_controls li .current {
	background: #666;
	color: #fff;
}

.single .info {
	margin-bottom: 30px;
}
.single .info .tag {
	display: inline-block;
	text-align: center;
	color: #fff;
	background: #2d8056;
	border-radius: 5px;
	padding: 2px 8px;
	font-weight: bold;
	font-size: 1.4rem;
	margin-right: 10px;
}
.single .info h1 {
	margin-top: 15px;
	padding-bottom: 5px;
	border-bottom: solid 1px #ccc;
}
.single .thumbnail img {
	max-width: 1000px;
	max-height: 500px;
}

.flexible_content p {
	margin-bottom: 20px;
}
.flexible_content a {
	text-decoration: underline;
}
.flexible_content .gray {
	font-size: 1.2rem;
	color: #999;
}
.flexible_content .red {
	color: red;
}
.flexible_content h2:not(:first-child),
.flexible_content h3:not(:first-child) {
	margin-top: 40px;
}
.flexible_content .img_text {
	margin-bottom: 40px;
}
.flexible_content .img_text .img {
	width: calc(45% - 30px);
	margin-right: 30px;
	float: left;
	text-align: center;
}
.flexible_content .img_text p {
	width: 55%;
	float: right;
}
.flexible_content .img_text:nth-of-type(even) p {
	float: left;
}
.flexible_content .img_text:nth-of-type(even) .img {
	float: right;
	margin: 0 0 0 30px;
}
.flexible_content .img_text:last-child {
	margin-bottom: 0;
}
.flexible_content .img_tex
.gray_box {
	background: #eee;
	padding: 15px;
}
.flexible_content .border_box {
	border: solid 1px #ccc;
	padding: 15px;
}
.flexible_content .picture {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.flexible_content .picture:not(:last-child) {
	margin-bottom: 40px;
}
.flexible_content .picture img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.plane_table {
	width: 100%;
	margin: 20px auto;
}
.plane_table th, .plane_table td {
	padding: 10px;
	border: solid 1px #ccc;
	background: #fff;
}
.plane_table th {
	background: #eee;
}
.plane_table th span {
	display: block;
	font-size: 85%;
}

/* 追加 */
.plane_table tr td:nth-of-type(2),.plane_table tr td:nth-of-type(3),.plane_table tr td:nth-of-type(4){
	text-align:center;
}

@media (min-width: 840px) {
	.plane_table.workshop td:nth-child(1) {
	width: 130px;
	}
	.plane_table.workshop td:nth-child(4) {
	width: 220px;
	}
	.plane_table.workshop td:nth-child(5) {
	width: 130px;
	}
	.plane_table.permanent_course td:nth-child(1) {
	width: 270px;
	}
	.plane_table.permanent_course td:nth-child(4) {
	text-align: center;
	}
	.plane_table.permanent_course td:nth-child(5) {
	width: 130px;
	}
}
@media (max-width: 839px) {
	.plane_table.workshop td:nth-child(1) {
	width: 80px;
	}
	.plane_table.workshop td:nth-child(4) {
	width: 180px;
	}
	.plane_table.workshop td:nth-child(5) {
	width: 100px;
	}
	.plane_table.permanent_course td:nth-child(5) {
	width: 100px;
	}
}

@media (max-width: 839px) {
	.table_scroll {
	width: 100%;
	overflow-x: scroll;
	}
	.table_scroll table {
	width: 839px;
	}
}
.anker_list ul {
	display: flex;
	justify-content: space-between;
}
.anker_list ul li {
	width: calc(20% - 15px);
}
.anker_list ul li a {
	color: #fff;
	background: #2d8056;
	font-size: 1.6rem;
	text-shadow: 0 0 3px rgba(53, 33, 20, 0.3);
	display: flex;
	min-height: 54px;
	height: 100%;
	align-items: center;
	text-align: center;
	justify-content: center;
	border: 1px solid #2d8056;
	padding: 10px;
	border-radius: 6px;
	line-height: 1.3;
	position: relative;
}
.anker_list ul li a:after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: -2px -15px 0 15px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.mailat {
	display: inline-block;
}
.mailat:after {
	content: "＠";
}

hr.line {
	border: none;
	height: 25px;
	width: 100%;
	margin: 60px 0 0;
	background: url("../img/line.png") repeat-x center/contain;
}

.sp {
	display: none;
}

@media (max-width: 839px) {
	body.large main {
	font-size: 1.4rem;
	}

	.wrapper {
	font-size: 1.4rem;
	}

	.sp {
	display: inherit;
	}

	.pc {
	display: none;
	}

	h2, .h2 {
	font-size: 2.1rem;
	}
	h2 .sub, .h2 .sub {
	font-size: 1.4rem;
	}
	h2:before, h2:after, .h2:before, .h2:after {
	top: 17px;
	width: 30px;
	}
	h2.line2:before, h2.line2:after, .h2.line2:before, .h2.line2:after {
	top: 30px;
	}
	h2:before, .h2:before {
	left: -45px;
	}
	h2:after, .h2:after {
	right: -45px;
	}
	h2 + p, .h2 + p {
	text-align: left;
	}

	h3, .h3 {
	font-size: 1.8rem;
	margin: 0 0 15px;
	}
	h3 + .sub, .h3 + .sub {
	font-size: 2rem;
	}

	.anker {
	padding-top: 75px;
	margin-top: -75px;
	}

	.btn {
		font-size:1.4rem;
	margin: 20px auto 0;
	border-width: 1px;
/* 		height:40px;
		width:200px; */
	}
	.btn.mini {
/* 	min-width: 150px; */
		height:40px;
		width:180px;
	font-size: 1.2rem;
	margin: 10px auto 0;
	}

	.page_ttl {
	height: 160px;
	}
	.page_ttl h1, .page_ttl .title {
	font-size: 2.6rem;
	}
	.page_ttl h1 br, .page_ttl .title br {
	display: inline;
	}
	.page_ttl .caption {
	font-size: 1.2rem;
	margin-top: 5px;
	}

	.intro {
	text-align: left;
	}
	.intro br {
	display: none;
	}

	.table_dl dt {
	width: 12rem;
	}
	.table_dl dd {
	width: calc(100% - 12rem);
	}

	hr.line {
	margin: 30px 0 0;
	}

	.pager ul li {
	margin: 0 3px;
	}
	.pager ul li a, .pager ul li span {
	height: 32px;
	min-width: 32px;
	padding: 5px;
	}

	.event_list li {
	width: calc(50% - 7.5px);
	margin-right: 15px;
	}
	.event_list li:nth-child(2n) {
	margin-right: 0;
	}
	.event_list li:nth-child(n+3) {
	margin-top: 15px;
	}
	.event_list li .link .text .detail {
	font-size: 1.2rem;
	}

	.dot_list li {
	width: 100%;
	float: none;
	}
	.dot_list li:nth-child(n+2) {
	margin-top: 5px;
	}
	.dot_list li:before {
	top: 5px;
	}

	.news_list li:not(:last-child) {
	margin-bottom: 15px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 15px;
	}
	.news_list li a {
	display: block;
	}
	.news_list li a time {
	margin: 0 5px 0 0;
	font-weight: bold;
	}
	.news_list li a .tag {
	min-width: 100px;
	margin-right: 0;
	padding: 2px 4px;
	font-size: 1.2rem;
	}
	.news_list li a p {
	width: 100%;
	}

	.archives_list li a time {
	font-size: 1.2rem;
		width: 65px;
	}
	.archives_list li a .tag {
	padding: 2px 4px;
	font-size: 1.2rem;
	}

	.flexible_content .img_text {
	margin-bottom: 30px;
	}
	.flexible_content .img_text .img {
	width: calc(45% - 15px);
	margin-right: 15px;
	}
	.flexible_content .img_text:nth-of-type(even) .img {
	margin: 0 0 0 15px;
	}
	.flexible_content .picture:not(:last-child) {
	margin-bottom: 30px;
	}
	.flexible_content .picture img {
	width: auto;
	height: auto;
	}

	.plane_table th, .plane_table td {
	padding: 10px 5px;
	font-size: 1.2rem;
	}

	.anker_list ul {
	flex-wrap: wrap;
	max-width: 600px;
	margin: auto;
	}
	.anker_list ul li {
	width: calc(50% - 5px);
	}
	.anker_list ul li a {
	min-height: inherit;
	padding: 5px;
	font-size: 1.4rem;
	}
	.anker_list ul li a:after {
	width: 8px;
	height: 8px;
	margin: -2px -8px 0 10px;
	}
	.anker_list ul li:nth-child(n+3) {
	margin-top: 10px;
	}
	.anker_list ul li:nth-child(odd) {
	margin-right: 10px;
	}
}
.year-list {
	border-bottom: solid 1px #ccc;
}
.year-list li {
	border-top: solid 1px #ccc;
}
.year-list li a {
	display: block;
	padding: 15px;
	text-align: center;
}

.column2 {
	display: flex;
	justify-content: space-between;
}
.column2 .column2-main {
	width: calc(100% - 260px);
}
.column2 .column2-sidebar {
	width: 200px;
	max-width: 500px;
}
.column2 .column2-sidebar h3 {
	padding: 15px;
	background: #eee;
	text-align: center;
	border-top: solid 1px #ccc;
	border-bottom: none;
	margin: 0;
	font-size: 1.8rem;
}

@media (max-width: 839px) {
	.column2 {
	flex-wrap: wrap;
	}
	.column2 .column2-main {
	width: 100%;
	}
	.column2 .column2-sidebar {
	width: 100%;
	margin: 0 auto;
	}
}
/* header,footer,section等 */
body.lock {
	position: fixed;
	width: 100%;
}

html,
body {
	height: 100%;
	background: #fff;
	scroll-padding-top: 100px!important;
	scroll-behavior: smooth;
}

.wrapper {
/* 	padding-top: 100px; */
	min-height: 100%;
	position: relative;
}

main {
	position: relative;
	padding-top:100px;
}
@media(max-width:1100px){
	main{
		padding-top:55px;
	}
}
main > section {
	padding: 80px 0 0;
}
main > section:last-of-type {
	padding-bottom: 80px;
}
main > section > section {
	padding: 40px 0 0;
}
main > section > section:first-of-type {
	padding-top: 0;
}
main .breadcrumb {
	margin-top: 15px;
	margin-bottom: 15px;
}
main .breadcrumb br {
	display: none;
}

.inner {
	max-width: 1230px;
	width: 100%;
	padding-left: 15px !important;
	padding-right: 15px !important;
	margin: auto;
	position: relative;
}

.inner_s {
	max-width: 990px;
	width: 100%;
	padding-left: 15px !important;
	padding-right: 15px !important;
	margin: auto;
	position: relative;
}

@keyframes fadeinmenu {
	0% {
	height: 0;
	}
	100% {
	height: 40px;
	}
}
#header {
	height: 100px;
	display: flex;
	align-items: center;
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#header > .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #2d8056;
}
#header .logo {
	float: left;
	display: inline-block;
}
#header .logo img {
	height:40px;
}
#header nav {
	display: flex;
	align-items: center;
	margin-top:10px;
}
#header nav > ul {
	position: relative;
}
#header nav #menu {
	display: flex;
}
#header nav #menu > li {
	display: flex;
	font-size: 1.4rem;
}
#header nav #menu > li:not(:last-child) {
	margin-right: 20px;
}
#header #font {
	display: flex;
	margin-left: 15px;
	padding-left: 15px;
}
#header #font:after {
	content: "";
	position: absolute;
	left: 0;
	width: 1px;
	height: 32px;
	background: #333;
}
#header #font li {
	position: relative;
}
#header #font li:not(:last-child) {
	margin-right: 10px;
}
#header #font li a {
	font-size: 1.4rem;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	line-height: 24px;
	border: solid 1px #ccc;
}
#header #font li.active a {
	background: #2d8056;
	border-color: #2d8056;
	color: #fff;
}
#header .sns {
	display: flex;
	position: absolute;
	top: -25px;
	right: 15px;
}
#header .sns li:not(:last-child) {
	margin-right: 10px;
}
#header .sns li img {
	width: 20px;
	height: auto;
}

#menu_btn {
	display: none;
	cursor: pointer;
	position: fixed;
	top: 0px;
	width: 55px;
	height: 55px;
	right: 0px;
	padding: 10px 17.5px;
	z-index: 101;
}
#menu_btn:before, #menu_btn:after, #menu_btn .border {
	content: "";
	display: block;
	background: #000;
	position: relative;
	width: 20px;
	transition: 0.3s ease;
	height: 2px;
}
#menu_btn:before {
	top: 11px;
}
#menu_btn .border {
	top: 15px;
}
#menu_btn:after {
	top: 19px;
}
#menu_btn .close {
	display: none;
}
#menu_btn.open:before {
	transform: translateY(7px) rotate(145deg);
}
#menu_btn.open:after {
	transform: translateY(-5px) rotate(-145deg);
}
#menu_btn.open .border {
	background: none;
}
#menu_btn.open .close {
	display: block;
}

#footer {
	padding: 60px 0;
	background: #444;
	color: #fff;
	font-size: 1.4rem;
}
#footer li a{
	font-size:1.4rem;
}
#footer .inner {
	display: flex;
	justify-content: space-between;
}
#footer .address .logo img {
	height: 36px;
	width: auto;
}
#footer .address p{
	line-height:2;
	margin-bottom:0;
}
#footer .address table {
	margin-top: 30px;
}
#footer .address table th {
	text-align: left;
}
#footer .address table td {
	padding-left: 10px;
}
#footer nav #footer_menu1 {
	display: flex;
	gap:15px;
}
#footer nav #footer_menu1 > li {
	position: relative;
}
#footer nav #footer_menu1 > li:not(:last-child) {
/* 	margin-right: 15px;
	padding-right: 15px; */
	display:flex;
	align-items:center;
	gap:10px;
}
#footer nav #footer_menu1 > li:not(:last-child):after {
	content: "/";
	display:block;
}
#footer nav #footer_menu1:after{
	display:none;
}

#footer nav #footer_menu2 {
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
	gap:15px;
}
#footer nav #footer_menu2 > li {
	display:flex;
	align-items:center;
	gap:3px;
}
#footer nav #footer_menu2:after{
	display:none;
}
#footer nav #footer_menu2 > li:before {
	content: ">";
	display:block;
}
#footer nav .licence {
	position: absolute;
	bottom: 0;
	right: 15px;
}

.footer_menu {
	padding: 15px 0;
	border-top: solid 1px #ccc;
}
.footer_menu ul {
	display: flex;
}
.footer_menu ul li:not(:last-child) {
	margin-right: 30px;
}

@media (max-width: 1230px) {
	#header nav #menu > li {
	font-size: 1.3rem;
	}
	#header nav #menu > li:not(:last-child) {
	margin-right: 15px;
	}
}
@media (max-width: 1100px) {
	html{
		scroll-padding-top:55px!important;
	}
	main > section {
	padding: 40px 0 0;
	}
	main > section:last-of-type {
	padding-bottom: 40px;
	}
	main > section > section {
	padding: 30px 0 0;
	}

	.wrapper {
	padding-top: 0;
	}

	#header {
	height: 55px;
	padding: 10px 0;
	}
	#header nav {
	padding: 0;
	height: 0;
	overflow: hidden;
	display: block;
	position: fixed;
	top: 45px;
	width: 100%;
	left: 0;
	transition: 0.4s ease;
	background: #fff;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	}
	#header nav.open {
	height: 320px;
	}
	#header nav > ul:not(:last-of-type) {
	margin-right: 0;
	padding-right: 0;
	position: relative;
	}
	#header nav > ul:not(:last-of-type):after {
	content: none;
	}
	#header nav #menu {
	display: block;
	}
	#header nav #menu > li {
	justify-content: center;
	margin: 10px 0 0;
	}
	#header nav #menu > li:not(:last-child) {
	margin: 10px 0 0;
	}
	#header nav #menu > li span {
	display: inline;
	}
	#header nav #font {
	display: none;
	}
	#header nav .sns {
	top: 250px;
	justify-content: center;
	right: 0;
	left: 0;
		margin-top:10px;
	}
	#header #menu_btn {
	display: block;
	}
	#header .logo img {
	max-height: 36px;
	max-width: calc(100% - 20px);
/* 	margin-top: 4px; */
	}

	.footer_menu ul {
	flex-wrap: wrap;
	}
	.footer_menu ul li {
	width: 100%;
	text-align: center;
	}
	.footer_menu ul li:not(:last-child) {
	margin: 0 auto 10px;
	}
	.footer_menu ul li a {
	text-decoration: underline;
	}

	#footer {
	padding: 30px 0;
	font-size: 1.2rem;
	}
	#footer li a{
		font-size:1.2rem;
	}
	#footer .inner {
	display: block;
	}
	#footer nav #footer_menu1,
	#footer nav #footer_menu2 {
	display: block;
	margin-top: 0;
	justify-content: flex-start;
	}
/* 	#footer nav #footer_menu1 li,
	#footer nav #footer_menu2 li {
	width: 50%;
	float: left;
	} */
	#footer nav #footer_menu1 li:not(:last-child),
	#footer nav #footer_menu2 li:not(:last-child) {
	margin-right: 0;
	}
	#footer nav #footer_menu1 {
	margin-top: 20px;
	}
	#footer nav #footer_menu1 > li {
	padding-left: 15px;
	position: relative;
	}
	#footer nav #footer_menu1 > li:before {
	content: ">";
	position: absolute;
	left: 0;
	}
	#footer nav #footer_menu1 > li:not(:last-child):after {
	content: none;
	}
	#footer nav .licence {
	position: relative;
	bottom: 0;
	right: 0;
	margin-top: 30px;
	}
	#footer .address .logo img {
	height: 40px;
	width: auto;
	}
}
/* 固有 */
#top .introduction {
	text-align: center;
	font-size: 115%;
	padding-bottom: 0;
}
#top section {
	padding: 80px 0;
}
#top > .mainvisual {
	padding: 0;
}
#top > .mainvisual .slider .image {
	padding-top: 460px;
	background: no-repeat center center / cover;
	align-items: center;
	display: flex;
}
#top > .mainvisual .slick-prev,
#top > .mainvisual .slick-next {
	top: auto;
	bottom: -40px;
	left: auto;
	right: 72px;
	width: 42px;
	height: 12px;
}
#top > .mainvisual .slick-prev:before,
#top > .mainvisual .slick-next:before {
	content: "";
	background-repeat: no-repeat;
	background-size: 42px 12px;
	display: block;
	width: 42px;
	height: 12px;
}
#top > .mainvisual .slick-prev {
	right: 72px;
}
#top > .mainvisual .slick-prev:before {
	background-image: url("../img/top/control_l.png");
}
#top > .mainvisual .slick-next {
	right: 20px;
}
#top > .mainvisual .slick-next:before {
	background-image: url("../img/top/control_r.png");
}
#top > .mainvisual #slider_box .slick-dots {
	bottom: -35px;
	right: 145px;
	width: auto;
}
#top > .news .inner {
	display: flex;
}
#top > .news .inner > div {
	width: calc(100% - 130px);
}
#top > .news h2 {
	margin-right: 30px;
}
#top > .pickup {
	background: url("../img/line_w.png") repeat-x center top 200px/1px 1200px, linear-gradient(45deg,#fdf8d7,transparent);
}
#top > .pickup h2 {
	color: #000;
	text-shadow: 0 0 3px rgba(255,255, 255, 0.5);
}
#top > .pickup ul {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	align-items:center;
	gap:20px;
}
#top > .pickup ul li {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	padding: 5px;
	position: relative;
}
#top > .pickup ul li:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: solid 1px #333;
}
#top > .pickup ul li a {
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
	padding: 20px 20px 30px;
	position: relative;
	z-index: 2;
}
#top > .pickup ul li a h3 {
	font-size: 1.8rem;
	margin: 10px 0 20px;
	padding-bottom: 10px;
	text-align: center;
	height: 54px;
	align-items: center;
	display: flex;
	justify-content: center;
}
#top > .event {
	background: url("../img/line_w.png") repeat-x center top 300px/1px 1200px, linear-gradient(47deg,#e2f3f0,transparent);
}
#top > .event h2 {
	color: #000;
	text-shadow: 0 0 3px rgba(255,255,255,.5);
}
#top > .about {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#top > .about img {
	width: 100%;
	height: auto;
}
#top > .about .text {
}
#top > .about .text .table_dl dt {
	width: 12rem;
}
#top > .about .text .table_dl dd {
	width: calc(100% - 12rem);
}

.faq_list {
	border-top: 1px solid #333;
}
.faq_list dt, .faq_list dd {
	position: relative;
}
.faq_list dt:before, .faq_list dd:before {
	font-size: 1.8rem;
	content: "Q";
	position: absolute;
	left: 0;
	top: 28px;
	font-weight: bold;
}
.faq_list dt {
	padding: 30px 0 5px 30px;
}
.faq_list dd {
	padding: 5px 0 30px 30px;
	position: relative;
	border-bottom: 1px solid #333;
}
.faq_list dd:before {
	content: "A";
	color: #2d8056;
	top: 5px;
}
.faq_list dd a {
	color: #2d8056;
	position: relative;
	padding-left: 20px;
	display: inline-block;
}
.faq_list dd a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-right: solid 2px #2d8056;
	border-bottom: solid 2px #2d8056;
	transform: rotate(-45deg);
}

@media (max-width: 839px) {
	#top section {
	padding: 40px 0;
	}
	#top section:last-of-type{
		padding:0;
	}
	#top > .mainvisual .slider .image {
	padding-top: 200px;
	}
	#top > .news .inner {
	display: block;
	}
	#top > .news .inner > div {
	width: 100%;
	}
	#top > .news h2 {
	margin-right: 0;
	}
	#top > .pickup {
	background: url("../img/line_w.png") repeat-x center top 160px/1px 1200px, linear-gradient(45deg,#fdf8d7,transparent);
	}
	#top > .pickup p br{
		display:none;
	}
	#top > .pickup ul {
	grid-template-columns:1fr;
		gap:30px;
	}
	#top > .pickup ul li {
	width: 100%;
	}
	#top > .pickup ul li a {
	padding: 10px 10px 20px;
	}
	#top > .pickup ul li a img {
	width: 40px;
	}
	#top > .pickup ul li a h3 {
	margin: 5px 0 10px;
	padding-bottom: 5px;
	}
	#top > .event {
	background: url("../img/line_w.png") repeat-x center top 160px/1px 1200px, linear-gradient(47deg,#e2f3f0,transparent);
	}
	#top > .about {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
		gap:30px;
	}
	#top > .about > div{
		margin:0 auto;
	}
	#top > .about img {
	order: 2;
	width: 100%;
	max-width: 500px;
	}
	#top > .about .text h2{
		padding:0;
	}
	#top .about .table_dl{
		padding:0;
	}
	#top > .about .text {
	order: 1;
	width: 100%;
	max-width: 500px;
	}
}
#access .maps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:20px;
}
#access .maps li {
	/* width: calc(50% - 20px); */
}
#access .maps li img{
	width:100%;
}
#access .table_dl {
	/* border-bottom: solid 1px #ccc; */
	max-width: 1230px;
}
#access .table_dl dt, #access .table_dl dd {
	/* border-top: solid 1px #ccc; */
	padding: 15px;
	margin: 0;
}
#access .table_dl dt {
	padding: 15px 15px 15px 30px;
}
#access .table_dl dt:before {
	left: 10px;
	top: 23px;
}
#access .plane_table th {
	padding: 15px;
}
@media (min-width: 840px) {
	#access .plane_table th {
	width: 33.33%;
	}
}
#access .plane_table th img {
	width: 28px;
	height: 28px;
	margin: -2px -5px 0 8px;
}
#access .plane_table td {
	padding: 20px 30px;
	vertical-align: top;
	line-height: 1.5;
}

@media (max-width: 839px) {
	#access .maps {
	flex-wrap: wrap;
	}
	#access .maps li {
	width: 100%;
	}
	/* #access .maps li:nth-child(n+2) {
	margin-top: 30px;
	} */
	#access .table_dl dt, #access .table_dl dd {
	padding: 10px;
	}
	#access .table_dl dt {
	padding: 10px 10px 10px 20px;
	}
	#access .table_dl dt:before {
	left: 8px;
	top: 18px;
	}
	#access .plane_table {
	display: block;
	}
	#access .plane_table th {
	display: none;
	}
	#access .plane_table td {
	padding: 55px 15px 15px;
	vertical-align: top;
	display: block;
	position: relative;
	}
	#access .plane_table td:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	text-align: center;
	font-weight: bold;
	background: #eee;
	height: 40px;
	padding: 12px;
	width: 100%;
	}
	#access .plane_table td:nth-child(1) {
	border-bottom: none;
	}
	#access .plane_table td:nth-child(1):before {
	content: "電車でお越しの方";
	}
	#access .plane_table td:nth-child(1):after {
	content:url("../img/access/train.svg");
	width:20px;
	height:20px;
	margin-left:20px;
	}
	/* #access .plane_table td:nth-child(2) {
	border-bottom: none;
	} */
	#access .plane_table td:nth-child(2):before {
	content: "お車でお越しの方";
	}
	#access .plane_table td:nth-child(3):before {
	content: "自動車でお越しの方";
	}
}
#sitemap .root .main {
	display: none;
}
#sitemap ul.under {
	display: flex;
	position: relative;
	margin-top: 30px;
	padding-top: 30px;
}
#sitemap ul.under li:first-child {
	position: absolute;
	font-weight: bold;
	top: 0;
}
#sitemap ul.under li:not(:last-child) {
	margin-right: 20px;
}
#sitemap ul.under li:nth-child(n+2) a:before {
	content: none;
}

@media (max-width: 839px) {
	#sitemap .root {
	margin-top: 5px;
	}
	#sitemap ul.under {
	display: block;
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
	}
	#sitemap ul.under li {
	width: 100%;
	}
	#sitemap ul.under li:not(:last-child) {
	margin-right: 0;
	}
	#sitemap ul.under li:nth-child(n+4) {
	margin-top: 5px;
	}
}
#privacy iframe {
	width: 100%;
	height: 1600px;
	border: solid 1px #000;
	padding: 30px 1%;
}

#circle .plane_table td:nth-child(1) {
	width: 35%;
}
#circle .plane_table td:nth-child(2) {
	width: 25%;
}
#circle .plane_table td:nth-child(3) {
	width: 15%;
}
#circle .plane_table td:nth-child(4) {
	width: 15%;
	text-align: center;
}
#circle .plane_table td:nth-child(5) {
	width: 10%;
	text-align: center;
}

.image_list {
	display: flex;
}
.image_list li {
	width: 50%;
	padding-right: 10px;
}

.gallery .caption {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 3rem;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
	font-size: 1.2rem;
}

.plane_table td.gallery {
	text-decoration: underline;
}
.plane_table td.gallery:hover {
	background: #eee;
	transition: 0.2s ease;
	cursor: pointer;
}

.plane_table.price tbody tr td:nth-child(1) {
	width: 120px;
}
.plane_table.price tbody tr td:nth-last-child(3) {
	width: 100px;
}
.plane_table.price tbody tr td:nth-last-child(-n+2) {
	width: 160px;
}

@media (max-width: 839px) {
	.plane_table.price tbody tr td:nth-child(1), .plane_table.price tbody tr td:nth-last-child(3), .plane_table.price tbody tr td:nth-last-child(-n+2) {
		width: auto;
}
}
.steplist {
	max-width: 800px;
	margin: auto;
}
.steplist li {
	padding: 10px 15px;
	background: #eee;
	position: relative;
}
.steplist li em {
	font-weight: bold;
}
.steplist li:nth-child(n+2) {
	margin-top: 20px;
}
.steplist li:not(:last-child):after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 7px 0 7px;
	border-color: #2d8056 transparent transparent transparent;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -15px;
	position: absolute;
}


/* 追加 */

/* TOPページ、お知らせページのアーカイブリスト */
.archives_list li a{
	display:flex;
	align-items:center;
	gap:10px;
}
@media(max-width:400px){
	.archives_list li a{
		flex-wrap:wrap;
	}
	.archives_list li a p{
		width:100%;
	}
}
.archives_list li a p{
	margin-top: 0;
}


/* フッターページ */
.footer-mail{
	border-bottom:1px solid #fff;
	display:inline-block;
}

/* アクセスページ */
.access-info dt{
	width:20rem;
}
.access-info dd{
	width:calc(100% - 20rem);
}

@media(max-width:600px){
	#access .maps{
		grid-template-columns: 1fr;
		gap:50px;
	}
	.access-info dt{
		width:16rem;
	}
	.access-info dd{
		width:calc(100% - 16rem);
	}
}

.google-maps{
	display:flex;
	justify-content: center;
}

.access-table .kurea a{
	display:inline-block;
	border-bottom:1px solid #333;
}


/* プラバシーポリシーページ */
.privacy-policy-text ol li{
	list-style:decimal;
	list-style-position: inside;
	padding-left: 20px;
	line-height:2;
}

.privacy-policy-text p{
	line-height:2;
	margin:0;
}

.privacy-policy-text .tc{
	text-align:center;
}

.privacy-policy-text .fb{
	font-weight:bold;
}

.footer-top-imagearea{
	display:flex;
	justify-content: center;
}

.inner .color-red{
	text-align:center;
	color:red;
}


/* お知らせアーカイブページ */
.tag.news{
	background: #81B353!important;
}

.tag.event{
	background: orange!important;
}

/* 施設案内ページ */
.facility-archives{
	display:flex;
	gap:20px;
}

.facility-lists{
	display:flex;
	gap:20px;
}
@media(max-width:768px){
	.facility-lists{
		flex-direction: column;
	}
}
@media(max-width:600px){
	.facility-archives{
		gap:10px;
		flex-wrap:wrap;
	}
	.btn.mini{
		padding: 3px 5px;
	}
}
.facility-lists .archives_list li{
	border:none;
	padding:0;
	margin:0;
}

.facility-lists>div{
	width:100%;
}

.facility-image{
	width:50%;
}
.facility-image img{
	width:100%;
}

pre{
	white-space: normal;
}

li{
	line-height:2;
}

/* 利用案内ページ */
.page-guide__link-lists{
	margin: 0 auto;
	display:flex;
	align-items:center;
	gap:calc((50/1440)*100vw);
}
@media(min-width:1440px){
	.page-guide__link-lists{
		gap:50px;
	}
	.page-guide__link-lists li{
		padding: 10px 40px;
	}
}
.page-guide__link-lists li{
	background: #2d8056;
	padding: 10px calc((40/1440)*100vw);
	border-radius:100px;
}
.page-guide__link-lists li a{
	color:#fff;
}

@media(max-width:768px){
	.page-guide__link-lists{
		gap:10px;
	}
	.page-guide__link-lists li{
		padding:5px 10px;
		font-size:14px;
	}
}
@media(max-width:600px){
	.page-guide__link-lists{
		flex-wrap:wrap;
	}
}

.large-hall-table table td{
	border:none;
}

/* パンくず */
.breadcrumb__outer{
/* 	border-top:1px solid #000;
	border-bottom:1px solid #000; */
}

.hall-imagearea{
	width:100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 30px auto 0 auto;
	box-sizing: border-box;
	display:flex;
	flex-direction: column;
	gap:20px;
}
@media(max-width:768px){
	.hall-imagearea{
		padding:0;
	}
}
.hall-imagearea .upper-image,.hall-imagearea .bottom-image{
	display:flex;
	justify-content: center;
}
.upper-imagearea{
	width:50%;
	text-align:center;
	margin: 0 auto;
}
.bottom-imagearea{
	display:flex;
	justify-content: center;
	gap:20px;
}
.bottom-imagearea > div{
	width:50%;
}

/* 施設概要（ホール） */
.seat-imagearea{
	margin-top: 30px;
	display:flex;
	justify-content: center;
	width:100%;
	max-width:600px;
	margin-left: auto;
	margin-right: auto;
}
.seat-imagearea .seat-image img{
	width:100%;
}
.modaal-gallery-label{
	background: #fff!important;
	margin:0!important;
	color:#000!important;
	font-weight:bold!important;
	padding-top: 20px!important;
	padding-bottom: 20px!important;
}
.modaal-gallery-item img{
	max-width:100%!important;
}

.equipment-area{
	margin-top: 50px;
}

.equipment-area .equipment-lists{
	display:flex;
	gap:20px 10px;
	align-items:center;
	flex-wrap:wrap;
}
.equipment-area li,.work-heights li{
	line-height:1;
}
.equipment-area h2{
	margin-top: 20px;
}
.equipment-area .equipment-lists li .btn{
	margin-top: 0;
}
@media(max-width:768px){

	.equipment-area .equipment-lists{
		gap:20px 10px;
	}
}

.work-heights{
	margin-top: 80px;
}
.work-heights p{
	line-height:1.5;
}
.work-heights p span{
	color:red;
	font-weight:bold;
}
.work-heights-lists{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}
.work-heights-lists .btn{
	margin-top:0;
}

/* アクセス */
.access-address dl{
	display: flex;
  	flex-wrap: wrap;
}

@media(max-width:768px){
	.table_dl{
		margin-top: 0;
	}
	.access-address dl{
		flex-direction: column;
	}
	#access .table_dl dt{
		padding:0;
		width:100%;
		margin-top: 20px;
	}
	#access .table_dl dd{
		padding:0;
		width:100%;
		
	}
	.access-address h2{
		margin-bottom: 0;
	}
	
}

.map-area .inner figure{
	display:flex;
	justify-content: center;
}



/* TOPページの清瀬けやきホールの情報欄 */
#top > .about .text{
	background:rgba(255,243,184,.2);
}
#top > .about .text h2{
	margin-bottom:0;
}

#top .about .table_dl{
	padding:10px 20px;
	margin-top: 0;
}

#top .about .table_dl li{
	border-bottom:1px solid #d4d4d4;
	padding-top:10px;
	padding-bottom:10px;
}
#top .about .table_dl .title{
	padding-top: 0;
}

.facility-image .link{
	background: #fff;
    display: block;
    height: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.facility-image .picture{
	    padding: 28.12% 50%;
    overflow: hidden;
    position: relative;
}

.facility-image .picture .img{
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center/cover;
}

/* アクセスページ */
@media(max-width:768px){
	#access .table_dl dt{
		border:none!important;
		margin-bottom:10px;
	}
	#access .table_dl dd{
		padding-bottom:10px;
	}
}

#access .table_dl dd,#access .table_dl dt{
	border-bottom:2px solid #d5d5d5;
}

#access .plane_table tr:nth-of-type(1) th p{
   display:flex;
	align-items:center;
	justify-content:center;
}

#access .plane_table  tr:nth-of-type(1) th:nth-of-type(1) p:after{
	content:url("../img/access/train.svg");
	width:40px;
	height:40px;
	margin-left:20px;
}

#access .plane_table  tr:nth-of-type(1) th:nth-of-type(2) p:after{
	content:url("../img/access/car.svg");
	width:40px;
	height:40px;
	margin-left:20px;
}

.table-sp{
	display:none;
}
@media(max-width:839px){
	.table-pc{
		display:none;
	}
	.table-sp{
		display:block;
	}
}

.table-pc table td{
	padding: 15px;
	width:50%;
	border:1px solid #ccc;
}

.table-pc table tr:nth-of-type(1) td{
	background:#eee;
	text-align:center;
}

.table-pc table tr:nth-of-type(1)  td strong{
	display:flex;
	justify-content:center;
	align-items:center;
}

.table-pc table tr:nth-of-type(1)  td:nth-of-type(1)  strong:after{
	content:url("../img/access/train.svg");
	width:40px;
	height:40px;
	margin-left:20px;
}

.table-pc table tr:nth-of-type(1)  td:nth-of-type(2)  strong:after{
	content:url("../img/access/car.svg");
	width:40px;
	height:40px;
	margin-left:20px;
}

.table-pc table a,.table-sp table a{
	color:blue;
	text-decoration:underline  blue;
}

.table-pc table{
	border-collapse: collapse;
	width:100%;
}

.table-pc table td{
	border:1px solid #000!important;
}


.table-sp table{
	width:100%;
	max-width:500px;
	margin-left: auto;
	margin-right: auto;
}

.table-sp table tr:nth-of-type(1),.table-sp table tr:nth-of-type(3){
	background:#eee;
	text-align:center;
}

.table-sp table td{
	padding:15px;
	border:1px solid #ccc;
}

.table-sp table tr strong{
	display:flex;
	justify-content:center;
	align-items:center;
}

.table-sp table tr:nth-of-type(1) strong:after{
	content:url("../img/access/train.svg");
	width:20px;
	height:20px;
	margin-left:20px;
}

.table-sp table tr:nth-of-type(3) strong:after{
	content:url("../img/access/car.svg");
	width:20px;
	height:20px;
	margin-left:20px;
}

/* 利用案内 */
.bg-grayarea p{
	display:inline-block;
	background:#f8f8f8;
	padding:20px 30px;
	font-size:20px;
}

.page-guide__link-lists li{
	padding:10px calc((40/1440)*100vw)!important;
}

.page-guide__link-lists li:before{
	display:none;
}

h3.horizontal-line{
	border-bottom:none!important;
}

.horizontal-line{
	display:flex;
	gap:10px;
	align-items:center;
}
.horizontal-line:before{
	content:"";
	width:3px;
	height:20px;
	background:#2d8056;
	display:block;
}

.leading-underline{
	border-bottom:double #2d8056;
}

.large-hall-table{
	width:100%;
	max-width:800px;
	padding-left:30px;
}
.large-hall-table table tr{
	border-bottom:1px solid #2d8056;
}

@media(max-width:500px){
	.large-hall-table{
		padding-left:0;
	}
	.large-hall-table table td{
		display:block;
		width:100%;
	}
	.bg-grayarea p{
	display:inline-block;
	background:#f8f8f8;
	padding:10px 20px;
	font-size:16px;
}
}

.guide-page li:before{
	content:"";
	position:absolute;
	top:15px;
	left:5px;
	width:5px;
	height:5px;
	border-radius:50%;
	background:#2d8056;
}

.guide-page li{
	position:relative;
	padding-left:15px;
}

@media(max-width:839px){
	.guide-page li:before{
		top:12px;
	}
}

/* 大ホール概要 */
.hall-name{
	text-align:center;
	box-shadow:0 3px 6px rgba(0,0,0,.3);
	padding:10px 15px;
}

.upper-imagearea .link{
	 background: #fff;
    display: block;
    height: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    position: relative;
}
.upper-imagearea .picture{
	 padding: 28.12% 50%;
    overflow: hidden;
    position: relative;
}

.upper-imagearea .picture .img{
	 position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center/cover;
}

.upper-imagearea .caption{
	position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 3rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
}

.bottom-imagearea>div{
	width:100%;
	display:flex;
	align-items:center;
	gap:40px;
}
.bottom-imagearea .link{
	 background: #fff;
    display: block;
    height: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    position: relative;
	width:calc(50% - 20px);
}
.bottom-imagearea .picture{
	 padding: 28.12% 50%;
    overflow: hidden;
    position: relative;
}

.bottom-imagearea .picture .img{
	 position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center/cover;
}

.bottom-imagearea .caption{
	position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 3rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
}

.external-link-btn a{
	display:flex;
	align-items:center;
	gap:10px;
}
.external-link-btn a:after{
	content:url("../img/btn-icon-white.svg");
	width:20px;
	height:20px;
}

.large-hall-area{
	border: 3px solid #ccc;
    padding: 20px;
}

.single-event-table{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}

.single-event-table dt{
	width:60px;
}

.single-event-table dd{
	width:calc(100% - 60px);
}

.large-hall-table table{
	width:100%;
}

.large-hall-table table tr td{
	padding-bottom:20px;
}
.large-hall-table table tr:not(:first-child) td{
	padding-top:20px;
}

.map-image figure{
	text-align:center;
	margin-left:auto;
	margin-right: auto;
	width:100%;
	max-width:500px;
}

.map-image img{
	width:100%;
}

/* 利用案内のページ */
.red{
	color:red;
}

.top__pickup-icon{
	width:70px;
	height:70px;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width:839px){
	.top__pickup-icon{
		height:auto;
	}
	#top .about:after{
		display:none;
	}
	#top > .about{
		gap:0;
	}
	#top .introduction{
		margin-top:40px;
	}
}
#top .about ul:after{
	display:none;
}

.cancel-hall ul li:before,.cancel-meetingroom ul li:before{
	background:red;
	transform:scale(1.5);
	top:13px;
}

.today-table .wp-block-table {
	width:100%;
	max-width:500px;
	border:none;
}
.today-table .wp-block-table td{
	border:none;
}
.today-table .wp-block-table td:nth-of-type(1){
	width:300px;
}

.reservation-btn-list{
	margin-top: 20px;
}

.reservation-btn-list .wp-block-group__inner-container{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	gap:30px;
	align-items:center;
}

@media(max-width:1100px){
	#footer nav #footer_menu1{
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:0 20px;
		align-items:center;
	}
	#footer nav #footer_menu2{
		margin-top:0;
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:0 20px;
		align-items:center;
	}
}
.facility-price-list .btn.mini{
	margin-top:30px;
	margin-left:0;
	margin-right:0;
}

.facility-list{
	margin-top:30px;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
}
.facility-list p{
	margin-bottom:10px;
	border-left:10px solid #2d8056;
	padding-left:5px;
}
.facility-list .btn.mini{
	margin-top:0;
}

.permanent_course-time{
	white-space:pre-wrap;
}

a:link,
a:active,
a:hover,
a:focus {
    outline: none!important;
    -moz-outline-style: none;
}