@charset "UTF-8";
/* ===================================================================
  2019 
=================================================================== */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/*----------------------------------------------------
	全体
----------------------------------------------------*/
html, body {
  padding: 0;
  margin: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 2.0em;
  color: #484848;
  position: relative;
  -webkit-text-size-adjust: none; }
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%; }

ul, li {
  list-style: none;
  margin: 0;
  padding: 0; }

body * {
  text-shadow: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
  font-weight: bold; }

img {
  max-width: 100%; }

.tC {
  text-align: center; }

.tL {
  text-align: left; }

.tR {
  text-align: right; }

.m-left {
  margin-right: auto; }

.m-right {
  margin-left: auto; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

/* link
----------------------------------------------------*/
a, a:active, a:visited, a:hover {
  color: inherit;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.6); }

a {
  color: #007BFF;
  transition: all .3s; }
  a:hover {
    color: #FFDD00;
    text-decoration: none; }

img.link {
  opacity: 1;
  transition: all .3s; }
  img.link:hover {
    opacity: 0.6; }

img.link2 {
  width: 100%;
  height: auto;
  opacity: 0.6;
  transition: all .3s; }
  img.link2:hover {
    opacity: 1; }

/*----------------------------------------------------
	テキスト
----------------------------------------------------*/
h1 {
  padding: 0;
  margin: 0;
  text-align: center; }

h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 100%;
  margin: 1rem 0 1.5rem 0;
  color: #000000; }
  @media (max-width: 768px) {
    h2 {
      font-size: 26px; } }
  @media (max-width: 480px) {
    h2 {
      font-size: 20px; } }

h3 {
  font-size: 28px;
  letter-spacing: 1.5px;
  margin: 1rem 0 1.5rem 0; }
  @media (max-width: 768px) {
    h3 {
      font-size: 22px;
      text-align: left; } }
  @media (max-width: 480px) {
    h3 {
      font-size: 18px; } }

h4 {
  font-size: 24px;
  margin: 1rem 0 1.5rem 0;
  font-weight: bold; }
  @media (max-width: 768px) {
    h4 {
      font-size: 21px; } }
  @media (max-width: 480px) {
    h4 {
      font-size: 16px; } }

h5 {
  font-size: 18px;
  margin: 0.5rem 0 1rem 0; }
  @media (max-width: 768px) {
    h5 {
      font-size: 18px; } }
  @media (max-width: 480px) {
    h5 {
      font-size: 14px; } }

h6 {
  font-size: 21px;
  margin: 1rem 0; }
  @media (max-width: 768px) {
    h6 {
      font-size: 21px; } }
  @media (max-width: 480px) {
    h6 {
      font-size: 15px; } }

p {
  margin: 0 0 1rem 0; }

.sp-br {
  display: none; }
  @media (max-width: 480px) {
    .sp-br {
      display: block; } }

.pc-br {
  display: block; }
  @media (max-width: 480px) {
    .pc-br {
      display: none; } }

@media (max-width: 768px) {
  body {
    font-size: 14px; } }
@media (max-width: 480px) {
  body {
    font-size: 12px; } }
.row {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between; }

.row .col-2 {
  width: calc((100% - 3%) / 2); }
.row .col-3 {
  width: calc((100% - 6%) / 3); }
.row .col-3a {
  width: calc((100% - 6%) / 3); }
.row .col-4 {
  width: calc((100% - 3%) / 4); }

.row-list {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start; }

.row-list .col-2 {
  width: calc((100% - 6%) / 2);
  margin: 1.5%; }
.row-list .col-3 {
  width: calc((100% - 9%) / 3);
  margin: 1.5%; }
.row-list .col-4 {
  width: calc((100% - 4%) / 4);
  margin: 1.5%; }
.row-list .col-5 {
  width: calc((100% - 5%) / 5);
  margin: 1.5%; }

