@charset "UTF-8";
/* ===================================================================
  2019 
=================================================================== */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/earlyaccess/hannari.css);
@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: 400;
  font-size: 17px;
  line-height: 2em;
  color: #1D1D1D;
  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%;
  height: auto;
}

.tC {
  text-align: center;
  justify-content: center;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

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

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

* {
  box-sizing: border-box;
}

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

* {
  margin: 0;
  padding: 0;
}

.wf-hannari {
  font-family: "Hannari";
}

.ten-mincho {
  font-family: ten-mincho, serif;
}

/* link
----------------------------------------------------*/
a {
  color: #00AAA3;
  transition: all 0.3s;
}
a:hover {
  color: #1D1D1D;
  text-decoration: none;
}

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

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

h2 {
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}
h2 img {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 21px;
    text-align: center;
  }
}

h3 {
  font-family: "ten-mincho";
  font-size: 26px;
  font-weight: normal;
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}
h3.line:before {
  content: "";
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 150px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  border-radius: 1px;
}

h4 {
  font-family: "ten-mincho";
  font-size: 24px;
  letter-spacing: 1.5px;
  margin: 0 0 1em 0;
  font-weight: normal;
}
h4 span {
  font-size: 60%;
  display: block;
  color: #000;
  font-weight: normal;
}
@media (max-width: 768px) {
  h4 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  h4 {
    font-size: 16px;
  }
}
h4.line {
  position: relative;
  margin: 0.25em 0 1em 0;
}
h4.line:before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #000;
  border-radius: 1px;
}

h5 {
  font-family: "ten-mincho";
  font-size: 21px;
  margin: 0 0 0.5em 0;
}
@media (max-width: 768px) {
  h5 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  h5 {
    font-size: 15px;
  }
}
h5.line {
  padding: 0.25em 0.75em;
  background: transparent;
  border-left: solid 5px #aa8739;
}

p {
  margin: 0;
  margin-bottom: 1em;
}
p span.text-s {
  font-size: 80%;
  line-height: 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: 13px;
  }
}
.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-4 {
  width: calc((100% - 9%) / 4);
}

.row-list {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.row-list.class-list {
  justify-content: flex-start;
}
.row-list.blog-list {
  justify-content: flex-start;
}
.row-list.instructor {
  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% - 12%) / 4);
  margin: 1.5%;
}
.row-list .col-5 {
  width: calc((100% - 5%) / 5);
  margin: 1.5%;
}

@media (max-width: 960px) {
  .row-list .col-3 {
    width: calc((100% - 6%) / 2);
    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-4 {
    width: calc((100% - 3%) / 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% - 6%) / 2);
    margin: 1.5%;
  }
  .row-list .col-5 {
    width: calc((100% - 3%) / 3);
    margin: 1.5%;
  }
}
@media (max-width: 480px) {
  .row .col-2 {
    width: calc((100% - 0%) / 1);
  }
  .row .col-3 {
    width: calc((100% - 0%) / 1);
  }
  .row .col-4 {
    width: calc((100% - 3%) / 2);
  }
  .row-list .col-5 {
    width: calc((100% - 2%) / 2);
    margin: 1.5%;
  }
}
.order1 {
  order: 1;
}
@media (max-width: 768px) {
  .order1 {
    order: 2;
  }
}

