@charset "UTF-8";
/*
Theme Name: kusaba
Theme URI: 
Description: 
Author: 
Author URI: 
Version:1.0 
License: 
License URI: 
Tags: 
*/

<style>
html {
  overflow-x: hidden;
  overflow-y: hidden;
}
/*
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
    background: #fff;
}
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}
*/
::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(33, 28, 83);
}
::-webkit-scrollbar-thumb {
    background-color: rgb(16, 15, 70);
}
footer, header {
  display: block;
}
ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
body{
  background:#fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-y: scroll;
}
h1,h2,h3,h4 {
  margin: 0px;
  padding: 0px;
  color: #373396;
  font-weight: 900;
  letter-spacing: 1.6px;
}
p {
  color: #373396;
  margin: 0px;
  padding: 0px;
}
p.nowraparound {
  overflow: hidden;
}
#wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}
#display {
  position: relative;
  margin: 94px auto 0;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}
.open .inner:after {
  content: "";
  clear: both;
  display: block;
  transition: all 0.2s ease-in-out;
}
/*画面の横幅が640px以下*/
@media screen and (max-width: 640px){
.pc {
  display: none!Important;
}
}

/*画面の横幅が641px以上*/
@media screen and (min-width: 641px){
.sp {
  display: none!Important;
}
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.menu {
  visibility: visible;
  opacity: 1;
  position: fixed;
}
.menu-open {
  position: fixed;
}
.sns-under {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  bottom: -90px;
  right: 40px;
  z-index: 99;
  width: 10rem;
}
html.no_scroll, body.no_scroll {
    overflow: auto!Important;
    height: auto!Important;
}
.sns-under .sns__item {
  padding: 0.5rem;
  height: 100%;
}
.sns-under .sns__item img.sns_logo {
  width: 5rem;
}
.sns-under .sns__item a {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  color: #353191;
  font-size: 0.5rem;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 1.5rem;
  white-space: nowrap;
  height: 100%;
}
.sns-under .sns__item img.icon {
  height: 1.5rem;
  width: 1.5rem;
}
.facebook > .fb_iframe_widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}



/*######################################
カレンダー
==============================*/
.gc_wrapper {
  max-width: 800px; 
  margin: 40px auto;
}
.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.responsive-iframe-container iframe,   
.responsive-iframe-container object,  
.responsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 
@media (max-width: 640px) {
    .big-container {
        display: none;
    }
    .small-container {
       padding-bottom: 200%;   /* 高さ */
    }
}
@media (min-width: 641px) {
    .small-container {
        display: none;
    }
}

/*######################################

ページナビ(wp-pagenavi使用時)
==============================*/

#page_num{
  text-align: center;
  padding: 40px 0;
}

.pagination {
  clear:both;
  position:relative;
  top: 12px;
  font-size:11px;
  line-height:13px;
  display: inline-block;
}
.pagination span, .pagination a {
  display:block;
  float:left;
  margin: 2px 2px 2px 0;
  padding:6px 9px 5px 9px;
  text-decoration:none;
  width:auto;
  color:#373396;
}

.pagination a:hover{
  color:#fff;
  background: #373396;
}

.pagination .current{
  padding:6px 9px 5px 9px;
  background: #373396;
  color:#fff;
}
@media screen and (max-width: 640px){
.pagination {
  top: -4px;
}
}

