@charset "UTF-8";
@import "html5doctor.css";
@import "fonts.css";
@import "clear.css";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,400);
/* Layout
================================================*/
html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  text-align: left;
  -webkit-text-size-adjust: 100%; /* iOS */
}

h1,
h2,
h3,
p,
figcaption {
  font-weight: 300;
}

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

a:hover,
a:active {
  color: #000;
}

ul {
  list-style: none outside;
}

a:focus,
input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea,
select,
button {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  /*	-moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;*/
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

.pc {
  display: none;
}

/* wrapper
================================================*/
#wrapper {
  width: 100%;
}

/* masthead
================================================*/
#masthead {
  width: 100%;
  height: 66px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 2;
}
#masthead #header-inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  padding-right: 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#masthead #header-inner #site-title img {
  width: 106px;
  height: auto;
}
#masthead #header-inner .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
#masthead #header-inner .sns #fb,
#masthead #header-inner .sns #insta {
  display: block;
  width: 26px;
  height: 26px;
}
#masthead #header-inner .sns #fb img,
#masthead #header-inner .sns #insta img {
  width: 100%;
  height: auto;
}
#masthead .toggle-gnav {
  display: block;
  position: absolute;
  top: 0px;
  right: 15px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 9px;
  height: 46px;
  width: 36px;
  -webkit-tap-highlight-color: transparent;
  z-index: 11;
  background: url(../images/header/bg_menu_btn.png) no-repeat left top;
  background-size: 36px 46px;
}
#masthead .toggle-gnav .toggle-gnav-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
}
#masthead .toggle-gnav .toggle-gnav-bar + .toggle-gnav-bar {
  margin-top: 4px;
}
#masthead #nav-head {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -209px;
  width: 209px;
  height: 100vh;
  z-index: 12;
  padding: 56px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(51, 51, 51, 0.9);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#masthead #nav-head.active {
  -webkit-transform: translateX(-209px);
  transform: translateX(-209px);
}
#masthead #nav-head .toggle-gnav-bar {
  background-color: #fff;
}
#masthead #nav-head .toggle-gnav-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
  ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#masthead #nav-head .toggle-gnav-bar:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#masthead #nav-head .toggle-gnav-bar:nth-child(3) {
  opacity: 0;
}
#masthead #nav-head .toggle-gnav-bar + .toggle-gnav-bar {
  margin-top: -2px;
}
#masthead #nav-head ul {
  list-style: none outside;
  margin: 0;
}
#masthead #nav-head ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#masthead #nav-head ul li a {
  display: block;
  position: relative;
  padding: 12px 55px;
  overflow: hidden;
  width: 100%;
}
#masthead #nav-head ul li a span {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0.12em;
  color: #fff;
  font-size: 153.9%;
}
#masthead #nav-head ul li a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #fff;
  top: 23px;
  margin-left: 12px;
}
#masthead #nav-head ul li a.sub {
  color: #fff;
  text-indent: 1em;
  font-size: 123.9%;
  font-weight: 100;
  letter-spacing: 0.12em;
  padding: 6px 55px 12px;
}
#masthead #nav-head ul li a.sub::after {
  content: none;
}

/* footer
================================================*/
#to-top {
  background-image: url("../images/footer/to_top.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 36px;
  display: none;
  position: fixed;
  right: 15px;
  bottom: 14px;
  width: 36px;
  height: 52px;
  text-indent: -9999px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#colophon {
  margin-top: 20px;
}
#colophon #footer-inner {
  margin: 0 auto;
  padding: 20px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #666;
  text-align: center;
}
#colophon #footer-inner .copy {
  color: #fff;
  font-size: 77%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0.12em;
}

/* slide
================================================*/
.slide {
  width: 100%;
  height: 200px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}