.order2 {
  order: 2;
}
@media (max-width: 768px) {
  .order2 {
    order: 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 0.8s ease-out;
  transform: translateY(10%);
  opacity: 0;
}
.delighter.ani-su.started {
  transform: none;
  opacity: 1;
}
.delighter.ani-l {
  transition: all 0.8s ease-out;
  transform: translatex(55%);
  opacity: 0;
}
.delighter.ani-l.started {
  transform: none;
  opacity: 1;
}
/*----------------------------------------------------
	リスト
----------------------------------------------------*/
ul.def-type {
  margin-left: 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;
  line-height: 1.4;
}
ol.def-type.en-mum li {
  list-style-type: upper-latin;
}

/*----------------------------------------------------
	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%;
  background: #F0F0F0;
}
@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: 1em 1.5em;
    border-bottom: 1px solid #CCC;
  }
}

.table-block2 {
  margin-bottom: 2em;
}
.table-block2 table {
  border-collapse: separate;
  width: 100%;
  border-spacing: 0 2em;
}
@media (max-width: 768px) {
  .table-block2 table {
    width: 100%;
    min-width: 100%;
  }
}
.table-block2 table tr {
  margin-bottom: 1em;
}
.table-block2 table th {
  padding: 1em 1.5em;
  line-height: 1.5;
  border-right: 1px solid #CCCCCC;
  word-break: keep-all;
  text-align: left;
  width: 30%;
}
@media (max-width: 768px) {
  .table-block2 table th {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
    background: #f1f1f1;
  }
}
.table-block2 table td {
  padding: 1em 1.5em;
  line-height: 1.5;
  border: 1px solid #FFF;
}
@media (max-width: 768px) {
  .table-block2 table td {
    display: block;
    border: none;
    padding: 1em 0;
  }
}

.table-block3 table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 768px) {
  .table-block3 table {
    width: 100%;
    min-width: 100%;
    border: none;
  }
}
.table-block3 table th {
  padding: 1em 1.5em;
  line-height: 1.5;
  border: 1px solid #CCCCCC;
  border-left: 1px solid #F9F9F5;
  word-break: keep-all;
  text-align: left;
  width: 30%;
  background: none;
}
@media (max-width: 768px) {
  .table-block3 table th {
    display: block;
    width: 100%;
    border: none;
    padding: 0.25em 0;
    text-align: left;
  }
}
.table-block3 table td {
  padding: 1em 1.5em;
  line-height: 1.5;
  border: 1px solid #CCCCCC;
  border-right: 1px solid #F9F9F5;
  background: none;
}
@media (max-width: 768px) {
  .table-block3 table td {
    display: block;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    padding: 0.5em 0;
    margin-bottom: 0.5em;
  }
}

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

#container {
  padding: 0;
}

.contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 10px;
}
.contents.wide-max {
  padding: 20px 0;
}

section {
  width: 100%;
  margin: 0 auto;
}

article {
  margin-bottom: 3em;
}

.inner-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.inner-block:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.inner-block a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

.inner-block2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.inner-block2:hover {
  opacity: 0.6;
}
.inner-block2 a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

.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 {
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-weight: normal;
  margin: 1em auto;
}
.btn a {
  background: #aa8739;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #FFF;
  padding: 6px 20px;
  border-radius: 10px;
}
.btn a:hover {
  background-color: #4D4D4D;
  color: #FFF;
}

.btn2 {
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-weight: normal;
  margin: 0.25em 0;
  margin-left: 0;
  margin-right: auto;
}
.btn2 a {
  background: #aa8739;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #FFF;
  padding: 6px 20px;
  border-radius: 10px;
}
.btn2 a:hover {
  background-color: #4D4D4D;
  color: #FFF;
}

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

.bg01 {
  background: #aa8739;
  padding: 3em 0;
}

.bg01b {
  background: url("../../img/bg-img02.png") no-repeat bottom center;
  background-size: 100% auto;
  background-blend-mode: multiply;
  background-color: #aa8739;
  padding: 3em 0;
}

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

.bg02b {
  background: url("../../img/bg-img01.png") no-repeat top center, url("../../img/bg-img02.png") no-repeat bottom center;
  background-size: 100% auto, 100% auto;
  background-blend-mode: multiply, multiply;
  background-color: #d6d2b4;
  padding: 3em 0;
}

.bg-gray {
  background: #e7e7e7;
  padding: 3em;
}
@media (max-width: 480px) {
  .bg-gray {
    padding: 2em;
  }
}

.bg-white {
  background: #FFF;
  padding: 3em;
}
@media (max-width: 480px) {
  .bg-white {
    padding: 2em;
  }
}

img.border {
  border: 1px solid #CCC;
}

/* form用
----------------------------------------------------*/
input {
  padding: 0.4em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-color: #FFF;
}

.form-text {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

.form-text:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
  height: 100px;
}

textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.submit {
  border: 1px solid #CCC;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.5em 2em;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s;
}

.submit:hover {
  background: #aa8739;
  color: #FFF;
}

.submit:focus {
  outline: none;
}

.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.color-red {
  padding: 2px 5px;
  font-size: 70%;
  color: #FFF;
  background: #f00;
  word-break: keep-all;
}

/*-------------------------------------------------
 movie
-------------------------------------------------*/
.iframe-content {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56.25% 0 0 0;
}
.iframe-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------
 youtube
-------------------------------------------------*/
.wp-block-embed__wrapper {
  position: static;
}

.wp-block-embed-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed-youtube iframe,
.wp-block-embed-youtube object,
.wp-block-embed-youtube embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ページネーション用
----------------------------------------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  font-size: 13px;
}
.pagination .page-numbers {
  display: flex;
}