/*######################################
blur
======================================*/
.anim_blur_end {
    animation: anim_blur_end 0.5s 0s ease-out both;
}
.anim_blur_start {
    animation: anim_blur_start 0.5s 0s ease-out both;
}
@keyframes anim_blur_start {
0% {
    -webkit-filter: blur(0px) grayscale(0%);
    filter: blur(0px) grayscale(0%);
}
100% {
    -webkit-filter: blur(3px) grayscale(200%);
    filter: blur(3px) grayscale(200%);
}
}
@keyframes anim_blur_end {
0% {
    -webkit-filter: blur(3px) grayscale(200%);
    filter: blur(3px) grayscale(200%);
}
100% {
    -webkit-filter: blur(0px) grayscale(0%);
    filter: blur(0px) grayscale(0%);
}
}
.anim_blursp {
    animation: anim_menu_show2 1s 0s ease-out both;
}
@keyframes anim_menu_show2 {
0% {
    opacity: 0;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
100% {
    opacity: 1;
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
}
/*------------------------------------------------------------
news
------------------------------------------------------------*/
#news {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 60px auto 100px;
  padding: 0 40px 0 0;
}
#ginza #news {
  position: relative;
  display: block;
  width: 90%;
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0;
}
#category_nav ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px auto;
}
#category_nav ul a {
  font-size: 15px;
  font-weight: bold;
  color: #373396;
  text-decoration: none;
}
#category_nav ul li {
  box-sizing: border-box;
  margin: 0 12px;
}
#category_nav ul li.current-cat {
  border-bottom: 3px solid #373396;
}
#category_nav ul.singletab {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin: -24px auto 40px;
}
#category_nav ul.singletab li {
  font-size: 15px;
  font-weight: bold;
  color: #373396;
  text-decoration: none;
}
#news .article {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#news a.thumnail {
  display: block;
  text-decoration: none;
}
#news .thumnail .thumnailImg {
  line-height: 0;
}
#news .thumnail .thumnailImg > img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
#news .thumnail .thumnailTex {
  position: relative;
  height: auto;
  padding: 8px 0;
}
#news .thumnail .thumnailTex p.time {
  font-size: 12px;
  display: -webkit-flex;
  max-width: 100%;
  overflow: hidden;
  color: #373396;
  margin: 0;
  padding: 0;
}
#news .thumnail .thumnailTex .content {
  font-size: 14px;
  color: #373396;
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
  margin: 2px 0;
  padding: 0;
  overflow: hidden;
}
#news .thumnail .thumnailTex .content p {
  font-size: 14px;
  color: #373396;
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
}
.pager {
  position: relative;
  margin: 100px auto 20px;
  text-align: center;
}

.pager .next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 60px;
  margin: auto;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.pager .prev {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  margin: auto;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.pager .back {
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  margin: auto;
  width: 66px;
  height: 60px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.pager > span {
  color: #fff;
  background: #373396;
  padding: 4px 8px;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
}
.pager > a,
.pager .prev a,
.pager .next a {
  font-size: 14px;
  font-weight: bold;
  color: #373396;
  text-decoration: none;
}
.pager .prev img,
.pager .next img {
  vertical-align: middle;
  width: 30px;
  height: 60px;
}
.pager .prev p,
.pager .next p {
  text-align: center;
  color: #373396;
}
.pager .prev p,
.pager .next p {
  display: inline;
  vertical-align: middle;
}
.pager .back img {
  width: 66px;
  height: 34px;
}
@media screen and (max-width: 640px) {
#news .article {
  width: 100%;
  margin: 0 auto;
}
#news a.thumnail {
  width: 100%;
  height: auto;
  margin: 20px auto;
}
.pager {
  width: 100%;
}
.pager .prev img,
.pager .next img {
  vertical-align: middle;
  width: 20px;
  height: 30px;
}
.pager .back {
  top: -38px;
}
.pager .back img {
  width: 38px;
  height: 20px;
  margin-bottom: -4px;
}
}
@media screen and (min-width: 641px) {
#news .thumnail {
  width: 33.3333%;
  height: auto;
  max-width: 450px;
  padding: 20px;
  box-sizing: border-box;
}
.pager {
  width: 100%;
}
}
/*------------------------------------------------------------
single-works
------------------------------------------------------------*/
#single-news {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 60px 0;
}
#single-news .contents img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#single-news .contents img:first-child {
  margin: 0 auto 20px;
}

#single-news .contents ul,
#single-news .contents h1,
#single-news .contents h2,
#single-news .contents h3,
#single-news .contents h4,
#single-news .contents p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  color: #373396!Important;
}
#single-news .contents h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  color: #373396;
}
#single-news .contents hr {
  border-color: rgba(55, 51, 150, 0.25);
}
#single-news .contents a {
  word-break: break-all;
}
#single-news iframe {
  display: block;
  width: 100%;
  height: 300px;
}
#single-news .pager {
  position: relative;
  margin: 100px auto 20px;
}
#single-news .pager .next {
  position: absolute;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
#single-news .pager .prev {
  position: absolute;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
