html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

html {
	font-size: 10px;
}

body {
	width: 100%;
	text-align: center;
	font-family: sans-serif;
	line-height: 2.2;
	background: #f7f7f7;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
}

.note {
	font-size: 1.2rem;
	line-height: 1.6;
}

/*---------------------------------------------------------------
HEADER
---------------------------------------------------------------*/
.global-menu {
	z-index: 10;
	font-family: 'Noto Serif JP', serif;
}

.global-menu a {
	color: #fff;
}

#header {
	position: fixed;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 60px;
	z-index: 89;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	border-bottom: 0.5px solid #fff;
}

#site-title {
	display: flex;
	align-self: center;
	text-align: center;
	margin-left: 20px;
}

#site-title h1 {
	font-size: 2.0rem;
	letter-spacing: 0em;
	font-weight: 500;
}

.menu-btn {
	position: fixed;
	right: 0px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
    transition: 0.3s;
}

.menu-btn:hover {
	opacity: 0.7;
	cursor: pointer;
}

.menu-btn span, .menu-btn span:before, .menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
	left: 0;
}

#menu {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10px 0 20px;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	top: 0;
	left: 100%;
	z-index: 80;
	transition: all 0.5s;
}

#menu_list {
	align-self: center;
}

#menu_list li {
	display: block;
	width: 100%;
	margin: 1em 0 1em;
	font-size: 2.8rem;
	letter-spacing: 0.1em;
	line-height: 1;
}

#menu_list li:last-child {
	margin-right: 0em;
}

#menu_list a {
	display: block;
	padding: 10px;
}

.sns_list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.sns_list ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	margin-top: 50px;
}

.sns_list li {
	margin: 0 0 0 2px;
	font-size: 2.0rem;
}

.sns_list li a {
	display: inline-block;
	width: 2em;
	color: #fff !important;
}

#container {
	width: 100%;
	min-height: calc(100vh - 75px);
	padding: 64px 0 50px;
	text-align: center;
}

.home #container {
	padding-top: 0;
	padding-bottom: 0;
}

#page-wrapper {
	padding: 50px 0 0;
}

#content {
	text-align: left;
}

#footer {
	text-align: center;
	padding: 20px 0;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	background: #000;
}

#footer.bar-radio-footer {
	display: none;
}

.bar-radio + #footer {
	display: none;
}

.bar-radio + #footer + #footer.bar-radio-footer {
	display: block;
}

.container {
	width: 700px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

p {
	margin: 10px 0;
}

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

a {
	text-decoration: none;
	color: #008690;
	transition: 0.3s;
}

a img.wp-post-image {
	transition: 0.3s;
}

a:hover,
a:hover img.wp-post-image {
	opacity: 0.7;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 2.0rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.6rem; }

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	font-weight: 500;
}

h1, h2, h3, h4 {
	font-family: 'Noto Serif JP', serif;
}

.fa-chevron-right,
.fa-angle-double-right {
	margin-left: 0.5em;
}
h2.radio-title {
    min-width: 300px;
    width: 40%;
    margin: 0 auto;
}

.btn-arrow {
	position: relative;
	display: inline-block;
	width: 340px;
	padding: 15px;
	text-align: center !important;
	line-height: 1;
	color: #fff;
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	background: #000;
}

.btn-arrow::before { /* 矢印の表示設定 */
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}

.nav-previous a,
.nav-next a {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 5px 0;
	padding: 15px;
	line-height: 1;
	color: #000;
	font-size: 1.4rem;
	border: 1px solid #000;
}

.nav-previous a {
	padding-left: 45px;
	text-align: left;
}

.nav-next a {
	padding-right: 45px;
	text-align: right;
}

.nav-previous a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-135deg);
}

.nav-next a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
}

.single .nav-previous {
	margin-top: 60px;
}