.pagination span, .pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px;
  border: 1px solid #aa8739;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
}

/* ページ番号 */
.pagination .pager {
  width: 32px;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  color: #fff;
  border-color: #aa8739;
  background-color: #aa8739;
}

/* 前へ */
.pagination a.prev {
  margin-right: 16px;
}

/* 次へ */
.pagination a.next {
  margin-left: 16px;
}

/* 最初へ */
/* 最後へ */
/* Page x / y */
.pagination span.page_num {
  display: none;
}

@media (min-width: 481px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
header {
  width: 100%;
  height: 1px;
  padding: 0;
  margin-bottom: 0;
  display: inherit !important;
  position: relative;
  position: fixed;
  z-index: 999;
}
header a {
  text-decoration: none;
  color: #000;
}
header a:hover {
  color: #999;
}

/* pc */
.pc-head {
  display: inherit !important;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #CCC;
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pc-head {
    display: none !important;
  }
}

#header {
  margin: 0 auto;
  height: auto;
  padding: 0;
}
#header .head01 {
  padding: 0 1em;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}
#header h1 {
  padding: 0.5em;
}
#header h1 img {
  max-height: 90px;
}
#header .h_nav {
  padding: 1em;
  display: flex;
  justify-content: flex-end;
}
#header .h_tel {
  padding-top: 0.75em;
  display: flex;
  margin-left: auto;
  font-size: 150%;
  font-weight: bold;
}
#header .head02 {
  padding: 0 1em;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  margin-top: -45px;
}
#header .head02 .logo {
  display: flex;
  align-items: center;
}
#header .head02 .logo img {
  max-height: 60px;
  display: none;
}

.social {
  display: flex;
  margin: 0 10px;
}
.social li {
  width: 30px;
  margin: 5px;
}
.social li img {
  width: 30px;
  margin-bottom: 10px;
}

.sub_nav2 {
  display: flex;
  margin: 0 10px;
}
.sub_nav2 li {
  width: 45px;
  margin: 0 5px;
  font-size: 80%;
  font-weight: bold;
  text-align: center;
  line-height: 1em;
}
.sub_nav2 li img {
  width: 45px;
}
.sub_nav2 li a {
  text-decoration: none;
  color: #4E4D4D;
}

.c-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 0 0.5em;
}
.c-nav li {
  margin: 5px 15px;
}
.c-nav li a {
  text-decoration: none;
}

/* sp */
.sp-head {
  display: none !important;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid #CCC;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.sp-head img {
  height: 60px;
}
@media (max-width: 960px) {
  .sp-head {
    display: inherit !important;
  }
}
.sp-head .s-nav {
  height: 60px;
  width: auto;
  position: absolute;
  top: 7px;
  right: 60px;
  font-size: 13px;
  transition: all 0.3s;
  display: flex;
}
.sp-head .s-nav .social {
  align-items: center;
}
.sp-head .s-nav .social li {
  width: 40px;
}
.sp-head .s-nav img {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
.sp-head .s-nav:hover {
  cursor: pointer;
}

.sp-nav_block {
  padding: 1em;
  padding-top: 80px;
  margin: 0 auto;
  width: 100%;
}
.sp-nav_block .social {
  padding: 0;
  margin: 1em;
  display: inline-flex;
}
.sp-nav_block .sub_nav {
  border-top: none;
  border-left: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.sp-nav_block .sub_nav li {
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  margin: 0;
  width: 50%;
  border: 1px solid #CCC;
  border-bottom: none;
  border-right: none;
  border-collapse: collapse;
}
.sp-nav_block .sub_nav li.sub_nav01 {
  width: 100%;
}
.sp-nav_block .sub_nav li.sub_nav06 {
  width: 100%;
}
.sp-nav_block .sub_nav li a {
  display: flex;
  align-items: center; /* 縦方向中央揃え */
  color: #4e4d4d;
  text-decoration: none;
  padding: 15px 15px 15px 40px;
  background-position: 5px 6px;
  background-size: 30px;
}
.sp-nav_block nav {
  font-size: 13px;
}
.sp-nav_block nav ul {
  clear: both;
  font-weight: bold;
  margin-top: 1em;
}
.sp-nav_block nav ul li {
  text-align: left;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.sp-nav_block nav ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 1em;
}

.h_nav2 a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 1em;
  padding-top: 70px;
  display: block;
  position: relative;
}
.h_nav2 a:after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 2px solid #CCC;
  border-right: 2px solid #CCC;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: rotate(45deg);
  transition: 0.4s ease-in-out;
}