#single-news .pager .prev a,
#single-news .pager .back a,
#single-news .pager .next a {
  font-size: 14px;
  font-weight: bold;
  color: #373396;
  text-decoration: none;
}
#single-news .pager .prev p,
#single-news .pager .back p,
#single-news .pager .next p {
  text-align: center;
  color: #373396;
}
#single-news .pager .prev p,
#single-news .pager .next p {
  display: inline;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
#single-news {
  width: 100%;
  margin: 40px auto;
}
#single-news .contents p,
#single-news .contents ul,
#single-news .contents h1,
#single-news .contents h2,
#single-news .contents h3,
#single-news .contents h4 {
  width: 90%;
  margin: 0 auto;
}
#single-news .contents hr {
  display: none;
}
#single-news .pager {
  width: 90%;
}
}
@media screen and (min-width: 641px) {
#single-news {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto;
}
#single-news .pager {
  width: 100%;
}
}

#privacy {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 0 0;
}
#privacy h1 {
  color: #373396;
  font-size: 20px;
  text-align: center;
}
#privacy p.content {
  color: #373396;
  font-size: 14px;
  margin: 40px auto;
}
#privacy p.content span.subtitle {
  color: #373396;
  font-size: 14px;
  font-weight: bold;
}
#privacy a.top {
  display: block;
  width: 132px;
  margin: 0 auto;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  border: 1px solid #373396;
}



#contact {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 0 0;
}
#contact a.top {
  display: block;
  width: 132px;
  margin: 0 auto;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  border: 1px solid #373396;
  box-sizing: border-box;
}
#company {
  display: block;
}
#company h1 {
  color: #373396;
  font-size: 20px;
  text-align: center;
}
#company .contents {
  margin: 40px 0;
}
#company table tbody,
#company table tbody tr {
    border: none;
    background: none;
}
#company table {
  width: 100%;
  margin: 16px 0;
  padding: 0;
  line-height: 1.8em;
  border-collapse: collapse;
}
#company table th {
  width: 30%;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  margin: 2px 0;
  padding: 0;
  box-sizing: border-box;
}
#company table tr td:nth-child(2) {
  width: 20%;
  color: #373396;
  font-size: 14px;
  font-weight: bold;
  vertical-align: top;
  margin: 12px 0 4px;
  padding: 0;
  box-sizing: border-box;
}
#company table tr td:nth-child(3) {
  width: 50%;
  color: #373396;
  font-size: 14px;
  vertical-align: top;
  margin: 2px 0;
  padding: 0;
  box-sizing: border-box;
}
#company a.top {
  display: block;
  width: 132px;
  margin: 0 auto;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  border: 1px solid #373396;
}
@media screen and (min-width: 641px){
#company .content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 40px auto;
}
#company table tr {
  margin: 4px 0;
}
#company table th {
  padding: 0 4px 0 0;
}
#company table tr td:nth-child(2) {
  padding: 0 4px 0 0;
}
}
@media screen and (max-width: 640px){
#company table {
  line-height: 1.2em;
}
#company table tr:nth-child(1) th {
  margin: 32px 0 16px;
}
#company table th,
#company table td {
  display: block;
  width: 100%!Important;
}
#company table tr td.mrt-12 {
  margin-top: -10px;
}
}