.youtube {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.youtube iframe {
	width: 100%;
	height: 100%;
}

.googlemap {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.googlemap iframe {
	width: 100%;
	height: 100%;
}

/*---------------------------------------------------------------
home
---------------------------------------------------------------*/

.home section {
	margin: 0;
	padding: 90px 0 100px;
}

.home section.first-section img {
	margin-bottom: 2em;
}

.home section.first-section p {
	margin: 0;
	padding: 20px;
}

.home section.floor-section {
	background: #000;
}

.home section.floor-section .floor {
	display: block;
	position: relative;
	max-width: 100%;
    overflow: hidden;
}

.home section.floor-section .floor_txt {
	width: 100%;
	display: block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home section.floor-section .floor_bg {
	width: 100%;
	transition: all 0.5s ease;
}

.home section.floor-section .floor_tit:hover .floor_bg {
	transform: scale(1.08);
}

.home section.floor-section .floor_tit_f {
	font-size: 27px;
}

.home section.floor-section .floor_tit_name {
	font-size: 27px;
}

.home section h2 {
	margin-bottom: 0.5em;
	font-size: 3.2rem;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	line-height: 1;
}

.home section h3 {
	font-family: 'Noto Serif JP', serif;
}

.entry-exb_artist {
	font-family: 'Noto Serif JP', serif;
	margin: 0;
}

.home .first-section {
	width: 100%;
	height: 100vh;
	color: #fff;
	background: url(../img/home/home_bg.jpg) center center no-repeat #000;
	background-size: cover;
}

.home .first-section {

}

.radio-section {
	background: #eee;
}

.radio-section .btn-channel {
	margin-bottom: 2em;
}

.gallery-section .latest-gallery-item {
	margin-bottom: 2em;
}


.gallery-section .latest-gallery-item h4.entry-title {
	text-align: center;
}

.gallery-section .entry-img {
	margin-bottom: 1.5em;
}

.gallery-section .entry-date {
}

.radio-section .latest-title,
.gallery-section .latest-title {
	 letter-spacing: 0.1em;
    color: #fff;
    background: #000;
    position: relative;
}
.radio-section .latest-title:before,
.gallery-section .latest-title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #000;
}

.exb-future {
	padding: 10px 0 20px;
}

.gallery-section .container .exb-future:first-child {
	padding-top: 0;
}

.exb-future .list-item a {
	color: #000;
}

.exb-future .list-item .entry-img {
	margin-bottom: 1.5em;
}

.exb-future .list-item .entry-date {
	line-height: 1.4;
	margin-bottom: 1.5em !important;
}

.info-section {
	background: #fff;
}

.info_sns {
	margin-top: 0px;
}

.address-section {
	padding: 50px 0;
	color: #fff;
	background: #000;
}

.address-section .address {
	margin-bottom: 2em;
	font-style: normal;
}

.address-section .sns-list li a {
	padding: 10px;
}

.address-section .contact-link {
	display: inline-block;
	line-height: 1;
	padding: 0.5em 1em;
	color: #fff;
	border: 0.5px solid #fff;
}

/* 固定ページ（radio&gallery）*/

.page-title {
	margin-bottom: 30px;
	text-align: center;
	font-size: 2.6rem;
	font-family: 'Noto Serif JP', serif;
}

.page .page-title {
	font-size: 1.8rem;	
}

.page .page-title span {
	display: block;
	font-size: 3.8rem;
	line-height: 1.4;
}

.page h2 {
	margin-bottom: 20px;
}

/* common */

.header .entry-title {
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
}

.item-list {
	padding-top: 20px;
	border-top: 1px solid #ccc;
}

.list-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-align: left;
	border-bottom: 1px solid #ccc;
}

.list-item .entry-title {
	margin-bottom: 0.5em;
	line-height: 1.4;
	font-size: 1.6rem;
}

.list-item .entry-title a {
	color: #333;
}

.list-item .entry-date {
	margin: 0 0 0.5em;
	font-weight: 300;
}

.list-item .entry-meta {
	display: none;
}

.archive-nav {
	margin-top: 80px;
}

.archive-nav h4 {
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #000;
}

.archive-nav ul {
	margin-bottom: 3em;
	padding-left: 2em;
}

.archive-nav li {
	text-align: left;
	list-style-type: square;
	margin: 0.2em 0;
}

.post-navigation {
	margin-top: 80px;
}

.btn-yt-channel {
	padding: 10px 20px 10px 15px;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	background: #CC0113;
	border-radius: 3px;
	vertical-align: middle;
}

.btn-yt-channel i {
	display: inline-block;
	margin-right: 8px;
	font-size: 2.0rem;
	vertical-align: middle;
}



/*gallery-page*/

.gallery-page .exb-now,
.gallery-page .exb-future {
	padding-bottom: 1.5em;
}

.gallery-page .exb-now .entry-img {
	margin-bottom: 1.5em;
}

.gallery-page .exb-now .entry-title {
	margin-bottom: 0;
	text-align: center;
}

.gallery-page .exb-now .entry-date {
	margin-top: 0;
}

.gallery-page .exb-future,
.gallery-page .exhibition-archive-list {
	border-top: 2px solid #000;
	margin-top: 50px;
	padding-top: 20px;
}

.gallery-page .exhibition-archive-list ul {
	text-align: left;
}


.exhibition-single .entry-header {
	margin-bottom: 30px;
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

.exhibition-single .entry-header h4.entry-title {
	line-height: 1.4;
}

.exhibition-single .entry-header .entry-exb_artist {
	font-size: 25px;
	line-height: 1.4;
}

/* radio-page*/
.radio-page .lead {
	margin-bottom: 1.5em;
}

.radio-page .link-yt-channel {
	margin-bottom: 2em;
}

.radio-page .monthly-program {
	margin-top: 4em;
}

/* schedule*/

.post-type-archive-schedule .hentry .entry-title {
	display: none;
}

.post-type-archive-schedule .item-list {
	border-top: 0;
}

.post-type-archive-schedule .list-item {
	text-align: center;
	border-bottom: 0;
}

.post-type-archive-schedule .list-item img {
	width: 600px;
	max-width: 100%;
}

/* radio-ep */

.radio-ep-archive-page .program-title {
	margin-bottom: 1em;
	text-align: center;
	font-size: 1.8rem;
}

.radio-ep-list li {
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: flex-start;
}

.radio-ep-list li .movie-wrap {
	flex: 0 0 30%;
	align-self: auto;
	padding-right: 20px;
}

.radio-ep-list li .movie-wrap .youtube {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.radio-ep-list li .movie-wrap .youtube iframe {
	width: 100%;
	height: 100%;
}

.radio-ep-list li h5 {
	flex: 1 1 70%;
	align-self: auto;
}

.link-archive-list {
	text-align: right;
}

.page-numbers {
	display: flex;
	justify-content: center;
}

.page-numbers li {
	margin: 1em;
}

.post-edit-link {
	float: right;
	padding: 10px 15px;
	line-height: 1;
	color: #fff;
	background: navy;
	font-size: 1.2rem;
}

#menu-btn-check {
	display: none;
}

.contact-page #wpcf7-f476-o1 {
	width: 100%;
	text-align: left;
}

.contact-page #wpcf7-f476-o1 input,
.contact-page #wpcf7-f476-o1 textarea {
	background-color: #fff;
	box-sizing: border-box;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: block;
	float: none;
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 6px 10px;
	/*height: 38px;*/
	width: 100%;
	line-height: 1.3;
}