/*menu*/
.menu-nav {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 7px;
  right: 0;
  width: 60px;
  font-size: 13px;
  transition: all 0.3s;
  display: flex;
}
.menu-nav:hover {
  cursor: pointer;
}

.menu {
  height: 20px;
  position: absolute;
  right: 18px;
  top: 20px;
  width: 25px;
  z-index: 99;
}

.menu__line {
  background: #000;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}

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

.menu__line--bottom {
  bottom: 5px;
}
.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%;
  max-width: 1200px;
  padding: 80px 0 0 0;
  margin: 0 auto;
  background: url("../../img/f-bg.png") no-repeat bottom center;
  background-size: 100% auto;
  text-align: center;
  font-size: 90%;
}
footer .copyright {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 90%;
  padding: 1.2em 2em;
}
@media (max-width: 480px) {
  footer .copyright {
    font-size: 70%;
  }
}

.btn_waku2 {
  width: 100%;
  font-size: 120%;
  position: relative;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #2179bf;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.btn_waku2:hover {
  background: #2179bf;
}
.btn_waku2 a {
  display: block;
  width: 100%;
  padding: 1em;
  color: #d6d2b4;
}
.btn_waku2 a:hover {
  color: #FFFFFF;
}

/* page-top */
#page-top {
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 9999;
}
#page-top .pagetop {
  margin-top: 2em;
  margin-left: auto;
  width: 60px;
  height: 60px;
}
#page-top .pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  background: #FFF;
  border: 2px solid #4D4D4D;
  border-radius: 50%;
  transition: all 0.5s;
}
#page-top .pagetop a:hover {
  background: #EFEFEF;
}

/* banner */
#bn-fixid {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 20px;
  z-index: 9999;
  width: 300px;
}
#bn-fixid img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #bn-fixid {
    width: 200px;
  }
}
@media (max-width: 480px) {
  #bn-fixid {
    width: 160px;
  }
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.gnav {
  background: #FFF;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  overflow-y: scroll;
}
.gnav section {
  padding: 1em 0;
  padding-top: 50px;
  padding-bottom: 0;
  line-height: 1;
  width: 100%;
}
.gnav section .social-btn {
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5em auto 3em auto;
}
.gnav section .social-btn li {
  margin: 0 0.5em;
}
.gnav section .social-btn li span {
  font-size: 120%;
}
.gnav section .social-btn li a {
  color: #3E3E3E;
  background: #FFF;
  border-radius: 50%;
  display: block;
  padding: 5px;
  text-decoration: none;
}
.gnav section .social-btn li a:hover {
  color: #FFF;
  background: #000;
}