#mail_out {
  display: block;
  margin: 120px auto 60px;
}
form#mailform h1 {
  color: #373396;
  font-size: 20px;
  text-align: center;
}
form#mailform p.ssl {
  margin: 40px 0;
  color: #373396;
  font-size: 13px;
  text-align: center;
}
form#mailform table {
  margin: 40px 0 28px;
  width: 100%;
}
form#mailform table th,
form#mailform table td {
  vertical-align: top;
  border: none;
}
form#mailform table tbody tr:nth-child(even) {
  background: none;
}
form#mailform table tbody,
form#mailform table tfoot,
form#mailform table thead {
  border: none;
  background: none;
}
form#mailform span {
  color: #373396;
  font-size: 14px;
  margin: 0 0 0 40px;
}
form#mailform th:before {
  content: "必須";
  position: absolute;
  background: #373396;
  color: #fff;
  padding: 2px 4px;
  font-size: 12px;
  top: 22px;
}
div#mfp_buttons {
  margin: -60px 0 0 0!Important;
}
div#mfp_buttons ul,
div#mfp_buttons ul li {
  overflow: visible!Important;
}
form#mailform input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 132px;
  height: auto;
  margin: 60px auto 0;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  background-image: none;
  background-color: #373396;
}
@media screen and (min-width: 641px){
form#mailform th {
  position: relative;
  width: 36%;
  text-align: left;
  box-sizing: border-box;
  padding: 22px 8px 12px 0;
}
form#mailform td {
  width: 64%;
  text-align: left;
  box-sizing: border-box;
  padding: 12px 0 12px 0;
}
form#mailform input[type="text"],
form#mailform input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%!Important;
  display: inline-block;
  color: #373396;
  font-size: 14px;
  border: 1px solid #373396;
  box-sizing: border-box;
  padding: 4px 0;
  margin: 0;
}
form#mailform textarea.mfp {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #373396;
  width: 100%!Important;
  font-size: 14px;
  border: 1px solid #373396;
  box-sizing: border-box;
  padding: 2px 0;
  height: 60px;
  margin: 0;
}
}
@media screen and (max-width: 640px){
form#mailform th {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  padding: 22px 8px 0px 0;
}
form#mailform td {
  display: block;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  padding: 0px 0 12px 0;
}
form#mailform input[type="text"],
form#mailform input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%!Important;
  color: #373396;
  font-size: 14px;
  border: 1px solid #373396;
  box-sizing: border-box;
  padding: 4px 0;
  margin: 8px 0 0;
}
form#mailform textarea.mfp {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%!Important;
  color: #373396;
  font-size: 14px;
  border: 1px solid #373396;
  box-sizing: border-box;
  padding: 2px 0;
  height: 60px;
  margin: 8px 0 0;
}
}

#media {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 0 0;
}
#media h2 {
  color: #373396;
  font-size: 20px;
  margin: 28px auto 16px;
  text-align: center;
}
#media img.center {
  display: block;
  margin: 20px auto;
}
#media section {
  margin: 40px auto 0;
}
#media h3 {
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin: 0 auto 4px;
}
#media h3.topmr {
  margin: 24px auto 4px;
}
#media p {
  color: #373396;
  font-size: 14px;
}
#media p.upper_read {
  color: #373396;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 641px){
section.clearfix img.left {
  width: 50%;
  max-width: 418px;
  height: auto;
  float: left;
  margin: 4px 12px 12px 0;
}
section.clearfix img.right {
  width: 50%;
  max-width: 418px;
  height: auto;
  float: right;
  margin: 4px 0 12px 12px;
}
}
@media screen and (max-width: 640px){
#media h2 {
  color: #373396;
  font-size: 20px;
  margin: 20px auto 16px;
  text-align: center;
}
section.clearfix img.left,
section.clearfix img.right {
  width: 100%;
  height: auto;
  float: none;
  margin: 0 auto 6px;
}
}

/*######################################
profile
======================================*/
#profile > .wrapper {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 0 0;
}
#media .tab,
#profile > .wrapper .tab {
  display: flex;
  justify-content: space-between;
  width: 340px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 12px;
}
#media .tab a,
#profile > .wrapper .tab a {
  text-decoration: none;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
}
#media .tab p.current,
#profile > .wrapper .tab p.current {
  border-bottom: 3px solid #373396;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
}
#profile > .wrapper section.img img {
  display: block;
  width: 100%;
  height: auto;
}
#profile > .wrapper section.txt {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
}
#profile h2 {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 24px;
  text-align: center;
}
#profile p.center {
  font-weight: bold;
  text-align: center;
}
#profile .box {
  display: flex;
  width: 100%;
}
#profile p {
  color: #373396;
  font-size: 14px;
  text-align: left;
}
#profile .box + .box {
  margin: 16px 0;
}
#profile .box span {
  color: #373396;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 641px){
body#profile {
  background-image: url("../../../img/profile/prof_bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#profile .box span:first-child {
  width: 140px;
}
#profile .box span:last-child {
  flex: 1;
}
}
@media screen and (max-width: 640px){
#profile > .wrapper {
  width: 100%;
}
#media .tab,
#profile > .wrapper .tab {
  width: 70%;
  max-width: 340px;
}
#media .tab a,
#media .tab p.current,
#profile > .wrapper .tab a,
#profile > .wrapper .tab p.current {
  font-size: 13px;
}
#profile .box {
  flex-wrap: wrap;
}
#profile .box span:first-child {
  width: 100%;
}
#profile .box span:last-child {
  width: 100%;
}
}




