@charset "UTF-8";
/*
 * 変数設定
 */
/* boxCの幅割合 */
/*
 * 関数設定
 */
/* =============================================
 *
 * 全体構成
 * 
 * =============================================
 */
html, body {
  font-family: "Meiryo UI", "Hiragino Kaku Gothic Pro", Arial, sans-serif;
  font-size: 15px;
  background-image: url("/images/background.jpg");
  background-attachment: scroll;
  min-width: 360px;
  margin: 0 auto; }

img {
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

/* --------------------------
 * box配置関係
 * --------------------------
 */
.boxA {
  background-color: #fff;
  width: 100%;
  height: 105px;
  z-index: 100; }
  @media (max-width: 767px) {
    .boxA {
      height: 15vw;
      z-index: 1;
      position: sticky;
      top: 0px;
      left: 0px;
      min-width: 360px;
      min-height: calc( 39.6px + 2vw * 2);
      border-bottom: 1px solid #1515ff; } }

.boxC {
  margin: 0px auto;
  width: 90%;
  max-width: 1000px; }
  @media (max-width: 767px) {
    .boxC {
      position: relative;
      width: 100%;
      min-width: 320px; } }

@media (max-width: 767px) {
  .open .boxC {
    visibility: hidden; } }

/* =============================================
 *
 * boxA 構成
 * 
 * =============================================
 */
.header {
  margin: 0px auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-around; }
  @media (max-width: 767px) {
    .header {
      display: block;
      pointer-events: none; } }

.logo {
  order: 1;
  max-width: 1000px; }
  .logo img {
    padding: 7px 0px 3px 2vw;
    height: 60px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 255, 0.2));
    -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 255, 0.2)); }
  @media (max-width: 767px) {
    .logo img {
      padding: 2vw 0 2vw 3vw;
      width: auto;
      height: 11vw;
      min-width: 283.8px;
      max-width: 604.6516666667px;
      min-height: 39.6px;
      max-height: 84.37px;
      pointer-events: auto; } }

#menuButton {
  display: none;
  pointer-events: none; }

@media (max-width: 767px) {
  #menuButton {
    pointer-events: auto;
    display: block;
    transition: all .7s;
    width: 15vw;
    height: 15vw;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 3; }
    #menuButton::after {
      position: absolute;
      bottom: 1.05vw;
      width: 100%;
      text-align: center;
      font-size: 2.7vw;
      content: attr(data-txt-menu);
      transition: all .7s; }
    #menuButton span {
      display: block;
      transition: all .7s;
      background: #1515ff;
      border-radius: .3vh;
      position: absolute;
      left: calc(15vw * 0.30);
      width: calc(15vw * 0.47);
      height: 2px; }
      #menuButton span:before {
        position: absolute;
        top: -0.5px;
        left: -6px;
        content: '';
        width: 3px;
        height: 3px;
        background-color: #1515ff;
        border-radius: 4px; }
      #menuButton span:nth-of-type(1) {
        top: 3.75vw; }
      #menuButton span:nth-of-type(2) {
        top: 6.3vw; }
      #menuButton span:nth-of-type(3) {
        top: 8.85vw; }

  /* 開閉用ボタンがクリック → jQueryでopen属性付与 */
  .open #menuButton::after {
    content: attr(data-txt-close); }

  .open #menuButton span::before {
    content: none; }

  .open #menuButton span:nth-of-type(1) {
    -webkit-transform: translateY(2.55vw) rotate(-45deg);
    transform: translateY(2.55vw) rotate(-45deg); }

  .open #menuButton span:nth-of-type(2) {
    opacity: 0; }

  .open #menuButton span:nth-of-type(3) {
    -webkit-transform: translateY(-2.55vw) rotate(45deg);
    transform: translateY(-2.55vw) rotate(45deg); } }