@media (max-width: 768px) {
  .row .col-2 {
    width: calc((100% - 3%) / 2); }
  .row .col-3 {
    width: calc((100% - 3%) / 2); }
  .row .col-3a {
    width: calc((100% - 0%) / 1); }
  .row .col-4 {
    width: calc((100% - 1%) / 2); }

  .row-list .col-2 {
    width: calc((100% - 6%) / 2);
    margin: 1.5%; }
  .row-list .col-3 {
    width: calc((100% - 6%) / 2);
    margin: 1.5%; }
  .row-list .col-4 {
    width: calc((100% - 2%) / 2);
    margin: 1.5%; }
  .row-list .col-5 {
    width: calc((100% - 3%) / 3);
    margin: 1.5%; } }
@media (max-width: 600px) {
  .row .col-2 {
    width: calc((100% - 0%) / 1); }
  .row .col-3 {
    width: calc((100% - 3%) / 2); }
  .row .col-4 {
    width: calc((100% - 0%) / 1); } }
@media (max-width: 480px) {
  .row .col-2 {
    width: calc((100% - 0%) / 1); }
  .row .col-3 {
    width: calc((100% - 3%) / 2); }
  .row .col-4 {
    width: calc((100% - 0%) / 1); } }
/*	余白
----------------------------------------------------*/
.m10 {
  margin: 1em; }

.m10t {
  margin-top: 1em; }

.m15t {
  margin-top: 1.5em; }

.m20t {
  margin-top: 2em; }

.m05b {
  margin-bottom: 0.5em; }

.m10b {
  margin-bottom: 1em; }

.m15b {
  margin-bottom: 1.5em; }

.m20b {
  margin-bottom: 2em; }

.p10 {
  padding: 1em; }

.p15t {
  padding-top: 1.5em; }

.p20tb {
  padding: 2em 0; }

/*	アニメーション用
----------------------------------------------------*/
.delighter {
  transition: all 1.2s ease-out;
  transform: translateY(15%);
  opacity: 0;
  /* slide Up */
  /* slide left */ }
  .delighter.started {
    transform: none;
    opacity: 1; }
  .delighter.ani-su {
    transition: all .8s ease-out;
    transform: translateY(10%);
    opacity: 0; }
    .delighter.ani-su.started {
      transform: none;
      opacity: 1; }
  .delighter.ani-l {
    transition: all .8s ease-out;
    transform: translatex(55%);
    opacity: 0; }
    .delighter.ani-l.started {
      transform: none;
      opacity: 1; }

/*----------------------------------------------------
	リスト
----------------------------------------------------*/
ul.def-type {
  margin-left: 20px;
  margin-bottom: 20px; }
  ul.def-type li {
    margin: 5px 0;
    padding-left: 5px;
    list-style-type: disc;
    border: none;
    line-height: 1.4; }

ol.def-type {
  margin-left: 20px; }
  ol.def-type li {
    margin: 5px 0;
    padding-left: 5px;
    list-style-type: decimal;
    border: none; }