/*######################################
museum
======================================*/

#museum .wrapper {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 0;
  padding: 24px 40px 100px 0;
}
#museum .wrapper .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 580px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#museum .wrapper .tabmap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 90%;
  max-width: 610px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#museum .wrapper .tab a,
#museum .wrapper .tabmap a {
  text-decoration: none;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#museum .wrapper .tabmap a.map {
  border: 3px solid #373396;
  padding: 2px 12px;
}
#museum .wrapper .tab p.current {
  border-bottom: 3px solid #373396;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#museum .wrapper .tabmap p.map-current {
  border: 3px solid #373396;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
  padding: 2px 12px;
  background: #373396;
  box-sizing: border-box;
}
#museum .wrapper section.img img {
  display: block;
  width: 100%;
  height: auto;
}
#museum .wrapper section.txt {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
}
#museum h2 {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 4px;
  text-align: center;
  font-weight: bold;
}
#museum h3 {
  color: #373396;
  font-size: 19px;
  margin: 0 auto 24px;
  padding: 12px 0 0 0;
  text-align: center;
  font-weight: bold;
}
#museum h3.red {
  color: #db1500;
  font-size: 19px;
  margin: 0 auto 24px;
  padding: 12px 0 0 0;
  text-align: center;
  font-weight: bold;
}
#museum section.txt > div h3 {
  margin: 12px auto;
  width: 100%;
}
#museum h4 {
  color: #373396;
  font-size: 18px;
  margin: 12px auto;
  text-align: center;
  font-weight: bold;
}
#museum section.txt > div + div {
  margin: 40px auto;
}
#museum section.txt p {
  color: #373396;
  font-size: 14px;
  margin: 8px auto;
}
#museum section.txt p.big {
  color: #373396;
  font-size: 16px;
}
#museum section.txt p.red {
  color: #db1500;
}
#museum section.txt p.bold {
  font-weight: bold;
}

#museum section.txt p.red a {
  color: #db1500;
  font-weight: bold;
  text-decoration: underline;
}
#museum section.txt p.center {
  text-align: center;
}
#museum .map img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 40px auto;
}
#museum .box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
#museum .box a {
  display: block;
  width: 33.333%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
#museum .box a img {
  display: block;
  width: 100%;
  height: auto;
}
#museum #crmWebToEntityForm {
width: 70%;
margin: 0 auto;
}

#museum #crmWebToEntityForm form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  height: auto;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  background-image: none;
  background-color: #373396;
  border-radius: 0!Important;
}
#museum #crmWebToEntityForm form input[type="reset"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  height: auto;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  background-image: none;
  background-color: #373396;
  border-radius: 0!Important;
}
#museum p.tabletop {
width: 70%;
}
@media screen and (min-width: 641px){
#museum .bgwrap {
  width: 100%;
  height: initial;
  background-image: url("../../../img/museum/bg_saga.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#museum .sns-under {
  bottom: 10px;
}
}
@media screen and (max-width: 640px){
#museum .wrapper {
  width: 100%;
}
#museum .wrapper .tab {
  width: 90%;
}
#museum .wrapper .tab a,
#museum .wrapper .tab p.current {
  font-size: 13px;
}
#museum .box a {
  display: block;
  width: 50%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
#museum #crmWebToEntityForm {
width: 100%;
margin: 0 auto;
}
}





/*######################################
ginza
======================================*/

