@charset "UTF-8";
.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.mt-71 {
  margin-top: 71px;
}

.separater {
  border-bottom: 1px solid #555;
}

.section-border {
  display: inline-block;
  min-width: 100%;
  border: 1px solid;
  padding: 7px;
}

@media screen and (max-width: 480px) {
  .w-90 {
    width: auto;
  }
}
.content-center {
  margin: 0 auto;
}

.d-block {
  display: block;
}

.page-nation {
  text-align: center;
}
.page-nation li {
  display: inline-block;
  margin-left: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-200 {
  margin-top: 200px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-150 {
  margin-left: 150px;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) format("woff");
}
body {
  background: #f9f9f9;
  color: #2f2f2f;
  font-family: "Open Sans";
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture .link-box {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
header {
  width: 100%;
  padding: 15px 0;
  margin: 0 auto;
  text-align: center;
  background-color: #47b1fc;
}
header #nav-drawer {
  display: none;
}
header .nav-unshown {
  display: none;
}
header #nav-open {
  display: none;
}
header .header-logo img {
  width: 300px;
  margin: 0 auto;
}
header .headline {
  font-size: 32px;
  border-bottom: 1px solid white;
}
header .list {
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
}
header .list-item {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
}
header .title {
  text-decoration: none;
  color: white;
}
header .link-item {
  text-decoration: none;
  color: white;
}
@media screen and (max-width: 480px) {
  header {
    /*チェックボックス等は非表示に*/
    /*アイコンのスペース*/
    /*ハンバーガーアイコンをCSSだけで表現*/
    /*閉じる用の薄黒カバー*/
    /*中身*/
    /*チェックが入ったらもろもろ表示*/
  }
  header #nav-drawer {
    position: relative;
  }
  header .nav-unshown {
    display: none;
  }
  header #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    margin-top: 10px;
  }
  header #nav-open span, header #nav-open span:before, header #nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  header #nav-open span:before {
    bottom: -8px;
  }
  header #nav-open span:after {
    bottom: -16px;
  }
  header #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  header #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #47b1fc;
    /*背景色*/
    transition: 0.3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
  }
  header #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }
  header #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  header .list {
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
  }
  header .list-item {
    list-style: none;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

footer {
  width: 100%;
  background-color: #47b1fc;
  color: white;
}
footer .footer-title {
  width: 250px;
}
footer .footer-title .licence-nubmer {
  font-size: 5px;
  text-align: center;
}
footer .footer-title h3 {
  font-size: 30px;
}
footer .footer-title img {
  margin-top: 10px;
  max-width: 250px;
}
footer .footer-info {
  padding-left: 100px;
  word-break: break-all;
}
footer .sitemap {
  padding-left: 100px;
}
footer .sitemap .footer-sitemap a {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  footer .footer-title {
    width: 120px;
  }
  footer .footer-title h3 {
    font-size: 15px;
  }
  footer .footer-title img {
    margin-top: 10px;
    max-width: 120px;
  }
  footer .footer-info {
    padding-left: 10px;
  }
  footer .footer-info .footer-txt {
    font-size: 10px;
  }
  footer .sitemap {
    display: none;
  }
}
.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}
.container main {
  width: 880px;
}
.container .sidebar {
  width: 320px;
  margin-left: 20px;
}
.container .sidebar .sidebar-container {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}
.container .sidebar .sidebar-container .sidebar-item {
  margin-top: 20px;
  width: 320px;
  background: #91c979;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.container .sidebar .sidebar-container .sidebar-item .link {
  position: absolute;
  display: block;
  width: 100%;
  height: 160px;
  transition: all 0.3s;
}
.container .sidebar .sidebar-container .sidebar-item .link:hover {
  background-color: #ffffff;
  opacity: 0.3;
}
.container .sidebar .sidebar-container .sidebar-item .sidebar-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.container .sidebar .sidebar-container .sidebar-item .sidebar-item-container .description {
  padding-top: 43px;
  font-size: 23px;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 160px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .container {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .container main {
    width: 100%;
  }
  .container .sidebar {
    width: 320px;
    margin: 0 auto;
  }
  .container .sidebar .sidebar-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
  }
  .container .sidebar .sidebar-container .sidebar-item {
    margin: 20px 0 10px 0;
    width: 320px;
    background: #91c979;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .container .sidebar .sidebar-container .sidebar-item .link {
    position: absolute;
    display: block;
    width: 100%;
    height: 160px;
    transition: all 0.3s;
  }
  .container .sidebar .sidebar-container .sidebar-item .link:hover {
    background-color: #ffffff;
    opacity: 0.3;
  }
  .container .sidebar .sidebar-container .sidebar-item .sidebar-item-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .container .sidebar .sidebar-container .sidebar-item .sidebar-item-container .description {
    padding-top: 43px;
    font-size: 25px;
    color: #fff;
    justify-content: center;
    align-items: center;
  }
}
.archive-main .description-container {
  width: 80%;
  margin: 0 auto;
  padding-top: 40px;
}
.archive-main .archive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.archive-main .archive li {
  position: center;
  margin: 45px;
}

