@charset "UTF-8";
/***************************************

base CSS

2019/XX

******************************************/
/**************************************

設定用scss

**************************************/
header .ib nav, .seminar .ib .s_con, .gallery .ib .gal_con {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

/***********************

common

**********************/
* {
  box-sizing: border-box; }

a {
  text-decoration: none;
  color: inherit; }
  a:hover {
    opacity: 0.8; }

li {
  list-style: none; }

i, em {
  font-style: normal; }

body, html {
  margin: 0px;
  padding: 0px;
  font-family: kozuka-mincho-pr6n, serif;
  font-feature-settings: 'palt';
  color: #333;
  font-weight: 500; }

body {
  overflow-x: hidden;
  color: #333;
  overflow-x: hidden; }

ul {
  margin: 0;
  padding: 0; }

h2, h3, h4, h5 {
  font-weight: bold; }

.ib {
  width: 1000px;
  margin: 0 auto;
  position: relative; }

table {
  border-collapse: collapse; }

#wpadminbar {
  display: none; }

.pc_content {
  display: block !important; }

.sp_content {
  display: none !important; }

/*************************************

top_scroll

*************************************/
a.scroll {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 20px);
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  color: #fff;
  font-family: 'Yu gochic',serif;
  padding-top: 60px; }
  a.scroll span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box; }
    a.scroll span::before {
      position: absolute;
      top: 10px;
      left: 50%;
      content: '';
      width: 6px;
      height: 6px;
      margin-left: -3px;
      background-color: #fff;
      border-radius: 100%;
      -webkit-animation: sdb 2s infinite;
      animation: sdb 2s infinite;
      box-sizing: border-box; }

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0; }
  100% {
    opacity: 0; } }
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    transform: translate(0, 20px);
    opacity: 0; }
  100% {
    opacity: 0; } }
/***********************************************

ふわっとアニメーション

************************************************/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInn01 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slideInn01;
  animation-name: slideInn01;
  visibility: visible !important; }

@keyframes slideInn01 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInn02 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slideInn02;
  animation-name: slideInn02;
  visibility: visible !important; }

@keyframes slideInn02 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
/*************************************

404

*************************************/
p.p404 {
  padding: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  background: #f1f1f1;
  margin: 40px 0; }