/*----------------------------------------------------
	table
----------------------------------------------------*/
.table-block {
  margin-bottom: 2em; }
  .table-block table {
    border-collapse: collapse;
    width: 100%; }
    @media (max-width: 768px) {
      .table-block table {
        width: 100%;
        min-width: 100%;
        border-top: 1px solid #CCC; } }
    .table-block table th {
      padding: 1em 1.5em;
      line-height: 1.5;
      border: 1px solid #CCC;
      border-collapse: collapse;
      text-align: center;
      width: 25%;
      color: #FFDD00; }
      @media (max-width: 768px) {
        .table-block table th {
          display: block;
          width: 100%;
          border: none;
          text-align: left; } }
    .table-block table td {
      padding: 1em 1.5em;
      line-height: 1.5;
      border: 1px solid #CCC;
      border-collapse: collapse; }
      @media (max-width: 768px) {
        .table-block table td {
          display: block;
          border: none;
          padding: 0 1.5em 1em 1.5em;
          border-bottom: 1px solid #CCC; } }

.table-block2 {
  margin-bottom: 2em; }
  .table-block2 table {
    border-collapse: collapse;
    width: 100%; }
    @media (max-width: 768px) {
      .table-block2 table {
        width: 100%;
        min-width: 100%; } }
    .table-block2 table th {
      padding: 1em 1.5em;
      line-height: 1.5;
      border: 1px solid  #CCCCCC;
      border-collapse: collapse;
      text-align: center;
      width: 25%;
      background-color: #CCCCCC; }
      @media (max-width: 768px) {
        .table-block2 table th {
          display: block;
          width: 100%;
          border: none;
          text-align: left; } }
    .table-block2 table td {
      padding: 1em 1.5em;
      line-height: 1.5;
      border: 1px solid #CCCCCC;
      border-collapse: collapse; }
      @media (max-width: 768px) {
        .table-block2 table td {
          display: block;
          border: none;
          padding: 1em 1.5em; } }

/*----------------------------------------------------
	共通
----------------------------------------------------*/
#wrapper {
  max-width: 100%;
  margin: 0 auto; }

#container {
  padding: 0 0 2em 0; }

.contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5em; }

article {
  margin-bottom: 3em; }

.sp-text, .sp-img {
  display: none !important; }

.pc-text, .pc-img {
  display: inherit !important; }

@media (max-width: 768px) {
  .sp-text, .sp-img {
    display: none !important; }

  .pc-text, .pc-img {
    display: inherit !important; } }
@media (max-width: 480px) {
  .sp-text, .sp-img {
    display: inherit !important; }

  .pc-text, .pc-img {
    display: none !important; } }
.btn {
  text-align: center;
  font-weight: bold;
  max-width: 500px;
  margin: .5em auto; }
  .btn a {
    background: #007BFF;
    transition: all .3s;
    display: block;
    text-decoration: none;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 5px; }
    .btn a:hover {
      background: #FFDD00; }

.btn2 {
  text-align: center;
  font-weight: bold;
  max-width: 500px;
  margin: .5em auto; }
  .btn2 a {
    background: #FFDD00;
    transition: all .3s;
    display: block;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 5px; }
    .btn2 a:hover {
      background: #007BFF; }

.button2 {
  text-align: center;
  font-weight: bold;
  max-width: 400px;
  margin: .5em auto; }
  .button2 p {
    background: #509EEB;
    display: block;
    text-decoration: none;
    color: #F8FF45;
    border-radius: 50px;
    padding: 10px 5px; }
    .button2 p a {
      text-decoration: underline;
      color: #F8FF45; }
      .button2 p a:hover {
        color: #484848;
        text-decoration: none; }

.button2b {
  text-align: center;
  font-weight: bold;
  max-width: 400px;
  margin: .5em auto; }
  .button2b p {
    background: #FFDD00;
    display: block;
    text-decoration: none;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 5px; }
    .button2b p a {
      text-decoration: underline;
      color: #FFF; }
      .button2b p a:hover {
        color: #484848;
        text-decoration: none; }

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #bbb; }

/*	背景
----------------------------------------------------*/
.bg01 {
  background: #007BFF;
  padding: 2em 0; }

.bg02 {
  background: #48A3CC;
  padding: 3em 0; }

.bg03 {
  background: #f2f2f2;
  padding: 2em 0; }

/*----------------------------------------------------
	header
----------------------------------------------------*/
header {
  color: #484848;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  height: 1px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; }
  header h1 {
    position: absolute;
    left: 15px;
    top: 5px; }
    header h1 img {
      width: 100%;
      max-width: 240px; }
      @media (max-width: 480px) {
        header h1 img {
          max-width: 180px; } }

.insta {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 25px;
  right: 95px;
  z-index: 9999; }
  .insta img {
    width: 100%;
    transition: transform .3s; }
    .insta img:hover {
      opacity: .6; }

.fb {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 25px;
  right: 130px;
  z-index: 9999; }
  .fb img {
    width: 100%;
    transition: transform .3s; }
    .fb img:hover {
      opacity: .6; }

/*menu*/
.menu-nav {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 13px;
  transition: all .3s;
  display: flex;
  border-radius: 50%;
  border: 3px solid #FFF;
  background: #007BFF;
  z-index: 9999; }
  .menu-nav:hover {
    cursor: pointer;
    background: #FFDD00; }

.menu {
  height: 24px;
  position: absolute;
  right: 18px;
  top: 20px;
  width: 30px;
  z-index: 9999; }

.menu__line {
  background: #FFF;
  display: block;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%; }

.menu__line--top.active {
  top: 10px;
  transform: rotate(45deg); }

.menu__line--center {
  top: 10px; }
  .menu__line--center.active {
    transform: scaleX(0); }

.menu__line--bottom {
  bottom: 0; }
  .menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg); }

@media (max-width: 1024px) {
  .c_head .h-nav {
    display: flex; }

  .c_head .menu-nav {
    display: none; } }
@media (max-width: 960px) {
  .c_head .h-nav {
    display: none; }

  .c_head .menu-nav {
    display: flex; } }
@media (max-width: 480px) {
  .c_head .h-nav {
    display: none; }

  .c_head .menu-nav {
    display: flex; } }
/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
  width: 100%;
  padding: 0;
  padding-top: 2em;
  background: #007BFF;
  text-align: center;
  color: #FFF; }
  footer a {
    text-decoration: none;
    color: #000; }
    footer a:hover {
      color: #007BFF; }
  footer img {
    width: 80%;
    max-width: 280px; }
  footer .copyright {
    width: 100%;
    font-size: 90%;
    padding: 1.2em 1em;
    position: relative;
    z-index: 11; }
    @media (max-width: 480px) {
      footer .copyright {
        font-size: 70%; } }

.f-img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }
  .f-img .f-illust01,
  .f-img .f-illust02 {
    width: 40%;
    max-width: 250px; }
  .f-img img {
    width: 100%; }

/* page-top */
#page-top {
  text-align: center;
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 9999; }
  #page-top .pagetop {
    margin-top: 2em;
    margin-left: auto;
    margin: 2em auto;
    width: 100px;
    height: 100px; }
    #page-top .pagetop a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      margin: 0 auto;
      border: 5px solid #FFF;
      border-radius: 50%;
      text-decoration: none;
      background: #FFDD00;
      background-size: cover;
      transition: all .5s; }
      #page-top .pagetop a:hover {
        background: #007BFF; }

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.gnav {
  background: #007BFF;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  overflow-y: scroll; }
  .gnav .gnav-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
    position: relative; }
  .gnav section {
    padding: 1em 1.5em;
    padding-top: 30px;
    padding-bottom: 0;
    width: 100%; }
    .gnav section .row {
      flex-wrap: nowrap;
      align-items: center; }
    .gnav section ul {
      width: 100%;
      max-width: 800px;
      margin: 1em auto; }
      .gnav section ul li {
        background: #FFF;
        border-radius: 10px;
        margin-bottom: 1em;
        transition: all .5s; }
        .gnav section ul li:hover {
          background: #F8FF45; }
        .gnav section ul li a {
          display: block;
          padding: 1em 2em;
          color: #484848;
          font-size: 120%; }

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px; }

.arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-left: 10px solid #77D8BE; }

.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle; }

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.home-first {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: url("../../img/main-img.png") no-repeat right center;
  background-size: 65% auto;
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  padding-top: 60px; }
  .home-first .main-title {
    width: 60%;
    padding-bottom: 50px; }
    @media (max-width: 600px) {
      .home-first .main-title {
        width: 90%;
        padding: 1em; } }
  @media (max-width: 600px) {
    .home-first {
      display: block;
      aspect-ratio: 1/ 1.6;
      background-size: 100% auto;
      background-position: center bottom;
      padding-top: 80px; } }

.row .main-pic {
  width: 30%;
  order: 1;
  margin: 1em auto; }
  @media (max-width: 600px) {
    .row .main-pic {
      width: 100%;
      order: 2;
      text-align: center; }
      .row .main-pic img {
        width: 65%; } }
.row .main-catch {
  width: 65%;
  order: 2;
  margin: 1em auto; }
  @media (max-width: 600px) {
    .row .main-catch {
      width: 100%;
      order: 1;
      margin-bottom: 2em; } }

.area-nav {
  background: #FFF;
  padding: 1em 1.5em;
  border-radius: 6px; }
  @media (max-width: 600px) {
    .area-nav .row {
      flex-flow: column; } }

.t-waku {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #007BFF;
  border-radius: 8px; }

.t-waku .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 150%;
  background: #FFF;
  color: #007BFF;
  font-weight: bold; }

.t-waku h5 {
  margin: 1.5rem 0;
  padding: 0; }

.t-waku p {
  margin: 0;
  padding: 0; }

.boshu-block {
  background: #F8FF45;
  border-radius: 20px;
  padding: 2em 1.5em 1.5em;
  text-align: center;
  font-size: 120%; }

.w-block {
  background: #FFF;
  border-radius: 20px;
  padding: 3em 2em; }
  .w-block section {
    width: 100%;
    max-width: 650px;
    margin: 0 auto; }

.g-block {
  background: #EDEDED;
  border-radius: 20px;
  padding: 3em 2em; }
  .g-block section {
    width: 100%;
    max-width: 650px;
    margin: 0 auto; }

.inner-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  background: #FFF; }
  .inner-block:hover {
    opacity: 0.6; }
  .inner-block .news-img {
    padding: 0;
    width: 100%;
    overflow: hidden; }
    .inner-block .news-img img {
      height: auto; }
  .inner-block .news-info {
    padding: .5em 0;
    /*height: 180px;
    overflow: hidden;*/
    font-size: 85%; }
    @media (max-width: 480px) {
      .inner-block .news-info {
        /*height: 140px;*/ } }
  .inner-block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px; }
  .inner-block p {
    text-align: left;
    margin-bottom: 0; }
    .inner-block p.title {
      line-height: 1.4em;
      margin-bottom: .5em; }

span {
  color: #FFF;
  padding: 0 5px;
  font-size: 90%;
  border-radius: 6px; }
  span.icon {
    background: #6AB82D; }
  span.icon01 {
    background: #E7211A; }
    span.icon01:before {
      content: "重要なお知らせ"; }
  span.icon02 {
    background: #6AB82D; }
    span.icon02:before {
      content: "募集"; }
  span.icon03 {
    background: #E55927; }
    span.icon03:before {
      content: "出展・出店"; }
  span.icon04 {
    background: #736357; }
    span.icon04:before {
      content: "ワークショップ"; }
  span.icon05 {
    background: #E4766E; }
    span.icon05:before {
      content: "トーク"; }
  span.icon06 {
    background: #296EB7; }
    span.icon06:before {
      content: "ライブ"; }
  span.icon07 {
    background: #16A196; }
    span.icon07:before {
      content: "パフォーマンス"; }
  span.icon08 {
    background: #C1CB26; }
    span.icon08:before {
      content: "マーケット"; }
  span.icon09 {
    background: #046535; }
    span.icon09:before {
      content: "ヨガ"; }
  span.icon10 {
    background: #8A2786; }
    span.icon10:before {
      content: "協賛・寄付"; }
  span.icon11 {
    background: #C61E57; }
    span.icon11:before {
      content: "コラボレーション"; }
  span.icon12 {
    background: #1C2A53; }
    span.icon12:before {
      content: "スタッフ"; }
  span.icon13 {
    background: #A37B51; }
    span.icon13:before {
      content: "リリース"; }
  span.icon14 {
    background: #B8292D; }
    span.icon14:before {
      content: "事前申込み"; }
  span.icon15 {
    background: #F5A52F; }
    span.icon15:before {
      content: "ピックアップ"; }

.multiple {
  padding: 0 2em; }
  .multiple img {
    width: 100%; }
  .multiple .news-list {
    margin: 0 5px;
    display: flex; }
  .multiple .slick-next {
    right: 10px;
    z-index: 100; }
    @media (max-width: 480px) {
      .multiple .slick-next {
        right: 5px; } }
  .multiple .slick-prev {
    left: 5px;
    z-index: 100; }
    @media (max-width: 480px) {
      .multiple .slick-prev {
        left: 0px; } }

.entry {
  max-width: 900px;
  margin: 1em auto; }
  @media (max-width: 480px) {
    .entry {
      padding: 0 .5em; } }
  .entry li {
    padding: 1em; }
    @media (max-width: 480px) {
      .entry li {
        padding: .5em; } }
  .entry img {
    border: 3px solid #19853F;
    border-radius: 6px; }

@media (max-width: 480px) {
  .entry .col-2 {
    width: calc((100% - 1%) / 2); } }
.access {
  display: flex;
  padding: 2em; }
  @media (max-width: 768px) {
    .access {
      flex-wrap: wrap;
      padding: 0; } }
  .access .map {
    width: 60%; }
    @media (max-width: 768px) {
      .access .map {
        width: 100%;
        order: 2; } }
    .access .map iframe {
      height: 540px; }
      @media (max-width: 768px) {
        .access .map iframe {
          height: 400px; } }
  .access .access-info {
    width: 38%;
    padding: 0 1em;
    margin-left: auto; }
    .access .access-info h2 {
      text-align: left;
      margin: 0;
      color: #FFF; }
      @media (max-width: 768px) {
        .access .access-info h2 {
          text-align: center; } }
    @media (max-width: 768px) {
      .access .access-info {
        width: 100%;
        padding: 1em 1.5em;
        order: 1; } }
    .access .access-info .button a {
      background: #FFF;
      color: #FFDD00; }
      .access .access-info .button a:hover {
        background: #FFDD00;
        color: #FFF; }

.support {
  text-align: center; }
  .support li {
    padding: .5em; }

.cs {
  opacity: .5; }

.md-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999; }

.md-contents {
  display: none;
  position: fixed;
  height: auto;
  z-index: 10000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  max-height: 80%;
  overflow-y: scroll; }

.md-inner {
  padding: 24px 40px;
  background: #fff;
  height: auto; }

a.md-close {
  margin-top: 1em;
  cursor: pointer;
  padding: .75em 1.5em;
  background: #007BFF;
  border-radius: 6px;
  color: #FFF;
  font-size: 90%; }
  a.md-close:hover {
    background: #509EEB;
    color: #FFF; }

.md-btn {
  padding: .75em 1.5em;
  background: #007BFF;
  border-radius: 6px;
  color: #FFF;
  font-size: 90%; }
  .md-btn:hover {
    background: #509EEB;
    color: #FFF; }

/*----------------------------------------------------
	ページ
----------------------------------------------------*/
.page-bg {
  background: #F7F6F5; }

.workshop-bg {
  background: #EEE7DB; }

.talk-bg {
  background: #FDEEED; }

.music-bg {
  background: #EAF6FD; }

.market-bg {
  background: #F7F8DA; }

h2.en-title {
  margin: 2rem 0;
  line-height: 1;
  font-size: 32px; }
  @media (max-width: 768px) {
    h2.en-title {
      font-size: 24px; } }
  @media (max-width: 480px) {
    h2.en-title {
      font-size: 18px;
      margin: 1rem 0; } }
  h2.en-title:before {
    display: block;
    font-size: 100%;
    color: #FFDD00; }

#news h2.en-title:before {
  content: 'お知らせ'; }

#support h2.en-title:before {
  content: '協賛募集'; }

#staff h2.en-title:before {
  content: 'スタッフ募集'; }

#events h2.en-title:before {
  content: '当日の催し'; }

#booth h2.en-title:before {
  content: '出展・出店募集'; }

#contact h2.en-title:before {
  content: 'お問い合わせ'; }

#workshop h2.en-title:before {
  content: 'ワークショップ'; }

#talk-live h2.en-title:before {
  content: 'トーク＆ライブ'; }

#collabo h2.en-title:before {
  content: 'コラボレーション'; }

#market h2.en-title:before {
  content: 'マーケット'; }

#ynk h2.en-title:before {
  content: 'ヨガネイチャー京都'; }

.events {
  max-width: 880px;
  margin: 0 auto; }
  .events h5 {
    border-bottom: 1px solid #000;
    padding: .5em 0; }
  .events .col-1 {
    min-height: 250px;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .events .col-1 {
        min-height: 180px; } }
  .events .col-3 {
    min-height: 250px;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .events .col-3 {
        min-height: 180px; } }
  .events .col-3a {
    min-height: 250px;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .events .col-3a {
        min-height: 180px; } }

.post {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em 0; }
  .post img {
    max-width: 100%;
    height: auto; }

.cate-nav {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3em auto; }
  .cate-nav p {
    padding: 0.5em;
    margin: 0;
    background: #007BFF;
    border-radius: 6px;
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
    position: relative; }
    .cate-nav p:after {
      content: "";
      width: 10px;
      height: 10px;
      display: inline-block;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      position: absolute;
      top: 40%;
      right: 10px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
    .cate-nav p.selected {
      border-radius: 6px 6px 0 0; }
      .cate-nav p.selected:after {
        border-color: #FFF;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg); }
  .cate-nav li {
    border-bottom: 1px solid #CCC;
    /*
    &.icon01 { background: $icon-color-01;}
    &.icon02 { background: $icon-color-02;}
    &.icon03 { background: $icon-color-03;}
    &.icon04 { background: $icon-color-04;}
    &.icon05 { background: $icon-color-05;}
    &.icon06 { background: $icon-color-06;}
    &.icon07 { background: $icon-color-07;}
    &.icon08 { background: $icon-color-08;}
    &.icon09 { background: $icon-color-09;}
    &.icon10 { background: $icon-color-10;}
    &.icon11 { background: $icon-color-11;}
    &.icon12 { background: $icon-color-12;}
    &.icon13 { background: $icon-color-13;}
    &.icon14 { background: $icon-color-14;}
    &.icon15 { background: $icon-color-15;}
    */ }
    .cate-nav li:hover {
      opacity: 0.6; }
    .cate-nav li:last-child {
      border-radius: 0 0 6px 6px;
      border-bottom: 1px solid #FFF; }
    .cate-nav li a {
      display: block;
      color: #000;
      background: #EFEFEF;
      text-decoration: none;
      padding: 0.5em; }

.icon-events {
  background: #8E8E8E;
  color: #FFF; }

.inner-block2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background-color: #FADF1A;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: transform .3s;
  transform: scale(1);
  font-size: 160%;
  color: #FFF; }
  .inner-block2:hover {
    opacity: 0.6; }
  .inner-block2 a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px; }
  .inner-block2.bg01 {
    background-image: url("../../img/workshop-bg.jpg");
    opacity: 0.6;
    transition: all .3s; }
    .inner-block2.bg01:hover {
      opacity: 1; }
  .inner-block2.bg02 {
    background-image: url("../../img/market-bg.jpg");
    opacity: 0.6;
    transition: all .3s; }
    .inner-block2.bg02:hover {
      opacity: 1; }
  .inner-block2.bg03 {
    background-image: url("../../img/talk-bg.jpg");
    opacity: 0.6;
    transition: all .3s; }
    .inner-block2.bg03:hover {
      opacity: 1; }
  .inner-block2.bg04 {
    background-image: url("../../img/yoganature-bg.jpg");
    opacity: 0.6;
    transition: all .3s; }
    .inner-block2.bg04:hover {
      opacity: 1; }
  .inner-block2.bg05 {
    background-image: url("../../img/satellite-bg.jpg");
    opacity: 0.6;
    transition: all .3s; }
    .inner-block2.bg05:hover {
      opacity: 1; }
  .inner-block2 p {
    margin-bottom: 0;
    text-shadow: rgba(0, 0, 0, 0.8) 3px 0 5px; }

.bg-contents {
  background: #F0F0F0;
  border-radius: 6px;
  padding: 1.5em; }

.page-bg01 {
  background-image: url("../../img/workshop-bg.jpg"); }

.page-bg02 {
  background-image: url("../../img/market-bg.jpg"); }

.page-bg03 {
  background-image: url("../../img/talk-bg.jpg"); }

.page-bg04 {
  background-image: url("../../img/yoganature-bg.jpg"); }

.page-bg05 {
  background-image: url("../../img/satellite-bg.jpg"); }

.logo-list {
  display: flex;
  flex-flow: wrap;
  text-align: center; }
  .logo-list li {
    width: 25%;
    padding: 1em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 480px) {
      .logo-list li {
        width: 50%; } }
