@charset "UTF-8";
html {
  font-size: 62.5%;
}

html, body {
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8em;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-size: 1.5rem;
}

html, body, main, div, section, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup,
var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  font-weight: normal;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

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

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

ul li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
  opacity: 0.5;
}

span.numEmphasis {
  font-size: 2.4rem;
  font-weight: bold;
}

/* 「br」タグ */
.br480 {
  display: none;
}
@media (max-width: 480px) {
  .br480 {
    display: block;
  }
}

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

.br900 {
  display: none;
}
@media (max-width: 900px) {
  .br900 {
    display: block;
  }
}

/* カラー */
/* お知らせ「ニュース」*/
/* お知らせ「イベント」*/
.red {
  color: #f00;
}

/* 「ヘッダー」*/
header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 10;
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
header .header-inner .header-logo {
  width: 17%;
}
header .header-inner .header-logo a {
  left: 2.7%;
  position: absolute;
}
@media (max-width: 1100px) {
  header .header-inner .header-logo a img {
    max-width: 60%;
  }
}
@media (max-width: 480px) {
  header .header-inner .header-logo a img {
    max-width: 30%;
  }
}
header .header-inner ul {
  padding: 1.8em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1300px) {
  header .header-inner ul {
    display: none;
  }
}
header .header-inner ul li {
  padding: 0 1.5em;
}
@media (max-width: 1500px) {
  header .header-inner ul li {
    padding: 0 1em;
  }
}
header .header-inner ul li a {
  color: #006cb7;
  font-size: 1.9rem;
}
@media (max-width: 1500px) {
  header .header-inner ul li a {
    font-size: 1.6rem;
  }
}
header .header-inner ul li a:hover {
  color: #02a186;
}
header .header-inner .hg-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(19px) translateX(-9px);
          transform: rotate(45deg) translateY(19px) translateX(-9px);
}
header .header-inner .hg-btn.active span:nth-child(2) {
  opacity: 0;
}
header .header-inner .hg-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-19px) translateX(-9px);
          transform: rotate(-45deg) translateY(-19px) translateX(-9px);
}
header .header-inner .hg-btn.active .hg-btn-inner .hg-btn-menutext {
  top: 60%;
}
header .header-inner .hg-btn .hg-btn-inner {
  background: #006cb7;
  cursor: pointer;
  height: 76px;
  padding: 0 1em 2em;
  position: relative;
  width: 76px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-inner .hg-btn .hg-btn-inner span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  border-top: 4px solid #fff;
  width: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-inner .hg-btn .hg-btn-inner span:nth-child(1) {
  top: 20%;
}
header .header-inner .hg-btn .hg-btn-inner span:nth-child(2) {
  top: 30%;
}
header .header-inner .hg-btn .hg-btn-inner span:nth-child(3) {
  top: 40%;
}
header .header-inner .hg-btn .hg-btn-inner .hg-btn-menutext {
  top: 50%;
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
}
header .nav-menu {
  position: fixed;
  top: 0;
  right: -100%; /* 画面外に隠す */
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding: 5em 2em;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
header .nav-menu.active {
  right: 0;
}
header .nav-menu .nav-menu-logo {
  margin-bottom: 2em;
  text-align: center;
}
header .nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .nav-menu ul li a {
  color: #006cb7;
  font-size: 2.4rem;
  line-height: 2em;
}
header .nav-menu ul li a:hover {
  color: #02a186;
}

/* 共通大枠 */
h2 {
  font-size: 4.5rem;
  line-height: 1em;
  padding-bottom: 0.7em;
  position: relative;
}
@media (max-width: 640px) {
  h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 3rem;
  }
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h3 {
  font-size: 3.2rem;
  line-height: 1.4em;
  padding-bottom: 0.7em;
  position: relative;
}
@media (max-width: 640px) {
  h3 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 2.8rem;
  }
}

.common-btn01 a {
  border-radius: 50px;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 0.7em 3.5em;
}

/* トップページ */
.top-page {
  /* 「わたしたちについて」セクション */
  /* 「ニュース・イベント」セクション */
  /* 「会場・施設」セクション */
  /* 「加盟団体」セクション */
  /* 「サポート」セクション */
}
.top-page .t-about-us {
  padding: 5em 0;
  text-align: center;
}
.top-page .t-about-us h2 {
  color: #2957a1;
}
.top-page .t-about-us h2::after {
  border: 1px solid #2957a1;
}
.top-page .t-about-us .top-text01 {
  font-size: 2rem;
  line-height: 2em;
  margin-bottom: 3em;
  margin-top: 2em;
}
@media (max-width: 640px) {
  .top-page .t-about-us .top-text01 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .top-page .t-about-us .top-text01 {
    margin: 2em;
  }
}
.top-page .t-about-us .common-btn01 a {
  background: #006cb7;
  border: 1px solid #006cb7;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-page .t-about-us .common-btn01 a:hover {
  background: #fff;
  color: #006cb7;
}
.top-page .t-oshirase {
  background-image: url("../images/t-oshirase-bg.webp");
  background-repeat: no-repeat;
  padding: 5.5em 0;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase {
    background-size: cover;
  }
}
.top-page .t-oshirase .t-oshirase-box01 {
  background: #fff;
  border-radius: 30px;
  margin: 0 auto 3em;
  max-width: calc(1100px - 6em);
  padding: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase .t-oshirase-box01 {
    margin: 0 5% 3em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 640px) {
  .top-page .t-oshirase .t-oshirase-box01 {
    padding: 2em;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20%;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 2em;
    width: auto;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left h2 {
  font-size: 3.7rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left h2 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left h2 {
    margin-right: 1rem;
  }
}
@media (max-width: 480px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left h2 {
    font-size: 3rem;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-left .oshirase-title-eng {
  font-size: 2rem;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center {
    margin-bottom: 1em;
    width: auto;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li {
  margin-bottom: 1.3em;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li:last-child {
  margin-bottom: 0;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li .article-date {
  font-size: 1.8rem;
  margin-right: 1.5em;
}
@media (max-width: 480px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li .article-date {
    font-size: 1.6rem;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li a .article-title {
  display: inline-block;
  font-size: 1.8rem;
  padding-bottom: 0.1em;
  position: relative;
}
@media (max-width: 640px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li a .article-title {
    display: block;
  }
}
@media (max-width: 480px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li a .article-title {
    font-size: 1.6rem;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li a .article-title::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-center ul li a:hover .article-title::after {
  width: 100%;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 10%;
  position: relative;
  bottom: -1.5em;
}
@media (max-width: 1100px) {
  .top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right {
    margin-bottom: 1em;
    width: auto;
  }
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right .article-list-link a {
  font-size: 1.6rem;
  position: relative;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right .article-list-link a::before {
  content: "●";
  left: -1.5em;
  position: absolute;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right .article-list-link a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.top-page .t-oshirase .t-oshirase-box01 .t-oshirase-box01-right .article-list-link a:hover::after {
  width: 100%;
}
.top-page .t-oshirase .t-oshirase-news h2 {
  color: #02a186;
}
.top-page .t-oshirase .t-oshirase-news .oshirase-title-eng {
  color: #02a186;
}
.top-page .t-oshirase .t-oshirase-news .article-date {
  color: #02a186;
}
.top-page .t-oshirase .t-oshirase-news .article-list-link a::before {
  color: #02a186;
}
.top-page .t-oshirase .t-oshirase-news .article-list-link a::after {
  background-color: #02a186;
}
.top-page .t-oshirase .t-oshirase-news .article-title::after {
  background-color: #02a186;
}
.top-page .t-oshirase .t-oshirase-event h2 {
  color: #006cb7;
}
.top-page .t-oshirase .t-oshirase-event .oshirase-title-eng {
  color: #006cb7;
}
.top-page .t-oshirase .t-oshirase-event .article-date {
  color: #006cb7;
}
.top-page .t-oshirase .t-oshirase-event .article-list-link a::before {
  color: #006cb7;
}
.top-page .t-oshirase .t-oshirase-event .article-list-link a::after {
  background-color: #006cb7;
}
.top-page .t-oshirase .t-oshirase-event .article-title::after {
  background-color: #006cb7;
}
.top-page .t-venue {
  /*
  		background-color: #00a286;
  */
  background-image: url("../images/t-venue-bg.webp");
  background-repeat: no-repeat;
  /*
  		background-blend-mode: multiply;
  		opacity: 0.8;
  */
  padding: 5em 0;
  text-align: center;
}
@media (max-width: 640px) {
  .top-page .t-venue {
    background-size: cover;
  }
}
.top-page .t-venue h2 {
  color: #fff;
}
.top-page .t-venue h2::after {
  border: 1px solid #fff;
}
.top-page .t-venue .h2-eng {
  color: #fff;
  font-size: 2rem;
  margin-top: 1.5em;
}
.top-page .t-venue ul {
  margin: 3em auto;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1100px) {
  .top-page .t-venue ul {
    margin: 3em 5%;
  }
}
@media (max-width: 640px) {
  .top-page .t-venue ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1100px) {
  .top-page .t-venue ul li {
    width: 30%;
  }
}
@media (max-width: 640px) {
  .top-page .t-venue ul li {
    margin-bottom: 1em;
    width: 60%;
  }
}
.top-page .t-venue .t-venue-box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .top-page .t-venue .t-venue-box01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top-page .t-venue .t-venue-box01 p {
  color: #fff;
  font-size: 2rem;
  margin-right: 0.5em;
}
@media (max-width: 640px) {
  .top-page .t-venue .t-venue-box01 p {
    margin-bottom: 1em;
  }
}
@media (max-width: 480px) {
  .top-page .t-venue .t-venue-box01 p {
    font-size: 1.6rem;
    margin-right: 0;
  }
}
.top-page .t-venue .t-venue-box01 .common-btn01 a {
  background: #fff;
  border: 1px solid #00a286;
  color: #00a286;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-page .t-venue .t-venue-box01 .common-btn01 a:hover {
  /*
  						background: #006cb7;
  */
  background: #000;
  color: #fff;
}
.top-page .t-member-org {
  padding: 5em 0;
  text-align: center;
}
.top-page .t-member-org h2 {
  color: #2957a1;
}
.top-page .t-member-org h2::after {
  border: 1px solid #2957a1;
}
.top-page .t-member-org .h2-eng {
  color: #2957a1;
  font-size: 2rem;
  margin-top: 1.5em;
}
.top-page .t-member-org ul {
  margin: 3em auto 0;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .top-page .t-member-org ul {
    margin: 3em 1em 0;
  }
}
@media (max-width: 900px) {
  .top-page .t-member-org ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-page .t-member-org ul li {
  color: #000;
  font-size: 1.59rem;
  margin-bottom: 1em;
  width: 25%;
}
@media (max-width: 900px) {
  .top-page .t-member-org ul li {
    width: 40%;
  }
}
@media (max-width: 480px) {
  .top-page .t-member-org ul li {
    width: 100%;
  }
}
.top-page .t-member-org ul li a {
  display: inline-block;
  border-bottom: 2px solid #02a186;
  padding-bottom: 0.1em;
}
.top-page .t-support {
  /*
  		background-color: #006cb7;
  		background-image: url("../images/t-support-bg.webp");
  		background-repeat: no-repeat;
  		background-blend-mode: multiply;
  		opacity: 0.7;
  */
  /*
  		background-color: rgba(0, 108, 183, 1);
  		background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/t-support-bg.webp);
  		mix-blend-mode: multiply;
  		background-repeat: no-repeat;
  */
  /*
  		background-color: #006cb7;
  */
  background-image: url(../images/t-support-bg.webp);
  /*
  		background-blend-mode: multiply;
  */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6em 0;
  text-align: center;
  /*
  		ul {
  			margin: 0 auto;
  			max-width: 1100px;
  			@include flex-between;
  			@include mid1100 {
  				margin: 0 5%;
  			}
  			li {
  				@include mid1100 {
  					width: 30%;
  				}
  				.t-support-text01 {
  					background: #c99860;
  					border-radius: 30px;
  					color: #fff;
  					font-size: 2.4rem;
  					margin-bottom: 1em;
  					padding: 0.6em 2em;
  				}
  				.t-support-text02 {
  					color: #fff;
  					font-size: 1.6rem;
  					line-height: 2.0em;
  				}
  			}
  		}
  */
}
.top-page .t-support h2 {
  color: #c99860;
}
.top-page .t-support h2::after {
  border: 1px solid #c99860;
}
.top-page .t-support .h2-eng {
  color: #c99860;
  font-size: 2rem;
  margin-top: 1.5em;
}
.top-page .t-support .t-support-box01 {
  margin: 3em auto 0;
}
.top-page .t-support .t-support-box01 h3 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1em;
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box01 h3 {
    margin: 0 1em 1em;
  }
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box01 h3 {
    font-size: 2rem;
    text-align: left;
  }
}
.top-page .t-support .t-support-box01 p {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 3em;
  max-width: 900px;
  line-height: 1.8em;
  text-align: left;
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box01 p {
    max-width: 90%;
  }
}
.top-page .t-support .t-support-box02 {
  margin: 0 auto 3em;
  max-width: 480px;
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box02 {
    max-width: 90%;
  }
}
.top-page .t-support .t-support-box02 div {
  background: #c99860;
  color: #fff;
  font-size: 2.4rem;
  padding: 0.5em 0;
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box02 div {
    font-size: 2rem;
  }
}
.top-page .t-support .t-support-box02 p {
  background: #F0F0F0;
  font-size: 1.6rem;
  padding: 0.5em 0;
}
.top-page .t-support .t-support-box03 {
  margin: 0 auto 3em;
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box03 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top-page .t-support .t-support-box03 .t-support-box03-left {
  margin-right: 1em;
  width: 45%;
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box03 .t-support-box03-left {
    margin: 0 auto 3em;
    width: 480px;
  }
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box03 .t-support-box03-left {
    width: 90%;
  }
}
.top-page .t-support .t-support-box03 .t-support-box03-left > p {
  font-size: 2rem;
  background: #66c3ef;
  color: #fff;
  padding: 0.5em;
}
.top-page .t-support .t-support-box03 .t-support-box03-left .t-suuport-bo03-mini {
  background: #fff;
  padding: 1em;
}
.top-page .t-support .t-support-box03 .t-support-box03-left .t-suuport-bo03-mini > p {
  font-size: 2rem;
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box03 .t-support-box03-left .t-suuport-bo03-mini > p {
    font-size: 1.6rem;
  }
}
.top-page .t-support .t-support-box03 .t-support-box03-left .t-suuport-bo03-mini span.small {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box03 .t-support-box03-left .t-suuport-bo03-mini span.small {
    font-size: 1.5rem;
  }
}
.top-page .t-support .t-support-box03 .t-support-box03-right {
  width: 45%;
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box03 .t-support-box03-right {
    margin: 0 auto;
    width: 480px;
  }
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box03 .t-support-box03-right {
    width: 90%;
  }
}
.top-page .t-support .t-support-box03 .t-support-box03-right p {
  font-size: 2rem;
  background: #66c3ef;
  color: #fff;
  padding: 0.5em;
}
.top-page .t-support .t-support-box03 .t-support-box03-right .t-suuport-bo03-mini {
  background: #fff;
}
.top-page .t-support .t-support-box03 .t-support-box03-right .t-suuport-bo03-mini ul {
  padding: 0.5em;
  text-align: left;
}
.top-page .t-support .t-support-box03 .t-support-box03-right .t-suuport-bo03-mini ul li {
  font-size: 2rem;
  line-height: 1.6em;
  position: relative;
}
.top-page .t-support .t-support-box03 .t-support-box03-right .t-suuport-bo03-mini ul li::before {
  content: "◎";
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box03 .t-support-box03-right .t-suuport-bo03-mini ul li {
    font-size: 1.6rem;
  }
}
.top-page .t-support .t-support-box04 {
  margin: 0 auto 2em;
  max-width: 480px;
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box04 {
    width: 90%;
  }
}
.top-page .t-support .t-support-box04 p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2em;
  margin-bottom: 0.5em;
}
.top-page .t-support .t-support-box04 ul {
  padding-left: 1em;
  text-align: left;
}
.top-page .t-support .t-support-box04 ul li {
  color: #fff;
  font-size: 1.6rem;
  list-style-type: disc;
}
.top-page .t-support .t-support-box05 {
  margin-bottom: 3em;
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box05 {
    margin: 0 1em 3em;
    text-align: left;
  }
}
.top-page .t-support .t-support-box05 p {
  color: #fff;
  font-size: 1.6rem;
}
.top-page .t-support .t-support-box06 {
  margin: 0 auto;
  max-width: 1100px;
}
.top-page .t-support .t-support-box06 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box06 ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top-page .t-support .t-support-box06 ul li {
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 1em;
  padding: 1em;
  text-align: left;
  width: 48%;
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box06 ul li {
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .top-page .t-support .t-support-box06 ul li {
    margin: 1em 0;
    width: 60%;
  }
}
@media (max-width: 640px) {
  .top-page .t-support .t-support-box06 ul li {
    width: 90%;
  }
}
.top-page .t-support .t-support-box06 ul li span {
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
@media (max-width: 480px) {
  .top-page .t-support .t-support-box06 ul li span {
    font-size: 1.6rem;
  }
}

/* フッター */
footer {
  position: relative;
}
footer #gotoTop {
  position: absolute;
  bottom: 5em;
  right: 1em;
}
@media (max-width: 640px) {
  footer #gotoTop {
    bottom: none;
    top: 1em;
  }
}
@media (max-width: 480px) {
  footer #gotoTop {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
footer #gotoTop button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer #gotoTop button:hover span.btnimg {
  background: #006cb7;
}
footer #gotoTop button span.toptext {
  color: #555;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1em;
}
footer #gotoTop button span.btnimg {
  background: rgba(0, 108, 183, 0.5);
  border-radius: 100rem;
  color: #fff;
  display: -ms-grid;
  display: grid;
  z-index: 0;
  position: relative;
  place-items: center;
  aspect-ratio: 40/56;
  width: 7rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  footer #gotoTop button span.btnimg {
    width: 5rem;
  }
}
footer #gotoTop button span.btnimg i {
  font-size: 2.4rem;
}
footer #gotoTop button span.btnimg:hover {
  background: #006cb7;
}
footer .footer-inner {
  padding: 5em 0;
  text-align: center;
}
@media (max-width: 480px) {
  footer .footer-inner {
    padding: 8em 0 5em;
  }
}
footer .footer-inner .footer-logo {
  margin-bottom: 1em;
}
footer .footer-inner ul {
  margin-bottom: 1em;
}
footer .footer-inner ul li a {
  color: #c69560;
  font-size: 1.4rem;
}
footer .footer-inner .copyright {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
}

/* 投稿記事ページ */
.single-sec {
  margin: 10em auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .single-sec {
    margin: 10em 5%;
  }
}
@media (max-width: 640px) {
  .single-sec {
    margin: 5em 5%;
  }
}
.single-sec .single-sec-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 2em;
  text-align: center;
}
@media (max-width: 900px) {
  .single-sec .single-sec-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 640px) {
  .single-sec .single-sec-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .single-sec .single-sec-title {
    font-size: 2rem;
  }
}
.single-sec .single-sec-day {
  font-size: 1.8rem;
  text-align: right;
}
.single-sec .single-sec-day.now-cat-news {
  color: #02a186;
}
.single-sec .single-sec-day.now-cat-event {
  color: #006cb7;
}
.single-sec .single-sec-content {
  border: 1px solid #ddd;
  margin: 2em 0 5em;
  padding: 4em;
}
@media (max-width: 640px) {
  .single-sec .single-sec-content {
    padding: 2em;
  }
}
.single-sec .single-sec-content p {
  font-size: 1.6rem;
  line-height: 2em;
}
.single-sec .single-sec-content p a {
  color: #02a186;
}
.single-sec .common-btn {
  text-align: center;
}
.single-sec .common-btn.now-cat-news a {
  border: 1px solid #02a186;
  color: #02a186;
}
.single-sec .common-btn.now-cat-event a {
  border: 1px solid #006cb7;
  color: #006cb7;
}
.single-sec .common-btn a {
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  font-size: 1.7rem;
  padding: 0.7em 3.5em;
}
/* 投稿カテゴリページ */
.category-sec {
  margin: 10em auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .category-sec {
    margin: 10em 5%;
  }
}
.category-sec h2 {
  text-align: center;
}
.category-sec #oshirase-list-content ul li {
  border: 1px solid #ddd;
  margin-bottom: 2em;
  padding: 1em;
}
.category-sec #oshirase-list-content ul li a .list-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  .category-sec #oshirase-list-content ul li a .list-article {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.category-sec #oshirase-list-content ul li a .list-article .list-img-box {
  max-height: 180px;
  overflow: hidden;
  width: 20%;
}
@media (max-width: 900px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-img-box {
    margin-bottom: 1em;
    text-align: center;
    width: 100%;
  }
}
.category-sec #oshirase-list-content ul li a .list-article .list-img-box img {
  max-width: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box {
  width: 80%;
}
@media (max-width: 900px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-text-box {
    width: 100%;
  }
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-date {
  font-size: 1.8rem;
  line-height: 1em;
  margin-bottom: 1em;
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-date.now-cat-news {
  color: #02a186;
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-date.now-cat-event {
  color: #006cb7;
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-title {
  font-size: 3rem;
  line-height: 1em;
  margin-bottom: 0.5em;
}
@media (max-width: 1100px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-title {
    font-size: 3rem;
  }
}
@media (max-width: 900px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 640px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-title {
    font-size: 2rem;
  }
}
.category-sec #oshirase-list-content ul li a .list-article .list-text-box .list-article-contents {
  font-size: 1.6rem;
  line-height: 2em;
}

/* 固定ページ */
.page-sec {
  margin: 10em auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .page-sec {
    margin: 10em 5%;
  }
}
@media (max-width: 480px) {
  .page-sec {
    margin: 5em 5%;
  }
}
.page-sec .page-sec-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
.page-sec .contents section p {
  font-size: 1.8rem;
  line-height: 2em;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .page-sec .contents section p {
    font-size: 1.6rem;
  }
}
.page-sec .contents section p a {
  color: #02a186;
}

/* お問い合わせ */
.wpcf7 {
  background: #FFF;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-top: 3em;
  padding: 1em 2em 2em;
}
@media (max-width: 480px) {
  .wpcf7 {
    padding: 1em;
  }
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7 .screen-reader-response {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.wpcf7 .wpcf7-form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wpcf7 .wpcf7-form dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #EEE;
  padding: 1.6em 0;
  position: relative;
  width: 30%;
}
@media (max-width: 900px) {
  .wpcf7 .wpcf7-form dl dt {
    border-bottom: none;
    padding: 1.6em 0 0;
    width: 100%;
  }
}
.wpcf7 .wpcf7-form dl dt .require {
  color: #FF0000;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-left: 0.5em;
}
.wpcf7 .wpcf7-form dl dd {
  border-bottom: solid 1px #EEE;
  padding: 1.6em 0 0 2em;
  width: calc(70% - 2em);
}
@media (max-width: 900px) {
  .wpcf7 .wpcf7-form dl dd {
    padding: 1em 0;
    width: 100%;
  }
}
.wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap input[type=tel], .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap input[type=text], .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap input[type=email], .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap textarea {
  background: #F9F9F9;
  border: solid 1px #DDD;
  border-radius: 4px;
  padding: 1em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-width: 100%;
}
.wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap button, .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap input, .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap optgroup, .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap select, .wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
.wpcf7 .wpcf7-form dl dd .wpcf7-form-control-wrap textarea {
  width: 100%;
}
.wpcf7 .wpcf7-form .submit-container {
  margin-top: 1em;
  text-align: center;
}
.wpcf7 .wpcf7-form .submit-container input[type=submit] {
  background: #006cb7;
  border-color: #006cb7;
  border-radius: 50px;
  color: #FFF;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1em;
  padding: 1.25em 4em;
}
.wpcf7 .wpcf7-form .submit-container input[type=button] {
  background: #EEE;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1em;
  margin-right: 2em;
  padding: 1.25em 2em;
}
.wpcf7 .wpcf7-form input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* わたしたちについて */
.p-about-us-inner .p-about-us-section h2 {
  color: #fff;
}
.p-about-us-inner .p-about-us-section h2::after {
  border: 1px solid #fff;
}
.p-about-us-inner .p-about-us-section .h2-eng {
  color: #fff;
  font-size: 2rem;
  margin-top: 1.5em;
}
.p-about-us-inner .p-about-us-section .p-about-us-box {
  margin: 5em 0;
}
@media (max-width: 640px) {
  .p-about-us-inner .p-about-us-section .p-about-us-box {
    margin: 3em 0;
  }
}
.p-about-us-inner .p-about-us-section .p-about-us-box h3 {
  color: #c69560;
}
.p-about-us-inner .p-about-us-section .p-about-us-box .p-about-us-text01 {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.4em;
}
@media (max-width: 480px) {
  .p-about-us-inner .p-about-us-section .p-about-us-box .p-about-us-text01 {
    font-size: 1.6rem;
  }
}
.p-about-us-inner .p-about-us-section .p-about-us-box .p-about-us-text02 {
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 900px) {
  .p-about-us-inner .p-about-us-section .p-about-us-box .p-about-us-text02 {
    margin: 0 5%;
  }
}
.p-about-us-inner .p-about-us-section .p-about-us-img-box {
  margin: 1em 0 3em;
}
.p-about-us-inner .p-about-us-section .p-about-us-img-box img {
  margin-bottom: 1em;
}
.p-about-us-inner .p-about-us-section .p-about-us-img-box .p-about-us-img-caption-box .img-caption01 {
  font-size: 2.2rem;
}
.p-about-us-inner .p-about-us-section .p-about-us-box-last {
  margin: 5em 0 0;
}
.p-about-us-inner .p-about-us-sec01 {
  background-image: url(../images/p-about-us-bg01.webp);
  background-repeat: no-repeat;
  padding: 6em 0;
  text-align: center;
}
.p-about-us-inner .p-about-us-sec02 {
  padding: 5em 0;
  text-align: center;
}
.p-about-us-inner .p-about-us-sec02 .p-about-us-text01 {
  color: #555 !important;
  margin: 0 auto;
  max-width: 510px;
}
@media (max-width: 640px) {
  .p-about-us-inner .p-about-us-sec02 .p-about-us-text01 {
    margin: 0 5%;
  }
}
.p-about-us-inner .p-about-us-sec03 {
  background-image: url(../images/p-about-us-bg02.webp);
  background-repeat: no-repeat;
  padding: 6em 0;
  text-align: center;
}
.p-about-us-inner .p-about-us-sec03 .p-about-us-img-box {
  margin: 5em 0 3em;
}
.p-about-us-inner .p-about-us-sec03 .p-about-us-img-box img {
  margin-bottom: 2.5em;
}
@media (max-width: 480px) {
  .p-about-us-inner .p-about-us-sec03 .p-about-us-img-box img {
    width: 80%;
  }
}
.p-about-us-inner .p-about-us-sec03 .p-about-us-img-box .img-caption01 {
  color: #fff;
  display: block;
  font-size: 1.6rem !important;
  margin-bottom: 0.5em;
}
.p-about-us-inner .p-about-us-sec03 .p-about-us-img-box .img-caption02 {
  color: #fff;
  font-size: 2.6rem;
}
.p-about-us-inner .p-about-us-sec03 .p-about-us-text01 {
  color: #fff;
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 900px) {
  .p-about-us-inner .p-about-us-sec03 .p-about-us-text01 {
    margin: 0 5%;
  }
}

/* 会場・施設 */
.p-venue-outer {
  background: #efeff0;
  padding: 6em 0;
}
.p-venue-outer .p-venue-inner {
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .p-venue-outer .p-venue-inner {
    margin: 0 5%;
  }
}
.p-venue-outer .p-venue-inner .p-venue-sec01 {
  margin-bottom: 6em;
  text-align: center;
}
.p-venue-outer .p-venue-inner .p-venue-sec01 h2 {
  color: #00a286;
}
.p-venue-outer .p-venue-inner .p-venue-sec01 h2::after {
  border: 1px solid #00a286;
}
.p-venue-outer .p-venue-inner .p-venue-sec01 .h2-eng {
  color: #00a286;
  font-size: 2rem;
  margin-top: 1.5em;
}
.p-venue-outer .p-venue-inner .p-venue-sec01 .p-venue-text01 {
  font-size: 2.3rem;
  margin: 5em 0 0;
}
.p-venue-outer .p-venue-inner .p-venue-select-outer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 5em;
}
@media (max-width: 1100px) {
  .p-venue-outer .p-venue-inner .p-venue-select-outer ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 3em;
  }
}
.p-venue-outer .p-venue-inner .p-venue-select-outer ul li {
  background: #fff;
  border-radius: 50px;
  color: #00a286;
  cursor: pointer;
  text-align: center;
  padding: 0.8em 0;
  font-size: 2rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 24%;
}
@media (max-width: 1100px) {
  .p-venue-outer .p-venue-inner .p-venue-select-outer ul li {
    margin-bottom: 2em;
    width: 40%;
  }
}
@media (max-width: 640px) {
  .p-venue-outer .p-venue-inner .p-venue-select-outer ul li {
    margin-bottom: 1em;
    width: 48%;
  }
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .p-venue-select-outer ul li {
    font-size: 1.4rem;
  }
}
.p-venue-outer .p-venue-inner .p-venue-select-outer ul li:hover {
  background: #00a286;
  color: #fff;
}
.p-venue-outer .p-venue-inner .p-venue-select-outer ul li.active {
  background: #00a286;
  color: #fff;
}
.p-venue-outer .p-venue-inner .facilites-list {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents {
  background: #fff;
  border-radius: 0 30px 30px 30px;
  margin-bottom: 3em;
  padding: 3em;
  position: relative;
}
@media (max-width: 640px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents {
    padding: 2em;
  }
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents {
    padding: 2em 1em;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-kind {
  background: #00a286;
  border-radius: 0 50px 50px 0;
  text-align: center;
  padding: 0.5em 2em;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-kind {
    font-size: 1.4rem;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 1em;
  padding-bottom: 2em;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 65%;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left {
    margin-bottom: 1em;
    width: 100%;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-name {
  font-size: 3.2rem;
  line-height: 1.4em;
  margin-bottom: 1em;
  margin-top: 1em;
}
@media (max-width: 1100px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-name {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-name {
    font-size: 2.2rem;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add dl, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add dl dt, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel dl dt {
  width: 12%;
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add dl dt, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel dl dt {
    width: 20%;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add dl dd, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel dl dd {
  width: 88%;
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-add dl dd, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-upper .facilities-tel dl dd {
    width: 80%;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-lower .facilities-hp a {
  background: #006cb7;
  border: 1px solid #006cb7;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  margin-right: 1em;
  padding: 0.5em 3em;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-lower .facilities-hp a:hover {
  background: #fff;
  color: #006cb7;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-left .facilities-box01-left-lower .facilities-reserv a {
  background: #c99860;
  border: 1px solid #c99860;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  margin-right: 0.5em;
  padding: 0.5em 3em;
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-right {
  line-height: 0;
  width: 34%;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box01 .facilites-box01-right {
    width: 100%;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-left, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-left {
  color: #00a286;
  font-size: 2rem;
  width: 15%;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-left, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-left {
    margin-bottom: 0.2em;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-left, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-left {
    font-size: 1.8rem;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-right, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-right {
  font-size: 1.6rem;
  width: 85%;
}
@media (max-width: 900px) {
  .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-right, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-right {
    width: 100%;
  }
}
.p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box02 .facilites-box02-right span, .p-venue-outer .p-venue-inner .facilites-list .facilites-contents .facilites-box03 .facilites-box02-right span {
  color: #00a286;
}
.p-venue-outer .p-venue-inner .all-facilites-list {
  display: none;
}
.p-venue-outer .p-venue-inner .all-facilites-list.active {
  display: block;
}
.p-venue-outer .p-venue-inner .indoor-facilites-list {
  display: none;
}
.p-venue-outer .p-venue-inner .indoor-facilites-list.active {
  display: block;
}
.p-venue-outer .p-venue-inner .outdoor-facilites-list {
  display: none;
}
.p-venue-outer .p-venue-inner .outdoor-facilites-list.active {
  display: block;
}
.p-venue-outer .p-venue-inner .other-facilites-list {
  display: none;
}
.p-venue-outer .p-venue-inner .other-facilites-list.active {
  display: block;
}

/* プライバシーポリシー */
.p-privacy-outer {
  background: #efeff0;
  padding: 10em 0;
}
@media (max-width: 480px) {
  .p-privacy-outer {
    padding: 5em 0;
  }
}
.p-privacy-outer .p-privacy-inner {
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .p-privacy-outer .p-privacy-inner {
    margin: 0 5%;
  }
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec01 {
  margin-bottom: 6em;
  text-align: center;
}
@media (max-width: 480px) {
  .p-privacy-outer .p-privacy-inner .p-privacy-sec01 {
    margin-bottom: 4em;
  }
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec01 h2 {
  color: #00a286;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec01 h2::after {
  border: 1px solid #00a286;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec01 .h2-eng {
  color: #00a286;
  font-size: 2rem;
  margin-top: 1.5em;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec01 .p-privacy-text01 {
  font-size: 2.3rem;
  line-height: 1.8em;
  margin: 5em 0 0;
  text-align: left;
}
@media (max-width: 480px) {
  .p-privacy-outer .p-privacy-inner .p-privacy-sec01 .p-privacy-text01 {
    font-size: 1.8rem;
    margin: 3em 0 0;
  }
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 {
  margin-bottom: 5em;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 h3 {
  margin-bottom: 0.5em;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 h3::after {
  border: 1px solid #00a286;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  width: 100px;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 .p-privacy-text01 {
  font-size: 1.8rem;
  line-height: 2em;
}
@media (max-width: 480px) {
  .p-privacy-outer .p-privacy-inner .p-privacy-sec02 .p-privacy-text01 {
    font-size: 1.6rem;
  }
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 .p-privacy-text01 span {
  display: block;
  margin-top: 2em;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 ol {
  margin-left: 2em;
  margin-top: 1em;
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 ol li {
  font-size: 1.8rem;
  line-height: 2em;
  list-style-type: none;
  position: relative;
}
@media (max-width: 480px) {
  .p-privacy-outer .p-privacy-inner .p-privacy-sec02 ol li {
    font-size: 1.6rem;
  }
}
.p-privacy-outer .p-privacy-inner .p-privacy-sec02 ol li::before {
  content: "(" counter(list-item) ")";
  position: absolute;
  right: calc(100% + 0.5rem);
}

/* 共通ぱんくず */
.breadcrumbs-sec {
  margin: 10em auto 0;
  max-width: 1200px;
}

#breadcrumbs {
  margin-bottom: 3em;
}
#breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#breadcrumbs ul li {
  font-size: 1.4rem;
  margin-right: 1em;
}
#breadcrumbs ul li a.now-cat-news {
  color: #02a186;
}
#breadcrumbs ul li a.now-cat-event {
  color: #006cb7;
}