.slide .inner {
  width: 100%; /*height: 100%;*/
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.slide .inner.slick-initialized {
  opacity: 1;
}
.slide .inner img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.slide .wave {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.slide .wave img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* content
================================================*/
#content {
  padding-top: 100px;
}
.home #content {
  padding-top: 66px;
}
#content .sec-lv1 {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 50px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* トップページ */
  /* 下層ページ */
  /* info */
  /* event */
  /* 個別ページ */
  /* contact */
  /* rental-space */
  /* schedule */
}
#content .sec-lv1.wide {
  padding: 0;
}
.home #content .sec-lv1.wide .inner {
  background: none;
}
#content .sec-lv1.wide .inner .line-wave {
  padding: 0 25px;
  max-width: 1400px;
  margin: 0 auto;
}
#content .sec-lv1.wide .inner .line-wave::after {
  content: "";
  width: 100%;
  background: url(../images/bg_sec_divider.gif) repeat-x left bottom;
  background-size: 15px;
  display: block;
  height: 20px;
}
#content .sec-lv1 .inner {
  padding-bottom: 50px;
}
.home #content .sec-lv1 .inner {
  background: url(../images/bg_sec_divider.gif) repeat-x left bottom;
  background-size: 15px;
}
#content .sec-lv1 h2 {
  margin-bottom: 24px;
}
#content .sec-lv1 h2 img {
  width: 134px;
  height: auto;
}
.home #content .sec-lv1.info ul {
  max-width: 488px;
  margin: 0 auto 30px;
}
.home #content .sec-lv1.info ul li {
  margin-bottom: 12px;
}
.home #content .sec-lv1.info ul li article {
  display: table;
  table-layout: fixed;
  width: 100%;
  text-align: left;
}
.home #content .sec-lv1.info ul li article time {
  display: table-cell;
  width: 90px;
  font-size: 100%;
  vertical-align: top;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}