.contact-page #wpcf7-f476-o1 .btn-submit {
	text-align: center;
}

.contact-page #wpcf7-f476-o1 .wpcf7-submit {
	position: relative;
	display: inline-block;
	width: 340px;
	max-width: 60%;
	margin-top: 30px;
	padding: 15px;
	text-align: center !important;
	line-height: 1;
	color: #fff;
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	background: #000;
}

.contact-page #wpcf7-f476-o1 .wpcf7-spinner {
	position: absolute;
	
}

@media screen and (min-width: 768px) {
	.visible-xs {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	#container {
		padding: 60px 0 40px;
	}
}


/*---------------------------------------------------------------
SHOP PAGE
---------------------------------------------------------------*/
#container.nagune,
#container.bar-radio {
	text-align: center;
	color: #fff !important;
	background: #000 !important;
}

#container.nagune p,
#container.bar-radio p {
	text-align: center;
}

.shop_photo,
.shop_slider {
	margin-bottom: 2em;
}

#container #shopPage .menu {
	margin-bottom: 3em;
}

#container #shopPage .menu_cat {
	margin: 2em 0 0.5em;
	display: flex;
    align-items: center;
	font-weight: bold;
}

#container #shopPage .menu_cat:before,
#container #shopPage .menu_cat:after {
    content: "";
    height: 0.5px;
    flex-grow: 1;
    background-color: #fff;
}

#container #shopPage .menu_cat:before {
    margin-right: 1em;
}

#container #shopPage .menu_cat:after {
    margin-left: 1em;
}

#container #shopPage .menu_item_price {
	margin-left: 0.5em;
}

#container #shopPage .menu_item_price::before {
	content: "… ";
}

#container #shopPage .btn-arrow {
	border: 0.5px solid #fff;
}

@media screen and (min-width: 769px) {
	.home .first-section {
		background: url(../img/home/home_bg_pc.jpg) center center repeat #000;
		background-size: cover;
	}

	.shop_photo {
		width: 700px;
		margin-bottom: 2em;
	}
}

@media screen and (min-width: 431px) {
	.home #container {
		text-align: center;
	}

	.home section.floor-section .container {
		width: 1200px;
		display: flex;
		justify-content: space-around;
		margin: 0 auto;
	}

	.home section.floor-section .floor {
		flex: 0 1 49%;
		border: 0.5px solid #fff;
	}

	.home section.floor-section .floor1 {
		order: 1;
	}

	.home section.floor-section .floor2 {
		order: 2;
	}

	.home section.floor-section .floor_tit:hover {
		opacity: 1;
		background:;
	}
}

@media screen and (max-width: 430px) {


	body { 
		font-size: 1.4rem;
	}
	
	h1 { font-size: 2.0rem;}
	h2 { font-size: 1.8rem;}
	h3 { font-size: 1.8rem;}
	h4 { font-size: 1.6rem;}
	h5 { font-size: 1.4rem;}

	p {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}
	
	.page-title {
		margin-bottom: 30px;
		text-align: center;
		font-size: 2.0rem;
		font-family: 'Noto Serif JP', serif;
	}
	
	.googlemap {
		width: 100%;
		overflow: hidden;
		height: auto;
		aspect-ratio: 16 / 16;
	}

	.home section {
		padding: 60px 0 70px;
	}

	.home .first-section p {
		position: absolute;
		bottom: 0;
	}

	.home section.floor-section .container {
		padding: 0;

	.home section.floor-section .floor + .floor {
		margin-top: 10px;
	}
	
	.gallery-section .latest-gallery-item h4.entry-title,
	.gallery-page .exb-now .entry-title {
		text-align: left;
	}
}