.f-contact {
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  margin: 0 auto;
  background-color: rgba(84, 107, 137, 0.65);
  border-radius: 6px 6px 0 0;
  display: flex;
  width: 90%;
  max-width: 800px;
}
@media (max-width: 768px) {
  .f-contact {
    flex-wrap: nowrap;
    padding: 0.5em 1em;
  }
}
.f-contact .f-tel {
  display: flex;
  align-items: center;
}
.f-contact .f-tel a {
  color: #FFF;
  text-decoration: none;
}
@media (max-width: 480px) {
  .f-contact .f-tel {
    font-size: 2vw;
  }
}
.f-contact .f-icon {
  display: flex;
  align-items: center;
}
.f-contact .f-icon ul {
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .f-contact .f-icon ul {
    background: none;
  }
}
.f-contact .f-icon ul li {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  margin: 5px 10px;
  padding: 10px 15px 10px 35px;
  background: url(../../img/icon_schedule.png) no-repeat 5px center;
  background-size: 30px;
  background-color: #FFF;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .f-contact .f-icon ul li {
    background-position: left center;
    margin: 5px;
    padding: 0;
    width: 40px;
    height: 40px;
    background-size: 40px;
    background-color: #FFF;
    border-radius: 50%;
  }
}
.f-contact .f-icon ul li a {
  display: block;
  color: #4e4d4d;
  text-decoration: none;
}
.f-contact .f-icon ul li a:hover {
  color: #4e4d4d;
  text-decoration: none;
}
@media (max-width: 768px) {
  .f-contact .f-icon ul li a {
    overflow: hidden;
    text-indent: -9999px;
    width: 40px;
    height: 40px;
  }
}
.f-contact .f-icon ul li.f_nav01 {
  background-image: url(../../img/icon_schedule.png);
}
.f-contact .f-icon ul li.f_nav04 {
  background-image: url(../../img/icon_location.png);
}
.f-contact .f-icon ul li.f_nav06 {
  background-image: url(../../img/icon_contact.png);
}
.f-contact p {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 200%;
  margin: 0;
}
.f-contact p span {
  font-size: 80%;
  padding: 0 10px;
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.home-first {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  /*background: url("../../img/home/main-img.jpg") no-repeat center center;*/
  background-size: cover;
  position: relative;
  z-index: 999;
}
@media (max-width: 480px) {
  .home-first {
    height: 85vh;
    align-items: center;
  }
}
.home-first .head01 {
  padding: 0 1em;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}
.home-first h1 {
  padding: 0.5em;
}
.home-first h1 img {
  max-height: 90px;
}
.home-first .h_nav {
  padding: 1em;
  display: flex;
  justify-content: flex-end;
}
.home-first .h_tel {
  padding-top: 0.75em;
  display: flex;
  margin-left: auto;
  font-size: 150%;
  font-weight: bold;
  color: #FFF;
}
.home-first .head02 {
  padding: 0 1em;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  margin-top: -45px;
}
.home-first .head02 .logo {
  display: flex;
  align-items: center;
}
.home-first .head02 .logo img {
  max-height: 60px;
  display: none;
}

#home-header {
  width: 100%;
  height: 1px;
  padding: 0;
  margin-bottom: 0;
  display: inherit !important;
  position: relative;
  z-index: 999;
}
#home-header a {
  text-decoration: none;
  color: #FFF;
}
#home-header a:hover {
  color: #999;
}
#home-header .pc-head {
  background: rgba(255, 255, 255, 0);
  border-bottom: none;
}

.home-inner {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 2em;
  margin: 0 auto;
}
.home-inner .home-catch {
  padding: 4em 2em 2em 2em;
}
.home-inner .home-catch img {
  max-height: 450px;
}
@media (max-width: 768px) {
  .home-inner .home-catch {
    width: 60%;
  }
}
.home-inner #video-background {
  z-index: -1;
}

.home-copy {
  width: 100%;
  max-width: 1200px;
  padding: 2em 0;
  margin: 0 auto;
  background: url("../../img/f-bg.png") no-repeat bottom center;
  background-size: 100% auto;
}
.home-copy .row {
  display: flex;
  flex-wrap: nowrap;
}

.wabi {
  font-size: 250%;
  font-family: "ten-mincho";
  writing-mode: vertical-rl;
  margin-left: auto;
  padding: 0.25em 0.5em;
  display: flex;
  align-items: flex-start;
}
.wabi span {
  font-size: 75%;
}

.sabi {
  font-size: 250%;
  font-family: "ten-mincho";
  writing-mode: vertical-rl;
  margin-right: auto;
  padding: 0.25em 0.5em;
  display: flex;
  align-items: flex-end;
}
.sabi span {
  font-size: 75%;
}
.sabi div {
  margin-top: auto;
}

.w-text {
  padding: 0.25em 1em;
  font-size: 120%;
  font-family: "ten-mincho";
  /*border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;*/
  display: flex;
  align-items: center;
  flex-flow: column;
}
.w-text div {
  width: 100%;
  padding: 0.5em;
}

.news-list {
  margin-bottom: 2em;
}
.news-list li {
  border-bottom: 1px solid #CCC;
  padding: 0.5em;
}
.news-list li p {
  margin: 0;
  padding: 0.25em 0;
  line-height: 1.5em;
}