header {
  height: 100px;
  background: #fff;
  position: fixed;
  width: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 999; }
  header .sns {
    position: absolute;
    width: 120px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    right: -60px;
    top: 35px; }
    header .sns a {
      width: 23%;
      color: #666; }
  header h1 {
    font-family: myriad-pro, sans-serif;
    color: #7a9506;
    font-weight: normal;
    font-size: 50px;
    margin-top: 0;
    padding-top: 15px; }
  header .ib {
    padding: 0;
    height: 100%; }
    header .ib nav {
      width: 555px;
      justify-content: flex-start;
      position: absolute;
      right: 30px;
      top: 0; }
      header .ib nav a {
        font-size: 13px;
        color: #928f8f;
        padding: 37px 20px 38px;
        height: 100px; }
        header .ib nav a:hover {
          border-bottom: 3px solid #928f8f; }

.topimg {
  height: 620px;
  margin-top: 100px;
  background: url(../img/topimg.jpg) 50% 50%;
  background-size: cover; }
  .topimg .ib {
    padding: 50px 0;
    height: 100%; }
    .topimg .ib h1 {
      font-size: 46px;
      color: #7a9506;
      padding-top: 120px;
      font-weight: 500;
      line-height: 1.4;
      font-family: kozuka-mincho-pr6n, serif;
      padding-left: 100px; }

a.btn {
  display: block;
  padding: 15px;
  border: 1px solid #808080;
  color: #808080;
  font-size: 10px;
  text-align: center;
  width: 100px; }

.intro .ib {
  padding: 50px 0 20px; }
  .intro .ib h2 {
    font-size: 37px;
    font-weight: 500;
    color: #808080;
    text-align: center; }
    .intro .ib h2 span {
      display: block;
      font-size: 27px; }
  .intro .ib p {
    font-size: 16px;
    color: #808080;
    text-align: center;
    width: 975px;
    margin: 30px auto; }
  .intro .ib a.btn {
    display: block;
    margin: 30px auto; }

.topmov {
  height: 600px;
  position: relative; }
  .topmov:before {
    position: absolute;
    content: '';
    background: url(../img/pattern10.png);
    height: 100%;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3; }
  .topmov iframe {
    width: 100%;
    height: 100%; }
  .topmov a.btn {
    width: 120px;
    position: absolute;
    font-size: 13px;
    color: #fff;
    border-color: #fff;
    left: calc(50% - 60px);
    bottom: 40px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6); }

.trainer {
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/kurihara.jpg) 50% 20%;
  background-blend-mode: multiply;
  background-size: cover; }
  .trainer .ib {
    padding: 50px 0;
    width: 900px; }
    .trainer .ib h2 {
      text-align: right;
      font-size: 27px;
      font-family: kozuka-mincho-pr6n, serif;
      color: #fff;
      font-weight: 500;
      padding-top: 90px; }
    .trainer .ib p {
      font-size: 22px;
      text-align: right;
      color: #fff; }
      .trainer .ib p span {
        display: block;
        font-size: 14px; }
    .trainer .ib a.btn {
      width: 130px;
      position: absolute;
      font-size: 15px;
      color: #fff;
      border-color: #fff;
      right: 0;
      top: 330px; }

article h2 {
  background: #ebebeb;
  padding: 35px 0 30px;
  font-size: 19px;
  color: #737373;
  margin: 0;
  line-height: 1.5;
  text-align: center; }
  article h2 span {
    font-size: 15px;
    display: block; }

.seminar .ib {
  padding: 50px 0; }
  .seminar .ib .s_con {
    width: 890px;
    margin: 40px auto; }
    .seminar .ib .s_con .s_box {
      width: calc( 100% / 3 );
      margin-bottom: 50px; }
      .seminar .ib .s_con .s_box span.img {
        display: block;
        height: 180px;
        overflow: hidden; }
        .seminar .ib .s_con .s_box span.img img {
          object-fit: cover;
          height: 100%;
          width: 100%; }
      .seminar .ib .s_con .s_box p {
        font-size: 15px;
        color: #737373;
        margin: 10px 0; }
  .seminar .ib .post {
    border-top: 1px solid  #333; }
    .seminar .ib .post p {
      margin: 0;
      margin-bottom: 15px;
      padding: 15px 0;
      border-bottom: 1px solid  #333;
      position: relative; }
      .seminar .ib .post p a {
        display: inline-block; }
      .seminar .ib .post p:after {
        content: "\e5cc";
        font-family: material icons;
        position: absolute;
        right: 0;
        top: 20px;
        font-size: 20px; }
      .seminar .ib .post p span {
        display: inline-block;
        margin-right: 20px;
        font-weight: bold;
        color: #7a9506; }
  .seminar .ib a.btn {
    display: block;
    width: 300px;
    border-color: #000;
    padding: 20px;
    margin: 50px auto 20px;
    font-size: 18px;
    text-align: center;
    color: #000; }

.gallery .ib {
  padding: 50px 0; }
  .gallery .ib .gal_con {
    margin: 40px auto 100px;
    width: 910px;
    padding: 10px;
    background: #f4f4f4; }
    .gallery .ib .gal_con span {
      width: 33%;
      height: 286px;
      overflow: hidden; }
      .gallery .ib .gal_con span img {
        object-fit: cover;
        height: 100%;
        width: 100%; }
  .gallery .ib a.btn {
    width: 404px;
    border-color: #000;
    color: #000;
    font-size: 21px;
    padding: 15px 20px;
    margin: 30px auto; }

.page_tit {
  width: 100%;
  height: 200px;
  margin-top: 100px;
  padding: 30px; }
  .page_tit.member {
    background: linear-gradient(rgba(122, 149, 6, 0.4), rgba(122, 149, 6, 0.4)), url(../img/member_top.png) 50% 50%;
    background-size: cover;
    background-blend-mode: multiply; }
  .page_tit.about {
    background: linear-gradient(rgba(122, 149, 6, 0.4), rgba(122, 149, 6, 0.4)), url(../img/piano.png) calc(50% - 340px) 50% no-repeat, url(../img/about_top.png) 50% 50%;
    background-size: cover,auto,cover;
    background-blend-mode: multiply; }
  .page_tit h1 {
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding-top: 30px; }

.panlist .ib {
  padding: 10px 0;
  font-size: 12px;
  color: #808080; }

.content {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; }
  .content .ib {
    padding: 60px 0;
    width: 840px;
    max-width: 100%; }
  .content .intro_horita {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .content .intro_horita .img {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 410px; }
      .content .intro_horita .img span {
        display: block;
        margin-bottom: 10px; }
        .content .intro_horita .img span img {
          object-fit: cover;
          height: 100%;
          width: 100%; }
        .content .intro_horita .img span:nth-child(1) {
          width: 100%;
          height: 240px; }
        .content .intro_horita .img span:nth-child(2), .content .intro_horita .img span:nth-child(3) {
          width: 49%;
          height: 140px; }
        .content .intro_horita .img span:nth-child(4), .content .intro_horita .img span:nth-child(5) {
          width: 49%;
          height: 260px; }
    .content .intro_horita .detail {
      width: 390px; }
      .content .intro_horita .detail h2 {
        font-size: 24px;
        margin-top: 0; }
        .content .intro_horita .detail h2 span {
          display: inline-block;
          font-size: 16px; }
        .content .intro_horita .detail h2 i {
          display: block;
          font-size: 16px; }
      .content .intro_horita .detail p {
        font-size: 15px;
        line-height: 2; }
  .content .member {
    margin-top: 80px;
    margin-bottom: 70px; }
    .content .member h3 {
      font-size: 24px;
      text-align: center;
      padding-bottom: 7px;
      border-bottom: 1px solid  #777; }
    .content .member .mem_con {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .content .member .mem_con .mem_box {
        width: 44%; }
        .content .member .mem_con .mem_box .img {
          display: block;
          width: 100%;
          height: 220px; }
          .content .member .mem_con .mem_box .img.ob_con img {
            object-fit: contain; }
          .content .member .mem_con .mem_box .img img {
            object-fit: cover;
            height: 100%;
            width: 100%; }
        .content .member .mem_con .mem_box h4 {
          font-size: 16px; }
          .content .member .mem_con .mem_box h4 span {
            display: block;
            margin-top: 5px;
            font-size: 13px;
            font-weight: bold; }
        .content .member .mem_con .mem_box p {
          font-size: 13px;
          line-height: 2.1; }
  .content a.btn {
    width: 404px;
    border-color: #000;
    color: #000;
    font-size: 21px;
    padding: 18px 20px;
    margin: 30px auto; }
  .content.about .rinen {
    text-align: center;
    font-size: 25px;
    font-weight: bold; }
    .content.about .rinen span {
      display: block;
      font-size: 22px;
      margin-bottom: 30px; }
  .content.about .gaiyo {
    width: 540px;
    margin: 80px auto; }
    .content.about .gaiyo h3 {
      font-size: 13px;
      font-weight: bold;
      color: #7a9506; }
    .content.about .gaiyo table {
      width: 100%;
      font-size: 13px;
      line-height: 1.7; }
      .content.about .gaiyo table tr:nth-child(1) th {
        border-top: 1px solid  #737373 !important; }
      .content.about .gaiyo table tr:nth-child(1) td {
        border-top: 1px solid  #737373 !important; }
      .content.about .gaiyo table th {
        width: 150px;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid  #737373 !important; }
      .content.about .gaiyo table td {
        padding: 15px 0 15px;
        border-bottom: 1px solid  #737373 !important; }
        .content.about .gaiyo table td a {
          color: #55a3dc; }
        .content.about .gaiyo table td span {
          display: block;
          border-bottom: 1px solid  #737373 !important;
          padding: 15px 0; }
          .content.about .gaiyo table td span:nth-child(1) {
            padding-top: 0; }
          .content.about .gaiyo table td span:last-child {
            border-bottom: none !important;
            padding-bottom: 0; }
  .content.about .contact h2 {
    text-align: center;
    display: table;
    padding-bottom: 5px;
    border-bottom: 1px solid  #ccc;
    margin: 30px auto;
    font-size: 24px; }
  .content.about .contact p {
    font-size: 13px;
    line-height: 2.1; }

.contact div.detail {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; }
  .contact div.detail span {
    font-size: 13px;
    margin: 30px 0;
    display: block; }
.contact .alert-danger {
  background: red;
  padding: 10px;
  color: #fff;
  margin: 10px 0; }
.contact .mgb15 {
  margin-bottom: 15px !important; }
.contact table {
  font-size: 15px; }
  .contact table textarea {
    padding: 10px; }
  .contact table td label {
    display: inline-block;
    width: 30%; }
  .contact table td.contact label {
    width: 100px; }
  .contact table td .address {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px; }
    .contact table td .address input[type='text'] {
      width: 100% !important; }
    .contact table td .address input[type='button'] {
      width: 20%;
      background: #002368;
      color: #fff;
      border: none;
      box-shadow: none;
      border-radius: 3px; }
.contact input[type="submit"] {
  width: 240px;
  padding: 20px;
  display: block;
  color: #fff;
  background: #7a9506;
  text-align: center;
  border-radius: 4px;
  margin: 40px auto;
  cursor: pointer;
  border: none;
  box-shadow: none; }

.content table {
  border-collapse: collapse;
  width: 100%; }
  .content table tr:nth-child(1) th {
    border-top: 1px solid #ca0000; }
  .content table tr:nth-child(1) td {
    border-top: 1px solid #ccc; }
  .content table tr.emp {
    color: red; }
    .content table tr.emp th {
      border: none;
      width: 100%;
      padding: 0; }
      .content table tr.emp th label {
        display: block;
        margin-top: 20px; }
  .content table tr.w100 th {
    color: red;
    padding: 15px 0;
    border-bottom: none; }
    .content table tr.w100 th span {
      display: block;
      border: 1px solid red;
      padding: 15px; }
  .content table th {
    width: 25%;
    padding: 20px 0 20px;
    text-align: left;
    border-bottom: 1px solid #ca0000; }
    .content table th.req:before {
      content: '必須';
      color: #d70045;
      font-size: 12px;
      display: inline-block;
      margin-right: 5px;
      position: relative;
      top: -1px;
      padding: 2px 7px;
      line-height: 1.2;
      border: 1px solid  #d70045; }
  .content table td {
    border-bottom: 1px solid  #ddd; }

.content table td {
  width: 75%;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #bbb; }
.content input[type="text"], .content input[type="email"], .content input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid  #bbb;
  border-radius: 4px; }
.content textarea {
  min-height: 200px;
  width: 100%;
  border: 1px solid  #bbb;
  border-radius: 4px; }

input#name {
  margin-bottom: 15px; }

/*************************************

footer

**************************************/
#pagetop {
  width: 52px;
  height: 52px;
  background: #000;
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  cursor: pointer;
  right: 0px; }
  #pagetop:before {
    content: "\f3d8";
    font-size: 28px;
    position: absolute;
    top: 7px;
    left: 16px;
    font-family: ionicons;
    color: #fff; }
  #pagetop i {
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    left: 0;
    text-align: center;
    width: 100%;
    display: block;
    color: #fff; }

footer {
  background: #f1f1f1; }
  footer .ib {
    padding: 30px 0 20px; }
    footer .ib p {
      text-align: center;
      color: #000;
      font-size: 12px; }

/*# sourceMappingURL=style.css.map */