#ginza .wrapper {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 0;
  padding: 24px 40px 100px 0;
}
#ginza .wrapper .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 580px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#ginza .wrapper .tab a {
  text-decoration: none;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#ginza .wrapper .tab p.current {
  border-bottom: 3px solid #373396;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#ginza .wrapper section.img img {
  display: block;
  width: 100%;
  height: auto;
}
#ginza .wrapper section.txt {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
}
#ginza .wrapper section.txt img.topcenter {
  display: block;
  width: 80%;
  max-width: 300px;
  height: auto;
  margin: 20px auto;
}
#ginza .wrapper section.txt .videoframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 12px auto;
}
#ginza .wrapper section.txt video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ginza .wrapper section.txt .videoframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ginza h2 {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 4px;
  text-align: center;
  font-weight: bold;
}
#ginza h3 {
  color: #373396;
  font-size: 19px;
  margin: 0 auto 24px;
  padding: 12px 0 0 0;
  text-align: center;
  font-weight: bold;
}
#ginza section.txt > div h3 {
  margin: 12px auto;
  width: 100%;
}
#ginza h4 {
  color: #373396;
  font-size: 18px;
  margin: 12px auto;
  text-align: center;
  font-weight: bold;
}
#ginza section.txt > div + div {
  margin: 40px auto;
}
#ginza section.txt p {
  color: #373396;
  font-size: 14px;
  margin: 8px auto;
}
#ginza section.txt p.big {
  color: #373396;
  font-size: 16px;
}
#ginza section.txt p.red {
  color: #db1500;
}
#ginza section.txt p.red a {
  color: #db1500;
  font-weight: bold;
  text-decoration: underline;
}
#ginza section.txt p.center {
  text-align: center;
}
#ginza .map img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 40px auto;
}
#ginza .box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
#ginza .box a {
  display: block;
  width: 33.333%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
#ginza .box a img {
  display: block;
  width: 100%;
  height: auto;
}
#ginza #crmWebToEntityForm {
width: 70%;
margin:  0 auto;
}
#ginza p.tabletop {
width: 70%;
}
#ginza #news .thumnail {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  box-sizing: border-box;
}
#ginza #news .thumnail + .thumnail {
  margin: 20px 0 0;
}
@media screen and (min-width: 801px){
#ginza .wrapper section.txt .videoframe {
  position: relative;
  width: 800px;
  padding-top: 450px;
  margin: 12px auto;
}
}
@media screen and (min-width: 641px){
#ginza .bgwrap {
  width: 100%;
  height: initial;
  background-image: url("../../../img/ginza/bg_ginza.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#ginza .sns-under {
  bottom: 10px;
}
}
@media screen and (max-width: 640px){
#ginza .wrapper {
  width: 100%;
}
#ginza .wrapper .tab {
  width: 90%;
}
#ginza .wrapper .tab a,
#ginza .wrapper .tab p.current {
  font-size: 13px;
}
#ginza .box a {
  display: block;
  width: 50%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
}



/*######################################
exhibition
======================================*/

#exhibition .wrapper {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 40px 140px 0;
}
#exhibition .wrapper .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 300px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#exhibition .wrapper .tab a {
  text-decoration: none;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#exhibition .wrapper .tab p.current {
  border-bottom: 3px solid #373396;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#exhibition .wrapper section.img img {
  display: block;
  width: 100%;
  height: auto;
}
#exhibition .wrapper section.txt {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
}
#exhibition .wrapper section.txt img.topcenter {
  display: block;
  width: 80%;
  max-width: 300px;
  height: auto;
  margin: 20px auto;
}
#exhibition .wrapper section.txt .videoframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 12px auto;
}
#exhibition .wrapper section.txt video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#exhibition h2 {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 4px;
  text-align: center;
  font-weight: bold;
}
#exhibition h3 {
  color: #373396;
  font-size: 19px;
  margin: 0 auto 24px;
  padding: 12px 0 0;
  text-align: center;
  font-weight: bold;
}
#exhibition section.txt > div h3 {
  margin: 12px auto;
  width: 100%;
}
#exhibition h4 {
  color: #373396;
  font-size: 18px;
  margin: 12px auto;
  text-align: center;
  font-weight: bold;
}
#exhibition section.txt > div + div {
  margin: 40px auto;
}
#exhibition section.txt p {
  color: #373396;
  font-size: 14px;
  margin: 8px auto;
}
#exhibition section.txt p.big {
  color: #373396;
  font-size: 16px;
}
#exhibition section.txt p.red {
  color: #db1500;
}
#exhibition section.txt p.red a {
  color: #db1500;
  font-weight: bold;
  text-decoration: underline;
}
#exhibition section.txt p.center {
  text-align: center;
}
#exhibition .map img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 40px auto;
}
#exhibition .box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
#exhibition .box a {
  display: block;
  width: 33.333%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