.home #content .sec-lv1.info ul li article h3 {
  display: table-cell;
  width: 100%;
  font-size: 100%;
  vertical-align: top;
  line-height: 1.7em;
}
.home #content .sec-lv1.event ul {
  max-width: 488px;
  margin: 0 auto -40px;
}
.home #content .sec-lv1.event ul li {
  float: left;
  width: 45%;
  margin-right: 10%;
  margin-bottom: 40px;
}
.home #content .sec-lv1.event ul li:nth-child(2n) {
  margin-right: 0;
}
.home #content .sec-lv1.event ul li:nth-child(2n+1) {
  clear: both;
}
.home #content .sec-lv1.event ul li article {
  text-align: left;
}
.home #content .sec-lv1.event ul li article .thumb {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 10px;
}
.home #content .sec-lv1.event ul li article .thumb img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.home #content .sec-lv1.event ul li article time {
  font-size: 93%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0.12em;
  font-weight: 300;
  margin-bottom: 4px;
  display: block;
  text-align: center;
}
.home #content .sec-lv1.event ul li article h3 {
  font-size: 100%;
  line-height: 1.7em;
  font-weight: 400;
}
.home #content .sec-lv1.concept h3 {
  font-size: 153.9%;
  margin-bottom: 24px;
}
.home #content .sec-lv1.concept p {
  font-size: 108%;
  line-height: 2.7;
  margin-bottom: 14px;
  text-align: left;
}
.home #content .sec-lv1.map img.image-map {
  width: 100%;
  height: auto;
  vertical-align: middle;
  max-width: 890px;
  margin-top: 20px;
}
.home #content .sec-lv1.access .inner {
  padding-bottom: 20px;
}
.home #content .sec-lv1.access .data {
  margin: 30px 0;
  padding: 0 25px;
}
.home #content .sec-lv1.access .data img {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
}
.home #content .sec-lv1.access .data p {
  font-size: 93%;
  font-weight: 400;
}
.home #content .sec-lv1.shop_space ul {
  border-bottom: 2px dotted #808080;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.home #content .sec-lv1.shop_space ul.last {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.home #content .sec-lv1.shop_space ul li {
  padding: 50px 0 0 50px;
  margin-bottom: 24px;
}
.home #content .sec-lv1.shop_space ul li:last-child {
  margin-bottom: 0;
}
.home #content .sec-lv1.shop_space ul li article {
  text-align: left;
  color: #333;
}
.home #content .sec-lv1.shop_space ul li article .thumb {
  position: relative;
  margin-bottom: 20px;
}
.home #content .sec-lv1.shop_space ul li article .thumb .bld {
  position: absolute;
  top: -50px;
  left: -50px;
  display: block;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: left top;
}
.home #content .sec-lv1.shop_space ul li article .thumb .bld.bld-a {
  background-image: url(../images/icon_bld_a.png);
}
.home #content .sec-lv1.shop_space ul li article .thumb .bld.bld-b {
  background-image: url(../images/icon_bld_b.png);
}
.home #content .sec-lv1.shop_space ul li article .thumb .bld.bld-c {
  background-image: url(../images/icon_bld_c.png);
}
.home #content .sec-lv1.shop_space ul li article .thumb .bld.bld-s {
  background-image: url(../images/icon_bld_s.png);
}
.home #content .sec-lv1.shop_space ul li article .thumb .flr {
  position: absolute;
  top: 10px;
  left: -30px;
  display: block;
  width: 23px;
  height: 18px;
  text-indent: -9999px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left top;
}
.home #content .sec-lv1.shop_space ul li article .thumb .flr.flr-1 {
  background-image: url(../images/icon_flr_1f.gif);
}
.home #content .sec-lv1.shop_space ul li article .thumb .flr.flr-2 {
  background-image: url(../images/icon_flr_2f.gif);
}
.home #content .sec-lv1.shop_space ul li article .thumb .flr.flr-3 {
  background-image: url(../images/icon_flr_3f.gif);
}
.home #content .sec-lv1.shop_space ul li article .thumb a {
  display: block;
}
.home #content .sec-lv1.shop_space ul li article .thumb img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.home #content .sec-lv1.shop_space ul li article .thumb .for-rent {
  position: absolute;
  bottom: 0;
  display: block;
  color: #fff;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: right;
  font-size: 93%;
}
.home #content .sec-lv1.shop_space ul li article h3 {
  font-size: 108%;
  font-weight: 400;
  margin-bottom: 8px;
}
.home #content .sec-lv1.shop_space ul li article ul.category {
  overflow: hidden;
  margin-bottom: 14px;
  border-bottom: 0;
  padding: 0;
}
.home #content .sec-lv1.shop_space ul li article ul.category li {
  font-size: 85%;
  padding: 0;
  display: inline;
  margin-right: 8px;
  margin-bottom: 0;
  float: none;
}
.home #content .sec-lv1.shop_space ul li article p {
  font-size: 100%;
  line-height: 1.7;
  margin-bottom: 14px;
}
.home #content .sec-lv1.shop_space ul li article .hours {
  font-size: 93%;
  display: block;
  margin-bottom: 4px;
  line-height: 1.5;
  font-weight: 300;
}
.home #content .sec-lv1.shop_space ul li article .site {
  font-size: 93%;
  display: block;
  margin-bottom: 4px;
  color: #39b34a;
  text-decoration: underline;
  font-weight: 300;
}
.home #content .sec-lv1.shop_space ul li article .tel {
  font-size: 93%;
  display: block;
  margin-bottom: 4px;
  font-weight: 300;
}
.home #content .sec-lv1.contact .inner {
  background: none;
}
#content .sec-lv1 .page .entry-header {
  display: none;
}
.info #content .sec-lv1 {
  max-width: 980px;
}
.info #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.info #content .sec-lv1 ul {
  text-align: left;
}
.info #content .sec-lv1 ul li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #4d4d4d;
}
.info #content .sec-lv1 ul li time {
  margin-bottom: 14px;
  padding-bottom: 4px;
  border-bottom: 1px dotted #000;
  display: inline-block;
  letter-spacing: 0.1em;
}
.info #content .sec-lv1 ul li h3 {
  font-size: 123.1%;
  margin-bottom: 20px;
}
.info #content .sec-lv1 ul li p {
  font-size: 100%;
  line-height: 1.7;
}
.event #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.event #content .sec-lv1 ul.events {
  max-width: 488px;
  margin: 0 auto 30px;
}
.event #content .sec-lv1 ul.events li {
  float: left;
  width: 45%;
  margin-right: 10%;
  margin-bottom: 20px;
}
.event #content .sec-lv1 ul.events li:nth-child(2n) {
  margin-right: 0;
}
.event #content .sec-lv1 ul.events li:nth-child(2n+1) {
  clear: both;
}
.event #content .sec-lv1 ul.events li article {
  text-align: left;
}
.event #content .sec-lv1 ul.events li article .thumb {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 10px;
}
.event #content .sec-lv1 ul.events li article .thumb img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.event #content .sec-lv1 ul.events li article time {
  font-size: 93%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0.12em;
  font-weight: 300;
  margin-bottom: 4px;
  display: block;
  text-align: center;
}
.event #content .sec-lv1 ul.events li article h3 {
  font-size: 100%;
  line-height: 1.7em;
  font-weight: 400;
}
.event.single #content .sec-lv1, .info.single #content .sec-lv1 {
  max-width: 980px;
}
.event.single #content .sec-lv1 article, .info.single #content .sec-lv1 article {
  text-align: left;
}
.event.single #content .sec-lv1 article .entry-header, .info.single #content .sec-lv1 article .entry-header {
  border-bottom: 1px solid #4d4d4d;
  padding: 0 0 6px 20px;
  background-image: url(../images/sign.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 6px;
  margin: 20px 0;
}
.event.single #content .sec-lv1 article .entry-header h1, .info.single #content .sec-lv1 article .entry-header h1 {
  font-size: 138.5%;
  margin-bottom: 8px;
  line-height: 1.5;
}
.event.single #content .sec-lv1 article .entry-header time, .info.single #content .sec-lv1 article .entry-header time {
  font-size: 93%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
  text-align: right;
}
.event.single #content .sec-lv1 article .entry-content p, .info.single #content .sec-lv1 article .entry-content p {
  font-size: 100%;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.event.single #content .sec-lv1 article .entry-content a, .info.single #content .sec-lv1 article .entry-content a {
  color: #39b34a;
  text-decoration: underline;
  font-weight: 300;
}
.event.single #content .sec-lv1 article .entry-content ul, .info.single #content .sec-lv1 article .entry-content ul {
  list-style-type: disc;
  font-size: 93%;
  margin-bottom: 1.5em;
}
.event.single #content .sec-lv1 article .entry-content ul li, .info.single #content .sec-lv1 article .entry-content ul li {
  margin-left: 1.5em;
  padding: 0;
  border-bottom: 0;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 300;
}
.event.single #content .sec-lv1 article .entry-content b, .info.single #content .sec-lv1 article .entry-content b {
  font-weight: bold;
}
.event.single #content .sec-lv1 article .entry-content figure, .info.single #content .sec-lv1 article .entry-content figure {
  max-width: 100%;
  margin-bottom: 1.5em;
}
.event.single #content .sec-lv1 article .entry-content figure img, .info.single #content .sec-lv1 article .entry-content figure img {
  margin-bottom: 8px;
}
.event.single #content .sec-lv1 article img, .info.single #content .sec-lv1 article img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 1.5em;
}
.event.single #content .sec-lv1 article img.main-img, .info.single #content .sec-lv1 article img.main-img {
  width: 100%;
  margin-bottom: 0;
}
.contact #content .sec-lv1 {
  max-width: 980px;
}
.contact #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.contact #content .sec-lv1 article {
  text-align: left;
}
.contact #content .sec-lv1 article .mw_wp_form_g-naked input,
.contact #content .sec-lv1 article .mw_wp_form_g-naked textarea {
  width: 100%;
  border-radius: 0;
  background-color: #f0f0f0;
  border: 0;
  padding: 6px;
  margin-top: 10px;
}
.contact #content .sec-lv1 article .mw_wp_form_g-naked .action-buttons {
  text-align: center;
}
.contact #content .sec-lv1 article .mw_wp_form_g-naked .action-buttons input {
  display: inline-block;
  width: 45%;
  max-width: 200px;
  padding: 8px 0;
  border: 1px solid #000;
  margin: 40px auto 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 13px;
  text-shadow: none;
}
.rental-space #content .sec-lv1 {
  max-width: 980px;
}
.rental-space #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.rental-space #content .sec-lv1 article {
  text-align: left;
}
.rental-space #content .sec-lv1 article article {
  margin-bottom: 50px;
  padding-bottom: 50px;
  background: url(../images/bg_sec_divider.gif) repeat-x left bottom;
  background-size: 15px;
}
.rental-space #content .sec-lv1 article article.niwa {
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
}
.rental-space #content .sec-lv1 article h3 {
  font-size: 138.5%;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.rental-space #content .sec-lv1 article h4 {
  font-size: 198%;
  padding-left: 46px;
  position: relative;
  height: 36px;
  vertical-align: bottom;
  display: table-cell;
  padding-bottom: 20px;
  line-height: 1;
}
.rental-space #content .sec-lv1 article h4 .bld.bld-s {
  background-image: url(../images/icon_bld_s.png);
}
.rental-space #content .sec-lv1 article h4 .bld {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 36px;
  height: 36px;
  text-indent: -9999px;
  background-size: 36px 36px;
  background-repeat: no-repeat;
  background-position: left top;
}
.rental-space #content .sec-lv1 article p {
  line-height: 1.7;
  margin-bottom: 1em;
}
.rental-space #content .sec-lv1 article p.notice {
  margin-bottom: 60px;
}
.rental-space #content .sec-lv1 article .slide-space-01,
.rental-space #content .sec-lv1 article .slide-space-02 {
  /*height: 500px;*/
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;
}
.rental-space #content .sec-lv1 article .slide-space-01 img,
.rental-space #content .sec-lv1 article .slide-space-02 img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.rental-space #content .sec-lv1 article a {
  color: #39b34a;
  text-decoration: underline;
  font-weight: 300;
}
.rental-space #content .sec-lv1 article .nav-slide-01,
.rental-space #content .sec-lv1 article .nav-slide-02 {
  margin-bottom: 40px;
  margin-left: -4px;
}
.rental-space #content .sec-lv1 article .nav-slide-01 img,
.rental-space #content .sec-lv1 article .nav-slide-02 img {
  width: 100%;
  height: auto;
  vertical-align: top;
  opacity: 0.5;
  margin: 0 4px;
  /*&:last-child { margin-right: 0;}*/
}
.rental-space #content .sec-lv1 article .nav-slide-01 img.slick-current,
.rental-space #content .sec-lv1 article .nav-slide-02 img.slick-current {
  opacity: 1;
}
.schedule #content .sec-lv1 {
  max-width: 980px;
}
.schedule #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.concept #content .sec-lv1 {
  padding: 0;
}
.concept #content .sec-lv1 .inner {
  padding-bottom: 0;
}
.concept #content .sec-lv1 .main-cut {
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.concept #content .sec-lv1 .main-cut img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.concept #content .sec-lv1 .sec-top {
  width: 100%;
  padding: 0 25px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 60px;
  text-align: left;
}
.concept #content .sec-lv1 .sec-top .inner {
  max-width: 580px;
  margin: 0 auto;
}
.concept #content .sec-lv1 .sec-top h3 {
  font-size: 153.9%;
  line-height: 1.5;
  margin-bottom: 20px;
}
.concept #content .sec-lv1 .sec-top p {
  line-height: 2.4;
  margin-bottom: 2em;
}
.concept #content .sec-lv1 .sec-top img {
  max-width: 100%;
  height: auto;
}
.concept #content .sec-lv1 .sec-bottom {
  padding: 0 25px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
}
.concept #content .sec-lv1 .sec-bottom .inner {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid #ddd;
  padding-top: 60px;
}
.concept #content .sec-lv1 .sec-bottom h3 {
  font-size: 108%;
  line-height: 1.5;
  margin-bottom: 40px;
}
.concept #content .sec-lv1 .sec-bottom dl {
  overflow: hidden;
  max-width: 340px;
}
.concept #content .sec-lv1 .sec-bottom dl dt {
  width: 48%;
  float: left;
  margin-right: 4%;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 93%;
}
.concept #content .sec-lv1 .sec-bottom dl dd {
  width: 48%;
  float: left;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 93%;
}
.concept #content .sec-lv1 .sec-bottom img {
  max-width: 100%;
  height: auto;
}
#content .sec-lv1 .btn-frame-border {
  display: block;
  width: 200px;
  padding: 8px 0;
  border: 1px solid #000;
  margin: 40px auto 0;
}
#content .sec-lv1 .btn-gray-arrow {
  position: relative;
  display: inline-block;
  padding: 4px 14px 4px 32px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-size: 85%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  background-color: #b1b1b1;
  float: right;
  margin-bottom: 14px;
}
#content .sec-lv1 .btn-gray-arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 14px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
#content .sec-lv1 .nav-page a {
  width: 45%;
  display: inline-block;
  max-width: 200px;
}
#content .sec-lv1 .nav-page a + a {
  margin-left: 10px;
}