.banner-block li {
  margin-bottom: 1em;
}

.home-cate-nav .col-3a {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .home-cate-nav .col-3a {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .home-cate-nav .col-3a {
    width: 100%;
  }
}
.home-cate-nav .col-3a .btn {
  width: 90%;
  margin-top: auto;
}

.pickup-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-position: center center;
  background-size: cover;
}
.pickup-img.cate-bg01 {
  background-image: url("../../img/home/home-img-s01.jpg");
}
.pickup-img.cate-bg02 {
  background-image: url("../../img/home/home-img-s02.jpg?=ver2.1");
}
.pickup-img.cate-bg03 {
  background-image: url("../../img/home/home-img-s03.jpg?=ver2.1");
}
.pickup-img h3 {
  color: #FFF;
  margin: 0;
}
@media (max-width: 480px) {
  .pickup-img {
    height: 200px;
  }
}

.pickup-text {
  padding: 1em;
  font-size: 90%;
  line-height: 1.7em;
}
.pickup-text h4 {
  font-size: 21px;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .pickup-text h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .pickup-text h4 {
    font-size: 16px;
  }
}

/*　背景動画用　*/
.movie-block {
  overflow: hidden;
  height: 600px;
}
@media (max-width: 768px) {
  .movie-block {
    height: 360px;
  }
}

#movie {
  padding: 0;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media (max-width: 768px) {
  #movie {
    height: 360px;
  }
}

#video-background {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

#video-overlay {
  min-width: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../img/bg-dot2.png") repeat center center;
  z-index: 1;
  height: 100%;
}

.sponsor-block {
  padding: 1em 2em;
  position: relative;
  background: #aa8739;
  border-radius: 10px;
  color: #FFF;
  transition: all 0.3s;
  overflow: hidden;
}
.sponsor-block:hover {
  background: #4D4D4D;
}
.sponsor-block h5 {
  font-size: 100%;
  color: #FFF;
}
.sponsor-block p {
  font-size: 85%;
  line-height: 1.3;
  margin: 0;
}
.sponsor-block a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  display: block;
  text-indent: -9999px;
}

/*----------------------------------------------------
	ページ
----------------------------------------------------*/
.page-head {
  padding-top: 100px;
}
@media (max-width: 960px) {
  .page-head {
    padding-top: 70px;
  }
}