#exhibition .box a img {
  display: block;
  width: 100%;
  height: auto;
}
#exhibition #crmWebToEntityForm {
width: 70%;
margin:  0 auto;
}
#exhibition p.tabletop {
width: 70%;
}
@media screen and (min-width: 801px){
#exhibition > .wrapper section.txt .videoframe {
  position: relative;
  width: 800px;
  padding-top: 450px;
  margin: 12px auto;
}
}
@media screen and (min-width: 641px){
#exhibition .bgwrap {
  width: 100%;
  height: initial;
  background-image: url("../../../img/exhibition/bg_ex.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#exhibition .sns-under {
  bottom: 10px;
}
}
@media screen and (max-width: 640px){
#exhibition .wrapper {
  width: 100%;
}
#exhibition .wrapper .tab {
  width: 90%;
}
#exhibition .wrapper .tab a,
#exhibition .wrapper .tab p.current {
  font-size: 13px;
}
#exhibition .box a {
  display: block;
  width: 50%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
}

/*######################################
05_1作品紹介一覧
======================================*/
#gallery {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 60px auto 100px;
  padding: 0 40px 0 0;
}
#gallery #page_title {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 4px;
  text-align: center;
  font-weight: bold;
}

#gallery #content #content_in {
  padding: 20px 0 45px 0;
}

#gallery #content #content_in ul {
  margin: 58px 0 0 0;
  text-align: center;
}

#gallery #content #content_in #category_nav ul li {
  padding:10px 5px 2px;
  margin:0 10px;
  display:inline-block;
  font-size:14px;
}
#gallery #content #content_in #works_list {
  margin: 20px auto 0;
}
#gallery #content #content_in #works_list .box .left {
  float: left;
  color: #373396;
}

#gallery #content #content_in #works_list .box .right {
  float: right;
  color: #373396;
}
#gallery .article {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#gallery .box > a img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
#gallery .box {
  width: 100%;
  margin: 24px auto;
}
#gallery .box > a {
  width: 100%;
  height: auto;
  margin: auto;
}
}
@media screen and (min-width: 641px) {
#gallery .box {
  width: 33.3333%;
  height: auto;
  max-width: 450px;
  margin: 12px 0;
  padding: 16px;
  box-sizing: border-box;
}
}
/*######################################
05_2作品紹介詳細
======================================*/
#gallery_detail {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 24px auto 100px;
  padding: 0 40px 60px 0;
}
#gallery_detail #page_title {
  font-size: 20px;
  text-align: center;
}

#gallery_detail #content_in {
  padding: 20px 0 0 0;
}

#gallery_detail #content_in #content_head {
  margin: 8px 0;
}

#gallery_detail #content_in #content_head h2 {
  font-size: 18px;
  text-align: center;
  margin: -8px auto 24px;
}

#gallery_detail #content_in #content_head p {
  float: right;
  font-size: 10px;
  padding-top: 5px;
}

#gallery_detail #content_in #caption > img {
  margin-bottom: 20px;
  width: 100%;
  height:auto;
}


#gallery_detail #content_bottom {
  position: relative;
}

#gallery_detail #content_bottom #go_prev {
  float: left;
}

#gallery_detail #content_bottom #go_back {
  position: absolute;
  left: 489px;
}

#gallery_detail #content_bottom #go_next {
  float: right;
}


@media screen and (min-width: 641px){
#gallery_detail {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto;
}
#gallery_detail #content_in section #caption p {
  display: flex;
  justify-content: space-between;
}
#gallery_detail #content_in section #caption p a {
    width: 32%;
}
#gallery_detail #content_in section #caption p a img {
    display: block;
    width: 100%;
    height: auto;
}
}
@media screen and (max-width: 640px){
#gallery_detail {
  width: 100%;
  margin: 40px auto;
}
#gallery_detail #content_in section #caption p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
}
#gallery_detail #content_in section #caption p a {
    width: 100%;
}
#gallery_detail #content_in section #caption p a img {
  display: block;
  width: 100%;
  height: auto;
}
#gallery_detail #content_in #caption > div > img {
  width: 100%;
  height:auto;
}
}


/*######################################
下揃え限定的要望対処
======================================*/
@media screen and (min-width: 1221px){
.pcmax40 {
  margin: 40px auto 4px!Important;
}
.pcmax90 {
  margin: 90px auto 4px!Important;
}
.pcmax92 {
  margin: 92px auto 4px!Important;
}
.pcmax114 {
  margin: 114px auto 4px!Important;
}
.pcmax164 {
  margin: 164px auto 4px!Important;
}
}