/* Google Map */
#map_container {
  position: relative;
  padding-top: 50%;
  width: 100%;
  margin: 0 auto;
}

#map-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

/* Google カレンダー */
.cal_wrapper {
  /*max-width: 960px;*/
  /*min-width: 300px;*/
  margin: 2.0833% auto;
}

.googlecal {
  position: relative;
  padding-bottom: 100%; /* 縦横比 */
  height: 0;
}

.googlecal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 画面幅が768px以上の場合の縦横比の指定 */
@media only screen and (min-width: 768px) {
  .googlecal {
    padding-bottom: 75%;
  }
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* PC
================================================*/
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  /* masthead
  ================================================*/
  #masthead #header-inner #site-title img {
    width: 142px;
  }
  /* footer
  ================================================*/
  #to-top {
    /*@include rollover;*/
    right: 30px;
    bottom: 80px;
  }
  #to-top:hover {
    opacity: 0.7;
  }
  /* content
  ================================================*/
  .slide {
    height: 400px;
  }
  #content .sec-lv1 {
    /* トップページ */
    /* 下層ページ */
    /* info */
    /* event */
    /* rental-space */
    /* concept */
  }
  #content .sec-lv1 h2 {
    margin-bottom: 50px;
  }
  #content .sec-lv1 h2 img {
    width: 268px;
  }
  .home #content .sec-lv1.event ul {
    max-width: 90%;
  }
  .home #content .sec-lv1.event ul li {
    width: 20.5%;
    margin-right: 6%;
  }
  .home #content .sec-lv1.event ul li:nth-child(2n) {
    margin-right: 6%;
  }
  .home #content .sec-lv1.event ul li:nth-child(2n+1) {
    clear: none;
  }
  .home #content .sec-lv1.event ul li:nth-child(4n) {
    margin-right: 0;
  }
  .home #content .sec-lv1.event ul li:nth-child(4n+1) {
    clear: both;
  }
  .home #content .sec-lv1.event ul li a article {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
  }
  .home #content .sec-lv1.event ul li a:hover {
    text-decoration: underline;
  }
  .home #content .sec-lv1.event ul li a:hover article {
    opacity: 0.5;
  }
  .home #content .sec-lv1.event ul li a {
    position: relative;
    /*&:hover::before {
    	content: ""; width: 12px; height: 43px; position: absolute; top: -16px; left: 50%; background-image: url(../images/sign.png); background-repeat: no-repeat; background-position: left top; background-size: 12px; margin-left: -6px; z-index: 1;
    }*/
  }
  .home #content .sec-lv1.shop_space ul {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  .home #content .sec-lv1.shop_space ul li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 0;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .home #content .sec-lv1.shop_space ul li:nth-child(3n) {
    margin-right: 0;
  }
  .home #content .sec-lv1.shop_space ul li article .thumb {
    /*a { @include rollover;
    	&:hover { opacity: 0.7;}
    }*/
  }
  .home #content .sec-lv1.shop_space ul li article .thumb .flr {
    top: 14px;
    left: -34px;
    background-size: 23px;
  }
  .home #content .sec-lv1.shop_space ul li article .thumb .for-rent {
    font-size: 108%;
  }
  .home #content .sec-lv1.shop_space ul li article h3 {
    font-size: 123.1%;
    margin-bottom: 12px;
  }
  .home #content .sec-lv1.shop_space ul li article ul.category {
    overflow: hidden;
    margin-bottom: 20px;
  }
  .home #content .sec-lv1.shop_space ul li article ul.category li {
    font-size: 93%;
  }
  .home #content .sec-lv1.shop_space ul li article p {
    font-size: 108%;
    margin-bottom: 20px;
  }
  .home #content .sec-lv1.shop_space ul li article .hours {
    margin-bottom: 6px;
  }
  .home #content .sec-lv1.shop_space ul li article .site {
    margin-bottom: 6px;
  }
  .home #content .sec-lv1.shop_space ul li article .tel {
    margin-bottom: 6px;
  }
  .home #content .sec-lv1.info ul {
    margin: 0 auto 50px;
  }
  .home #content .sec-lv1.info ul li article time {
    font-size: 116%;
    width: 110px;
  }
  .home #content .sec-lv1.info ul li article h3 {
    font-size: 116%;
  }
  .home #content .sec-lv1.info ul li a:hover {
    text-decoration: underline;
  }
  .home #content .sec-lv1.concept h3 {
    font-size: 278%;
    margin-bottom: 32px;
  }
  .home #content .sec-lv1.concept p {
    font-size: 123.1%;
    text-align: center;
  }
  .home #content .sec-lv1.access .data p {
    font-size: 100%;
  }
  .home #content .sec-lv1.access .data img {
    width: 152px;
  }
  .info #content .sec-lv1 ul li {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .info #content .sec-lv1 ul li time {
    font-size: 116%;
  }
  .info #content .sec-lv1 ul li h3 {
    font-size: 153.9%;
    margin-bottom: 20px;
  }
  .info #content .sec-lv1 ul li h3 a:hover {
    text-decoration: underline;
  }
  .info #content .sec-lv1 ul li p {
    font-size: 108%;
    line-height: 2;
  }
  .event #content .sec-lv1 ul.events {
    max-width: 90%;
  }
  .event #content .sec-lv1 ul.events li {
    width: 20.5%;
    margin-right: 6%;
    margin-bottom: 40px;
  }
  .event #content .sec-lv1 ul.events li:nth-child(2n) {
    margin-right: 6%;
  }
  .event #content .sec-lv1 ul.events li:nth-child(2n+1) {
    clear: none;
  }
  .event #content .sec-lv1 ul.events li:nth-child(4n) {
    margin-right: 0;
  }
  .event #content .sec-lv1 ul.events li:nth-child(4n+1) {
    clear: both;
  }
  .event #content .sec-lv1 ul.events li a article {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
  }
  .event #content .sec-lv1 ul.events li a:hover {
    text-decoration: underline;
  }
  .event #content .sec-lv1 ul.events li a:hover article {
    opacity: 0.5;
  }
  .event #content .sec-lv1 ul.events li a {
    position: relative;
    /*&:hover::before {
    	content: ""; width: 12px; height: 43px; position: absolute; top: -16px; left: 50%; background-image: url(../images/sign.png); background-repeat: no-repeat; background-position: left top; background-size: 12px; margin-left: -6px; z-index: 1;
    }*/
  }
  .event.single #content .sec-lv1 article .entry-header, .info.single #content .sec-lv1 article .entry-header {
    margin: 30px 0;
  }
  .event.single #content .sec-lv1 article .entry-header h1, .info.single #content .sec-lv1 article .entry-header h1 {
    font-size: 153.9%;
  }
  .event.single #content .sec-lv1 article .entry-header time, .info.single #content .sec-lv1 article .entry-header time {
    font-size: 116%;
  }
  .event.single #content .sec-lv1 article .entry-content p,
  .event.single #content .sec-lv1 article .entry-content ul, .info.single #content .sec-lv1 article .entry-content p,
  .info.single #content .sec-lv1 article .entry-content ul {
    font-size: 108%;
  }
  .event.single #content .sec-lv1 article .entry-content a, .info.single #content .sec-lv1 article .entry-content a {
    text-decoration: underline;
  }
  .rental-space #content .sec-lv1 article article {
    margin-bottom: 100px;
    padding-bottom: 100px;
    background-size: 31px;
  }
  .rental-space #content .sec-lv1 article h3 {
    font-size: 153.9%;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }
  .rental-space #content .sec-lv1 article h4 {
    font-size: 198%;
    padding-bottom: 40px;
  }
  .rental-space #content .sec-lv1 article p {
    font-size: 108%;
  }
  .rental-space #content .sec-lv1 article .slide-space-01,
  .rental-space #content .sec-lv1 article .slide-space-02 {
    margin-bottom: 16px;
  }
  .rental-space #content .sec-lv1 article .nav-slide-01,
  .rental-space #content .sec-lv1 article .nav-slide-02 {
    margin-bottom: 60px;
    margin-left: -8px;
  }
  .rental-space #content .sec-lv1 article .nav-slide-01 img,
  .rental-space #content .sec-lv1 article .nav-slide-02 img {
    margin: 0 8px;
  }
  .concept #content .sec-lv1 .main-cut {
    height: 400px;
    margin-bottom: 60px;
  }
  .concept #content .sec-lv1 .sec-top h3 {
    font-size: 167%;
    margin-bottom: 40px;
  }
  .concept #content .sec-lv1 .sec-top p {
    font-size: 108%;
  }
  .concept #content .sec-lv1 .sec-bottom h3 {
    font-size: 108%;
  }
  .concept #content .sec-lv1 .sec-bottom dl {
    overflow: hidden;
    max-width: 100%;
  }
  .concept #content .sec-lv1 .sec-bottom dl.l {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 40px;
    border-right: 1px dotted #ddd;
  }
  .concept #content .sec-lv1 .sec-bottom dl.r {
    width: 50%;
    float: right;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #masthead {
    height: 120px;
  }
  #masthead #header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 28px;
  }
  #masthead #header-inner #site-title {
    margin-top: 20px;
  }
  #masthead #header-inner #site-title img {
    width: 212px;
  }
  #masthead #header-inner #fb {
    right: 20px;
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
  }
  #masthead #header-inner #fb:hover {
    opacity: 0.7;
  }
  #masthead .toggle-gnav {
    display: none;
  }
  #masthead #nav-head {
    width: auto;
    right: 0;
    background-color: #fff;
    height: auto;
    overflow: visible;
    position: static;
    padding: 0 20px;
    max-width: 1200px;
    margin: -80px auto 0;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
  #masthead #nav-head.active {
    -webkit-transform: none;
    transform: none;
  }
  #masthead #nav-head ul {
    float: right;
  }
  #masthead #nav-head ul li {
    display: inline-block;
    position: relative;
    height: 70px;
  }
  #masthead #nav-head ul li a {
    padding: 26px 14px 10px;
    text-align: center;
    position: relative;
  }
  #masthead #nav-head ul li a::after {
    content: none;
  }
  #masthead #nav-head ul li a span {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    font-size: 108%;
    color: #000;
    font-weight: 400;
  }
  #masthead #nav-head ul li a:hover span {
    opacity: 0.5;
  }
  #masthead #nav-head ul li a.sub {
    color: #000;
    background-color: #d7bb9c;
    position: absolute;
    padding: 8px 0;
    text-indent: 0;
    bottom: -20px;
    left: 14px;
    overflow: visible;
    font-weight: 300;
    font-size: 93%;
    display: none;
  }
  #masthead #nav-head ul li a.sub::before {
    content: none;
  }
  #masthead #nav-head ul li a.sub::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -4px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 4px 10px 4px;
    border-color: transparent transparent #d7bb9c transparent;
  }
  #masthead #nav-head ul li:hover a::before {
    content: "";
    width: 6px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../images/sign.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 6px;
    margin-left: -3px;
  }
  #masthead #nav-head ul li:hover .sub {
    display: block;
  }
  #masthead #nav-head ul li:hover .sub::before {
    content: none;
  }
  .info #masthead #nav-head ul li.info a::before, .event #masthead #nav-head ul li.event a::before, .concept #masthead #nav-head ul li.concept a::before, .schedule #masthead #nav-head ul li.schedule a::before, .photo #masthead #nav-head ul li.photo a::before, .contact #masthead #nav-head ul li.contact a::before {
    content: "";
    width: 6px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../images/sign.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 6px;
    margin-left: -3px;
  }
  .info #masthead #nav-head ul li.info a span, .event #masthead #nav-head ul li.event a span, .concept #masthead #nav-head ul li.concept a span, .schedule #masthead #nav-head ul li.schedule a span, .photo #masthead #nav-head ul li.photo a span, .contact #masthead #nav-head ul li.contact a span {
    opacity: 0.5;
  }
  #map_container {
    padding-top: 32%;
  }
  .slide {
    margin-bottom: 60px;
    height: 600px;
  }
  #content {
    padding-top: 160px;
  }
  .home #content {
    padding-top: 120px;
  }
  #content .sec-lv1 {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 100px;
    /* トップページ */
    /* contact */
  }
  #content .sec-lv1.wide {
    max-width: 100%;
  }
  #content .sec-lv1.wide .inner .line-wave {
    margin: 80px auto 0;
    padding: 0 100px;
  }
  #content .sec-lv1.wide .inner .line-wave::after {
    background-size: 31px;
  }
  .concept #content .sec-lv1 {
    max-width: 100%;
  }
  #content .sec-lv1 .inner {
    padding: 0 0 100px;
  }
  .home #content .sec-lv1 .inner {
    background-size: 31px;
  }
  .contact #content .sec-lv1 article .mw_wp_form_g-naked .action-buttons input {
    width: 320px;
  }
  .contact #content .sec-lv1 article .mw_wp_form_g-naked .action-buttons input:hover {
    color: #fff;
    background-color: #000;
  }
  .concept #content .sec-lv1 .main-cut {
    height: 600px;
  }
  #content .sec-lv1 .btn-frame-border {
    width: 320px;
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }
  #content .sec-lv1 .btn-frame-border:hover {
    color: #fff;
    background-color: #000;
  }
  #content .sec-lv1 .btn-gray-arrow {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
  }
  #content .sec-lv1 .btn-gray-arrow:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 1500px) {
  .slide {
    height: 700px;
  }
}
/*# sourceMappingURL=common.css.map */