.navi_main {
  order: 3;
  width: 100%;
  background: #1515ff;
  text-decoration: none;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  letter-spacing: -1em;
  box-shadow: 0px 5px 5px grey; }
  .navi_main ul {
    font-size: 0;
    padding-left: 0;
    margin: 0;
    list-style: none; }
  .navi_main li {
    font-size: 18px;
    margin: 0px;
    display: inline-block;
    letter-spacing: 0em; }
    .navi_main li a {
      display: block;
      text-decoration: none; }
  .navi_main li a, .navi_main li a:visited {
    padding: 0px 20px;
    color: #fff; }
  .navi_main li a:hover {
    color: #1515ff;
    background: #fff; }

.navi_sub {
  order: 2;
  padding: 0px 0px 7px 0px;
  color: #1515ff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  letter-spacing: -2em; }
  .navi_sub ul {
    font-size: 0;
    padding-left: 0;
    margin: 0;
    list-style: none; }
  .navi_sub li {
    font-size: 16px;
    display: inline-block;
    letter-spacing: 0em;
    border-right: solid 1px #1515ff; }
    .navi_sub li a {
      display: block;
      text-decoration: none; }
  .navi_sub li:last-child {
    border-right: none; }
  .navi_sub li a, .navi_sub li a:visited {
    padding: 0px 13px;
    text-align: center;
    color: #1515ff; }
  .navi_sub li a:hover {
    text-decoration: underline; }

@media (max-width: 767px) {
  .navigation {
    pointer-events: none;
    display: table;
    width: 100%;
    z-index: 10;
    -webkit-transform: translateZ(2px);
    transform: translateZ(2px);
    background: #fff;
    -webkit-transition: all .7s;
    transition: all .7s;
    visibility: hidden;
    opacity: 0; }
    .navigation ul {
      display: table-cell;
      vertical-align: middle; }
    .navigation li {
      width: 100%;
      margin: 0 auto;
      text-align: center; }
    .navigation li a, .navigation li a:visited {
      display: block;
      color: #1515ff; }
    .navigation li a:hover {
      text-decoration: none; }
    .navigation li::after {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      background: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(0.25, #fff), color-stop(0.5, #1515ff), color-stop(0.75, #fff), to(#fff));
      background: -moz-linear-gradient(left, #fff, #fff 25%, #1515ff 50%, #fff 75%, #fff);
      background: linear-gradient(left, #fff, #fff, #1515ff, #fff, #fff); }
    .navigation li:last-child::after {
      background: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(0.5, #1515ff), to(#fff));
      background: -moz-linear-gradient(left, #fff, #1515ff 50%, #fff);
      background: linear-gradient(left, #fff, #1515ff, #fff); }

  .navi_main {
    top: calc(15vw + .1vh);
    border-top: 1px solid #1515ff;
    line-height: 10vh;
    box-shadow: none; }
    .navi_main li {
      display: block;
      font-size: 4vh; }

  .navi_sub {
    line-height: calc( ( 100vh - 15vw - 10vh * 6 ) / 4);
    padding-bottom: 10vh; }
    .navi_sub li {
      display: block;
      font-size: 3vh;
      border-right: none; }
    .navi_sub li:last-child::after {
      height: 0px; }

  /* 開閉用ボタンがクリックされた時のスタイル */
  .open .navigation {
    pointer-events: auto;
    -webkit-transition: all .7s;
    transition: all .7s;
    visibility: visible;
    opacity: 1; } }
/* =============================================
 *
 * boxC 構成
 * 
 * =============================================
 */
/* contents */
.contents {
  margin: 5px;
  padding: 0px 5px; }
  .contents h2 {
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    border-left: solid 10px #1515ff;
    border-bottom: solid 1px #1515ff; }
  .contents h3 {
    margin-top: 0;
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 5px; }
    .contents h3:before {
      content: '■';
      color: #1515ff; }
  .contents h4 {
    margin-left: 40px;
    margin-right: 5px;
    font-weight: normal; }
  .contents ul {
    margin-top: 5px;
    margin-left: 3px;
    margin-right: 5px; }
  .contents p {
    padding: 4px 4px 4px 10px;
    margin: 4px 4px 4px 10px; }
  .contents table {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px; }
    .contents table td {
      background-color: white; }

/*-- newsWrap --------*/
.newsWrap {
  border: solid 1px black;
  background-color: white;
  margin-top: 7px;
  padding: 5px; }
  .newsWrap img {
    margin-left: 10px;
    width: 40px; }
  .newsWrap h3 {
    margin: 0;
    padding-left: 3px;
    padding-bottom: 3px;
    color: #666666;
    border-bottom: 1px solid black; }
  .newsWrap h3:before {
    content: ''; }
  .newsWrap ul {
    margin-top: 3px; }

/*-- newsLis --*/
.newsList {
  font-size: 14px;
  margin: 0;
  padding: 0; }
  .newsList ul {
    list-style: none; }
  .newsList li {
    color: #222;
    font-size: 12px;
    margin: 0;
    padding: 5px 0;
    margin: 0px 7px;
    border-bottom: 1px dotted #ccc;
    line-height: 120%;
    list-style-type: none; }
  .newsList li:last-child {
    border-bottom: dotted 0px transparent; }
  .newsList a:after {
    /* 未使用 */
    content: "";
    display: block;
    clear: both; }
  .newsList .up_ymd {
    float: left;
    width: 80px; }
  .newsList .news_title {
    float: none;
    width: auto;
    margin-left: 80px; }
  .newsList .newMark {
    display: inline-block;
    border: 1px solid #F00;
    padding: 1px 4px;
    font-size: 11px;
    line-height: 90%;
    background: #F00;
    color: #fff;
    box-shadow: 1px 1px 1px #999;
    border-radius: 8px;
    font-style: italic;
    vertical-align: middle; }

#randomImg {
  padding-top: 3px; }

.team {
  margin-top: 7px; }

/* practice */
.participate ul {
  margin: 0 0 0 1em;
  padding: 0; }

.time_schedule ul {
  list-style: none; }

.time {
  float: left;
  width: 60px; }

.practice {
  float: none;
  width: auto;
  margin-left: 60px; }

.notice {
  color: red; }

/* contact */
.contact {
  text-align: center; }
  .contact img {
    height: 20px; }

/* table */
table {
  border-collapse: collapse; }
  table td, table th {
    border: 1px #2b2b2b solid;
    color: #2b2b2b;
    text-align: center; }
  table th {
    background-color: #ffff99; }

/*-- entry_form_btn --*/
.entry_form_btn {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 60%;
  line-height: 150%;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border: 1px solid blue;
  border-radius: 8px;
  box-shadow: 5px 5px 3px #999;
  background: #fff; }
  .entry_form_btn a {
    display: block;
    text-decoration: none; }
    .entry_form_btn a:visited {
      color: #1515ff; }

/* message */
.message {
  margin: 0 auto;
  width: 95%;
  border: 1px solid black;
  background-color: #ffffff;
  box-shadow: 3px 2px 2px #999; }
  .message p {
    font-size: 100%;
    line-height: 30px;
    padding: 0 20px; }

#signature {
  text-align: right;
  font-weight: bold; }

/* history */
.history ul {
  font-size: 20px;
  padding-bottom: 5px;
  list-style: none; }
  .history ul p {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    text-decoration: underline; }

/* youtube */
.youtube {
  position: relative;
  margin-top: 10px;
  padding-bottom: 56.25%;
  height: 0; }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* playlist */
#playlist {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px; }
  #playlist ul:after {
    content: "";
    display: block;
    clear: both; }
  #playlist li {
    text-align: center;
    width: 25%;
    float: left;
    margin-left: auto;
    margin-right: auto;
    list-style: none; }
    #playlist li a {
      border: 1px solid black;
      display: block;
      padding: 10px;
      color: black;
      text-decoration: none; }
      #playlist li a:hover {
        background-color: #1515FF;
        color: white; }

/* blockquote */
blockquote {
  background-color: #fff;
  padding: 1.5em 1em 0.5em;
  position: relative;
  border: 3px solid #d7d7d7;
  margin: 0 1em 1.5em;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 1px 2px 4px rgba(50, 50, 50, 0.5);
  -webkit-box-shadow: 1px 2px 4px rgba(50, 50, 50, 0.5);
  -moz-box-shadow: 1px 2px 4px rgba(50, 50, 50, 0.5); }
  blockquote:before, blockquote:after {
    content: "“";
    font-size: 400%;
    font-family: "ＭＳ Ｐゴシック",sans-serif;
    color: #999;
    position: absolute; }
  blockquote:before {
    line-height: 1em;
    left: 10;
    top: 0; }
  blockquote:after {
    line-height: 0em;
    right: 0;
    bottom: 0; }

cite {
  text-align: right; }

/*-----------------------------*/
/* entry form */
#entry {
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  color: #666;
  background: #f0f8ff; }

/* 送信ボタン */
input[type="submit"] {
  padding: 5px 20px;
  border: none;
  background: #1515ff;
  color: #fff; }

/* 送信ボタン - マウスオーバー時 */
input[type="submit"]:hover {
  background: #4040ff; }

/* 送信ボタン - 押せないとき */
input[type="submit"][disabled] {
  background-color: #ccc;
  cursor: default; }

#confirm_btn {
  margin-bottom: 20px;
  text-align: center; }

:required {
  border-style: solid; }

textarea {
  width: 98%; }

/* form_table */
.form_table {
  border: 1px solid #7777bb;
  border-collapse: collapse; }
  .form_table td {
    text-align: left; }
  .form_table th {
    width: 40%; }
  .form_table th, .form_table td {
    padding: 8px; }

.mandatory {
  color: red; }

.google-map {
  position: relative;
  width: 90%;
  /* 左右に余白が必要なら値を変更してもOK */
  height: 0;
  padding-bottom: 56.25%;
  /* padding-topでもOK */
  overflow: hidden;
  margin: 0px auto 15px;
  margin-bottom: 15px; }
  .google-map iframe, .google-map object, .google-map embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    /* 必要であれば!importantを付けてください */
    height: 100%;
    /* 必要であれば!importantを付けてください */ }

/*
 * footer
 */
.footer {
  margin: 5px; }
  .footer p {
    margin: auto;
    padding: 10px 0px;
    vertical-align: middle;
    text-align: center;
    color: #808080; }

/*# sourceMappingURL=main.css.map */