.swiper-container_main {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper-container_main {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .swiper-container_main {
    height: 250px;
  }
}
.swiper-container_main .swiper-wrapper {
  width: 100%;
  margin: 0;
  position: relative;
}
.swiper-container_main .swiper-wrapper li {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  background-image: url("../../img/head-img.jpg");
  background: url("") no-repeat center center;
  background-size: cover;
}
.swiper-container_main .swiper-wrapper li.class-bg01 {
  background-image: url("../../img/class/class-head-img01.jpg?ver=1.0");
}
.swiper-container_main .swiper-wrapper li.class-bg02 {
  background-image: url("../../img/class/class-head-img02.jpg?ver=1.0");
}
.swiper-container_main .swiper-wrapper li.play-bg01 {
  background-image: url("../../img/play/play-head-img01.jpg");
  background-position: center right;
}
.swiper-container_main .swiper-wrapper li.play-bg02 {
  background-image: url("../../img/play/play-head-img02.jpg?=ver1.0");
}
.swiper-container_main .swiper-wrapper li.works-bg01 {
  background-image: url("../../img/works/works-head-img01.jpg");
}
.swiper-container_main .swiper-wrapper li.works-bg02 {
  background-image: url("../../img/works/works-head-img02.jpg");
}
.swiper-container_main .swiper-wrapper li.profile-bg01 {
  background-image: url("../../img/profile/profile-head-img01.jpg");
}

.page-catch {
  width: 100%;
  text-align: right;
  color: #FFF;
  padding-bottom: 2em;
  font-family: "ten-mincho";
  font-size: 150%;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 2px black;
}
.page-catch span {
  padding: 0 1em;
  border-bottom: 1px solid #FFF;
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
.feature-block {
  font-family: "ten-mincho";
  letter-spacing: 1.5px;
  padding: 0.25em 1em;
  color: #FFF;
}
.feature-block.bg-color01 {
  background-color: #7cbe30;
}
.feature-block.bg-color02 {
  background-color: #2179bf;
}
.feature-block.bg-color03 {
  background-color: #231815;
}

.w1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  margin: 0 auto;
}

.w600 {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

.w400 {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

.font-s {
  font-size: 80%;
  line-height: 1.5em;
}

.font-m {
  font-size: 90%;
  line-height: 1.7em;
}

.typeA .col-2a {
  width: 35%;
}
.typeA .col-2b {
  width: 60%;
}
@media (max-width: 960px) {
  .typeA .col-2a {
    width: 100%;
    text-align: center;
  }
  .typeA .col-2a img {
    width: 100%;
    max-width: 250px;
  }
  .typeA .col-2b {
    width: 100%;
  }
}

.typeB .col-2a {
  width: 30%;
  text-align: center;
}
.typeB .col-2a img {
  width: 100%;
  max-width: 250px;
}
.typeB .col-2b {
  width: 65%;
}
@media (max-width: 768px) {
  .typeB .col-2a {
    width: 100%;
  }
  .typeB .col-2b {
    width: 100%;
  }
}

.typeC .col-2 {
  width: 50%;
  padding: 2em;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .typeC .col-2 {
    width: 100%;
    padding: 0;
  }
  .typeC .col-2 img {
    width: 60%;
    margin: 0 auto;
  }
  .typeC .col-2 h5 {
    text-align: center;
  }
}

.typeD .col-2a {
  width: 35%;
  text-align: center;
}
.typeD .col-2a img {
  width: 100%;
}
.typeD .col-2b {
  width: 60%;
}
@media (max-width: 480px) {
  .typeD .col-2a {
    width: 100%;
  }
  .typeD .col-2b {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tab-row .col-2 {
    width: 100%;
  }
}

.page-wide {
  align-items: center;
}
@media (max-width: 960px) {
  .page-wide {
    align-items: flex-start;
  }
}
.page-wide .wide-text {
  max-width: 700px;
  padding: 0 2em;
}
@media (max-width: 960px) {
  .page-wide .wide-text {
    padding: 1em;
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  .page-wide .col-2 {
    width: 100%;
  }
}
.page-wide .col-2b .wide-text {
  max-width: 850px;
}
@media (max-width: 960px) {
  .page-wide .col-2b .wide-text {
    padding: 1em;
    max-width: 100%;
  }
}

.bg-prof {
  background: #e7e7e7;
  padding: 3em;
  border-radius: 10px;
  margin: 1em auto;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 480px) {
  .bg-prof {
    padding: 2em;
  }
}

/*----------------------------------------------------
	教室
----------------------------------------------------*/
#planA, #planB {
  padding-top: 100px;
}

.plan-bnA {
  background: #7cbe30;
  border-radius: 10px;
  transition: all 0.3s;
}
.plan-bnA:hover {
  background: #4D4D4D;
}

.plan-bnB {
  background: #2179bf;
  border-radius: 10px;
  transition: all 0.3s;
}
.plan-bnB:hover {
  background: #4D4D4D;
}

.trial-menu .ume-bg {
  background: url("../../img/class/icon-ume.png") no-repeat top center #FFF;
  background-size: 60px auto;
  padding-top: 50px;
}
.trial-menu .take-bg {
  background: url("../../img/class/icon-take.png") no-repeat top center #FFF;
  background-size: 60px auto;
  padding-top: 50px;
}
.trial-menu .matsu-bg {
  background: url("../../img/class/icon-matsu.png") no-repeat top center #FFF;
  background-size: 60px auto;
  max-width: 800px;
  margin: 2em auto;
  padding-top: 50px;
}
.trial-menu .mtom-bg {
  background: url("../../img/class/mtom-bg.jpg?=ver1.0") no-repeat bottom right #FFF;
  background-size: 600px auto;
  padding-top: 2em;
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
}
.trial-menu h4 {
  font-size: 180%;
  margin-bottom: 0.25em;
}
.trial-menu p {
  padding: 2em;
}
@media (max-width: 768px) {
  .trial-menu p {
    padding: 1.5em;
  }
}
.trial-menu hr {
  margin: 0 1.5em;
}
.trial-menu .class-info {
  text-align: center;
  padding-top: 1em;
}
.trial-menu .class-info img {
  width: 80%;
  max-width: 380px;
}

.matsu-bg2 {
  background: url("../../img/class/matsu-bg.jpg?=ver1.0") no-repeat bottom right #FFF;
  background-size: 600px auto;
  padding-top: 2em;
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
}

/*----------------------------------------------------
	演奏
----------------------------------------------------*/
.play-img-bg {
  background: url("../../img/play/play-bg-img.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .play-img-bg {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .play-img-bg {
    height: 250px;
  }
}

/*----------------------------------------------------
	blog
----------------------------------------------------*/
.blog-cate {
  text-align: center;
}
.blog-cate ul {
  display: inline-flex;
}
@media (max-width: 768px) {
  .blog-cate ul {
    flex-flow: wrap;
  }
}
.blog-cate ul li {
  margin: 0.5em 1em;
  font-size: 90%;
}
.blog-cate ul li a {
  display: block;
  border: 1px solid #CCC;
  padding: 0 1em;
  color: #CCC;
}
.blog-cate ul li a:hover {
  border: 1px solid #000;
  color: #000;
}
.blog-cate ul li a.active {
  border: 1px solid #000;
  color: #000;
}

.pagenation {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
}
.pagenation .current_page {
  color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 0 10px;
  margin: 3px;
}
.pagenation .link_page {
  color: #CCC;
  border: 1px solid #EFEFEF;
  border-radius: 6px;
  background: #EFEFEF;
  padding: 0 10px;
  margin: 3px;
}
.pagenation .link_page:hover {
  border: 1px solid #000;
  color: #000;
}
.pagenation .link_next {
  color: #CCC;
  padding: 0 10px;
  margin: 3px;
}
.pagenation .link_next:hover {
  color: #000;
}

/*	Q & A
----------------------------------------------------*/
#faq ul {
  padding: 0 1em;
}

#faq li {
  padding: 0;
  margin-bottom: 1em;
}

#faq .faq-btn,
#faq .answer {
  display: flex; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  line-height: 1.4;
}

#faq .faq-btn {
  border-bottom: 1px solid #CCC;
}