/*######################################
video_youtube紹介_ginza複製
======================================*/

#video .wrapper {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 0;
  padding: 24px 40px 100px 0;
}
#video .wrapper .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 580px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#video .wrapper .tab a {
  text-decoration: none;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#video .wrapper .tab p.current {
  border-bottom: 3px solid #373396;
  color: #373396;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}
#video .wrapper section.img img {
  display: block;
  width: 100%;
  height: auto;
}
#video .wrapper section.txt {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
}
#video .wrapper section.txt img.topcenter {
  display: block;
  width: 80%;
  max-width: 300px;
  height: auto;
  margin: 20px auto;
}
#video .wrapper section.txt .videoframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 12px auto;
}
#video .wrapper section.txt video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video .wrapper section.txt .videoframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video h2 {
  color: #373396;
  font-size: 20px;
  margin: 0 auto 4px;
  text-align: center;
  font-weight: bold;
}
#video h3 {
  color: #373396;
  font-size: 19px;
  margin: 0 auto 24px;
  padding: 12px 0 0 0;
  text-align: center;
  font-weight: bold;
}
#video section.txt > div h3 {
  margin: 12px auto;
  width: 100%;
}
#video h4 {
  color: #373396;
  font-size: 18px;
  margin: 12px auto;
  text-align: center;
  font-weight: bold;
}
#video section.txt > div + div {
  margin: 40px auto;
}
#video section.txt p {
  color: #373396;
  font-size: 14px;
  margin: 8px auto;
}
#video section.txt p.big {
  color: #373396;
  font-size: 16px;
}
#video section.txt p.red {
  color: #db1500;
}
#video section.txt p.red a {
  color: #db1500;
  font-weight: bold;
  text-decoration: underline;
}
#video section.txt p.center {
  text-align: center;
}
#video .map img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 40px auto;
}
#video .box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
#video .box a {
  display: block;
  width: 33.333%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
#video .box a img {
  display: block;
  width: 100%;
  height: auto;
}
#video #crmWebToEntityForm {
width: 70%;
margin:  0 auto;
}
#video p.tabletop {
width: 70%;
}
#video #news .thumnail {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  box-sizing: border-box;
}
#video #news .thumnail + .thumnail {
  margin: 20px 0 0;
}
@media screen and (min-width: 801px){
#video .wrapper section.txt .videoframe {
  position: relative;
  width: 800px;
  padding-top: 450px;
  margin: 12px auto;
}
}
@media screen and (min-width: 641px){
#video .bgwrap {
  width: 100%;
  height: initial;
  background-image: url("../../../img/video/bg_video.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#video .sns-under {
  bottom: 10px;
}
}
@media screen and (max-width: 640px){
#video .wrapper {
  width: 100%;
}
#video .wrapper .tab {
  width: 90%;
}
#video .wrapper .tab a,
#video .wrapper .tab p.current {
  font-size: 13px;
}
#video .box a {
  display: block;
  width: 50%;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}
}

/*------------------------------------------------------------
モーダルメニュー 
------------------------------------------------------------*/
.modal-overlay {
  z-index: 999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;/*for old Safari*/
  height: 100vh;
  background-color: rgba(0,0,0,.5);
}
.modal-overlay (:target) {
  height: 100%\9;
} /* IE9,10 */
a.modal-open:hover {
  cursor: pointer;
  color: #fff;
}
.modal-content {
  position: fixed;
  display: none;
  z-index: 9999;
}
.modal-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 12px;
  border-radius: 4px;
  background: #fff;
}
a.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  color:#ddd;
  font-size: 2em;
  line-height:1;
  font-weight:bold;
  text-decoration:none;
}
a.modal-close:hover {
  cursor: pointer;
  opacity: 0.6
}


/*------------------------------------------------------------
↓↓↓↓↓↓↓　20200416Eストアー追記　ー　コラム
------------------------------------------------------------*/
.kusaba-column h2 {
    font-size: 150% !important;
    margin: 2% auto !important;
}

.kusaba-column h3 {
    margin: 3% auto 2% !important;
    font-size: 120% !important;
    border-bottom: 1px solid #999;
    padding-bottom: 0.5%;
}

/*------------------------------------------------------------
↑↑↑↑↑↑↑　20200416Eストアー追記　ー　コラム
------------------------------------------------------------*/