@media screen and (max-width: 480px) {
  .archive-main .description-container {
    width: 100%;
    margin: 0;
    padding-top: 40px;
  }
  .archive-main .description-container .description {
    padding-bottom: 20px;
  }
  .archive-main .archive li {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
}
.top-main .contents-list {
  position: relative;
}
.top-main .contents-list .feed-prev-btn {
  position: absolute;
  top: 180px;
  left: 0px;
  background-image: url(/static/img/btn_prev.png);
  z-index: 100;
}
.top-main .contents-list .feed-prev-btn:hover {
  background-image: url(/static/img/btn_prev.png);
}
.top-main .contents-list .feed-prev-btn .bx-prev {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.top-main .contents-list .feed-next-btn {
  position: absolute;
  top: 180px;
  right: 0px;
  background-image: url(/static/img/btn_next.png);
  z-index: 100;
}
.top-main .contents-list .feed-next-btn:hover {
  background-image: url(/static/img/btn_next.png);
}
.top-main .contents-list .feed-next-btn .bx-next {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.top-main .contents-list .navi-btn {
  margin: 79px 8px 0 9px;
  width: 50px;
  height: 50px;
  -webkit-background-size: 50px;
  background-size: 50px;
  background-repeat: no-repeat;
}
.top-main h1 {
  font-size: 2em;
}
.top-main .title {
  text-align: center;
  margin-bottom: 10px;
}
.top-main .notification-container {
  width: 90%;
  text-align: center;
}
.top-main .notification-container .notification-title {
  margin-top: 20px;
  color: #eb9b34;
  font-size: 20px;
  text-align: left;
  margin-left: 30px;
}
.top-main .notification {
  display: flex;
  text-align: left;
  padding: 10px;
}
.top-main .notification .notification-img img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 300px;
  max-height: 400px;
}
.top-main .notification .notification-description {
  text-align: center;
  margin-top: 0;
  min-width: 300px;
}
.top-main .gc_wrapper {
  max-width: 800px;
  min-width: 300px;
  margin: 2.0833% auto;
}
.top-main .gc_wrapper .responsive-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 600px;
  overflow: hidden;
}
.top-main .gc_wrapper .responsive-iframe-container iframe,
.top-main .gc_wrapper .responsive-iframe-container object,
.top-main .gc_wrapper .responsive-iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .big-container {
    display: none;
  }

  .small-container {
    padding-bottom: 200%;
    /* 高さ */
  }
}
@media (min-width: 600px) {
  .small-container {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .top-main section {
    width: 100%;
  }
  .top-main .title {
    text-align: center;
    margin-bottom: 10px;
  }
  .top-main .notification-container {
    width: 100%;
    text-align: center;
  }
  .top-main .notification-container .notification-title {
    display: block;
    margin-top: 20px;
    margin-left: 0px;
    color: #eb9b34;
  }
  .top-main .notification {
    display: block;
    vertical-align: middle;
    text-align: left;
    padding: 10px;
    width: 100%;
  }
  .top-main .notification img {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
  }
}
.chairman {
  float: left;
  max-width: 250px;
  max-height: 250px;
}

p.g_title {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  p.g_title {
    position: relative;
    top: 40px;
  }
}

p.name {
  text-align: right;
}
@media screen and (max-width: 480Px) {
  p.name {
    position: relative;
    top: 60px;
    font-size: 19px;
  }
}

p.text {
  clear: both;
  white-space: pre-wrap;
}
@media screen and (min-width: 481px) {
  p.text {
    position: relative;
    top: -140px;
    left: 260px;
    width: 70%;
    margin-bottom: -100px;
  }
}

span {
  display: inline-block;
  width: 7em;
}

.executives {
  overflow-x: scroll;
}
.executives td {
  padding: 10px 42px;
}
.executives tr {
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .executives {
    overflow-x: scroll;
  }
  .executives td {
    padding: 10px 0px;
  }
  .executives tr {
    white-space: nowrap;
  }
}
.clubs {
  overflow-x: scroll;
}
.clubs td {
  padding: 10px 5px;
}
.clubs tr {
  white-space: nowrap;
}

.lesson-main .title {
  text-align: center;
  margin-bottom: 10px;
}
.lesson-main .lesson-container {
  width: 90%;
  text-align: center;
}
.lesson-main .lesson {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 10px;
  width: 400px;
}
.lesson-main .lesson img {
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 400px;
}
.lesson-main .lesson-title {
  color: #eb9b34;
}

@media screen and (max-width: 480px) {
  .lesson-main .title {
    text-align: center;
    margin-bottom: 10px;
  }
  .lesson-main .lesson-container {
    width: 100%;
    text-align: center;
  }
  .lesson-main .lesson {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 10px;
    width: 100%;
  }
  .lesson-main .lesson img {
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .lesson-main .lesson-title {
    color: #eb9b34;
  }
}
.contact {
  width: 50%;
  margin: 0 auto;
  min-width: 9rem;
}
.contact input, .contact textarea {
  float: left;
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0.5rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background: #e0e0e0;
  color: #7a7a7a;
}
.contact input[type=submit], .contact textarea[type=submit] {
  background: #84AD47;
  color: #fff;
  width: auto;
  float: right;
}
.contact input::placeholder, .contact textarea::placeholder {
  color: #7a7a7a;
}
.contact input.error, .contact textarea.error {
  background: #AD4747;
  color: #fff;
}
.contact input.error::placeholder, .contact textarea.error::placeholder {
  color: black;
}
.contact select {
  float: left;
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0.5rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background: #e0e0e0;
  color: #7a7a7a;
}
.contact textarea {
  height: 10rem;
}

@media screen and (max-width: 480px) {
  .contact {
    width: 90%;
    margin: 10% auto;
    min-width: 9rem;
  }
  .contact input, .contact textarea {
    float: unset;
  }
  .contact input[type=submit], .contact textarea[type=submit] {
    float: unset;
  }
}
.sent_result {
  text-align: center;
}

p.alert {
  color: red;
}

.pagination__wrapper {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 0 auto;
  text-align: center;
}
.pagination ul {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  flex-wrap: wrap;
  border-radius: 3px;
}
.pagination ul li {
  overflow: hidden;
  padding: 0;
  margin: 4px;
}
.pagination ul li a, .pagination ul li span {
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: inline-block;
  text-decoration: none;
  color: #666;
  vertical-align: middle;
}
.pagination ul li a:hover, .pagination ul li span:hover {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: #ccc;
  background: #999;
  border: 2px solid #999;
}

.pagination .pagenation-current {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #47b1fc;
  cursor: default;
  border: 2px solid #47b1fc;
  border-radius: 50%;
}

.page-numbers {
  width: auto;
  padding: 0;
  background: transparent;
}

@media screen and (max-width: 480px) {
  .pagination {
    width: auto;
  }
}
.links-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}
.links-container .link-box {
  position: relative;
  width: 40%;
  border: #7a7a7a solid 1px;
  -webkit-box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.1);
  padding: 3px;
  margin-bottom: 20px;
}
.links-container .link-box figure img {
  margin: 0 auto;
}
.links-container .link-box .link-text .link-title {
  margin-bottom: 5px;
}
.links-container .link-box .link-text .link-opening-hours {
  margin-bottom: 5px;
}
.links-container .link-box .link-text .link-description {
  margin: 5px;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

@media screen and (max-width: 480px) {
  .links-container {
    display: block;
    margin-top: 30px;
  }
  .links-container .link-box {
    position: relative;
    width: 100%;
    height: auto;
    border: #7a7a7a solid 1px;
    -webkit-box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.1);
    padding: 0 0 30px;
    margin-bottom: 20px;
  }
  .links-container .link-box figure {
    margin-bottom: 15px;
  }
  .links-container .link-box .link-text {
    position: unset;
  }
  .links-container .link-box .link-text .link-title {
    margin-bottom: 5px;
  }
  .links-container .link-box .link-text .link-opening-hours {
    margin-bottom: 5px;
  }
  .links-container .link-box .link-text .link-description {
    margin-bottom: 5px;
  }
}