#faq .faq-btn a {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  width: 100%;
}

#faq .faq-btn a:after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 2px solid #CCC;
  border-right: 2px solid #CCC;
  position: absolute;
  top: 40%;
  right: 20px;
  transform: rotate(45deg);
  transition: 0.4s ease-in-out;
}

#faq .faq-btn.selected a:after {
  border-color: #CCC;
  transform: rotate(135deg);
}

.faq-btn p,
.answer p {
  color: #000;
  font-size: 150%;
  padding: 1em;
  max-width: 60px;
  margin: 0;
  margin-right: 0.5em;
  text-align: center;
  display: flex;
}

.answer {
  background: #EFEFEF;
  padding: 1em 0;
}

.answer p {
  background: #EFEFEF;
  color: #000;
}

#faq .faq-btn.selected {
  border-bottom: 1px solid #efefef;
}

/*	News
----------------------------------------------------*/
.post {
  padding-top: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #CCC;
  margin-bottom: 2em;
}
@media (max-width: 960px) {
  .post {
    padding-top: 1.5em;
  }
}

.post-info .date {
  margin: 0;
  font-size: 80%;
}
.post-info h3 {
  text-align: left;
  margin-bottom: 1.5em;
}

/*----------------------------------------------------
	演奏
----------------------------------------------------*/
.mainvisual {
  overflow-x: hidden;
}
.mainvisual .slide-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  padding: 30px;
}
@media (max-width: 480px) {
  .mainvisual .slide-container {
    padding: 10px;
  }
}
.mainvisual img {
  border: 3px solid #FFF;
}

.swiper-slide {
  border: 1px solid #aa8739;
  padding: 5px;
  position: relative;
}

.swiper-button-prev {
  background-image: url("../../img/bn-prev.png");
  background-size: cover;
  top: 50%;
  left: -20px;
  width: 42px;
  height: 42px;
  margin-top: 12px;
}

.swiper-button-next {
  background-image: url("../../img/bn-next.png");
  background-size: cover;
  top: 50%;
  right: -20px;
  width: 42px;
  height: 42px;
  margin-top: 12px;
}