@charset "utf-8";
/* layout */
/*********************************************
1.top
1-1.header
1-2.nav
1-3.main
1-4.footer

2.achievement

3.activity

4.menber

5.access

6.gallery

※.TOPに戻る
*********************************************/

/*********************************************
1.top 1-1.header
*********************************************/
body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

#container {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
#header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  background: #fff;
  z-index: 100;
  top: 0;
  left: 0;
}
.header_wrap {
  width: 1024px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #fff;
}
.header_box1 {
  width: 50%;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
}
h1 {
  font-size: 14px;
  font-weight: normal;
  padding-top: 2%;
}
.header_box1 p a {
  display: block;
}
.header_box1 p img {
  width: 50%;
  max-width: 750px;
  margin: 0 auto;
}
.header_box2 {
  width: 49%;
  display: inline-block;
  padding: 0 0 0 12%;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  box-sizing: border-box;
}
.header_box2 li {
  line-height: 1.5em;
}
.header_box2 li a {
  color: red;
}
.header_box2 li a:hover {
  color: cornflowerblue;
}

@media screen and (max-width: 1024px) {
  #container {
    width: 100%;
    padding: 3% 3% 0;
    box-sizing: border-box;
  }
  #header {
    width: 100%;
    background: #fff;
  }
  
  .header_wrap {
    width: 100%;
    padding: 3% 3% 0;
  }
  .header_box2 {
    padding: 0 0 0 10%;
  }
}
@media screen and (max-width: 768px) {
  .header_box1 {
    width: 44%;
  }
  .header_box1 h1 {
    font-size: 1em;
  }
  .header_box1 p img {
    width: 75%;
  }
  .header_box2 {
    width: 55%;
    padding: 0;
  }
}

@media screen and (max-width: 599px) {
  .header_wrap {
    padding: 3% 3%;
  }
  .header_box1 {
    width: 40%;
  }
  .header_box1 p img {
    width: 85%;
  }
  .header_box2 {
    width: 59%;
  }
}

@media screen and (max-width: 430px) {
  .header_box2 {
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .header_box1 {
    width: 100%;
  }
  .header_box1 p img {
    width: 45%;
  }
  .header_box2 {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  .header_box2 .sp_8 {
    display: block;
  }  
}

/*********************************************
1-2.nav
*********************************************/
@media screen and (min-width: 613px){
  .btn-gNav{
    display: none;
  }
  #gNav {
    width: 100%;
    margin: 3% auto 0;
    padding-bottom: 1.5%;
    text-align: center;
    box-sizing: border-box;
  }
  #gNav ul {
    letter-spacing: -1em;
  }
  #gNav li {
    width: calc(100% / 6);
    display: inline-block;
    letter-spacing: normal;
    text-align: center;
    border-right: 1px solid #555;
    box-sizing: border-box;
    font-weight: bold;
  }
  #gNav li:first-child {
    border-left: 1px solid #555;
  }
  #gNav li a {
    display: block;
    width: 100%;
    line-height: 2.5em;
    cursor: pointer;
  }
  #gNav li a:hover {
    background: #d5bff3;
    color: #fff;
  } 
}

@media screen and (max-width: 612px) {
  #hamburger .btn-gNav{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  #hamburger .btn-gNav span{
    position: absolute;
    width: 100%;
    height: 4px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  #hamburger .btn-gNav span:nth-child(1) {
    top:0;
  }
  #hamburger .btn-gNav span:nth-child(2) {
    top:10px;
  }
  #hamburger .btn-gNav span:nth-child(3) {
    top:20px;
  }
  #hamburger .btn-gNav.open span:nth-child(1){
    background: #fff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  #hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
    top: 6px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  #gNav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: #444;
    opacity: .9;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    padding-top: 50px;
    transition: .3s;
  }
  #gNav.open{
    right: 0px;
  }
  #gNav .gNav-menu{
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: top;
  }
  #gNav .gNav-menu li{
    display: block;
    padding : 20px 30px;
  }
  #gNav .gNav-menu li a{
    color: #ddd;
    text-decoration: none;
    font-weight: bold;
  }
}

/*********************************************
1-3.main
*********************************************/
.main {
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
}

/* slider */
.slider {
  width: 100%;
  margin: 30px auto 80px;
}
.slick-slide img {
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin: 0 auto;
}
.mypattern {
  width: 100%;
}
.mypattern .slick-slide {
  margin: 10px;
  height: auto;
}

/*slick setting*/
.mypattern .slick-slide:not(.slick-center) {
  -webkit-filter: opacity(40%);
  -moz-filter: opacity(40%);
  -o-filter: opacity(40%);
  -ms-filter: opacity(40%);
  filter: opacity(40%);
  transition: 0.2s linear;
}
.slick-prev:before,
.slick-next:before {
  color: #000;
}
/*slick setting*/


.main_wrap {
  width: 1024px;
  margin: 3% auto 0;
  box-sizing: border-box;
}
.main_wrap h2 {
  margin-bottom: 3%;
  padding: 1.5% 0 1% 2%;
  background: #fdcafd;
  box-sizing: border-box;
  border-top: 2px solid #ff00ff;
}
.main_txt1 {
  padding-bottom: 2%;
  line-height: 1.75em;
}
.main_txt2 {
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .main_wrap {
    width: 100%;
    margin: 3% auto 0;
    box-sizing: border-box;
  }
  .main_wrap h2 {
    margin-bottom: 3%;
    padding: 1.5% 0 1% 2%;
    line-height: 1.5em;
    background: #fdcafd;
    box-sizing: border-box;
    border-top: 2px solid #ff00ff;
  }
  .main_txt1 {
    padding-bottom: 2%;
    line-height: 1.75em;
  }
  .main_txt2 {
    padding-bottom: 0;
  }  
}
@media screen and (max-width: 768px) {
  .main_wrap h2 {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 414px) {
  .main_wrap h2 {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 590px) {
  .main_wrap h2 {
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 320px) {
  .main_wrap h2 {
    margin-bottom: 7%;
  }
}

.main_message2 {
  margin: 5% 0;
}
.category_left {
  width: 49%;
  margin-top: 2%;
  padding: 1% 2% 2% 0;
  display: inline-block;
  vertical-align: top;
  border-right: 2px solid #ccc;
  box-sizing: border-box;
}
.category_left h3 {
  margin-bottom: 2%;
  padding: 0 2% 2%;
  border-bottom: 2px solid red;
}
.category_left table {
  width: 100%;
  padding: 0 2%;
  vertical-align: top;
  box-sizing: border-box;
}
.category_left table th {
  width: 26%;
  padding: 2% 2% 2% 0;
  line-height: 1.5em;
  vertical-align: top;
}
.category_left table td {
  padding: 2% 0;
  line-height: 1.5em;
  vertical-align: top;
}
.category_right {
  width: 49%;
  margin-top: 2%;
  padding: 1% 0 2% 2%;
  display: inline-block;
  box-sizing: border-box;
}
.category_right h3 {
  margin-bottom: 2%;
  padding: 0 2% 2%;
  border-bottom: 2px solid red;
}
.category_right li {
  width: 100%;
  padding: 2% 0 2% 2%;
  box-sizing: border-box;
}
.category_list {
  display: block;
  width: 100%;
  padding: 3% 2% 0 0;
  font-weight: bold;
  text-align: right;
}
.category_list a:hover {
  color: cornflowerblue;
}
.main_access_wrap h2 {
  margin-bottom: 5%;
  padding: 1.5% 0 1% 2%;
  background: #fdcafd;
  box-sizing: border-box;
}
.main_access {
  width: 49%;
  display: inline-block;
  padding: 0 2%;
  text-align: left;
  box-sizing: border-box;
}
.main_access li {
  padding: 3% 0 2% 2%;
  border-bottom: 2px solid #555;
}
.main_access li:nth-child(1) {
  padding: 2% 0 0 2%;
  border-bottom: none;
}
.main_access li a:hover {
  color: cornflowerblue;
}
.main_map {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
.main_map iframe {
  width: 100%;
  height: 400px;
  border:1px solid #555;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {  
  .main_top {
  padding-top: 180px;
  }
}
@media screen and (max-width: 768px) {  
  .mai_top {
  padding-top: 175px;
  }
  .category_right li {
    width: 100%;
    padding: 0 0 0 2%;
    line-height: 1.75em;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 612px) {  
  .main_top {
  padding-top: 110px;
  }
}

@media screen and (max-width: 604px) {  
  .main {
    width: 100%;
    margin: 0 auto;
  }
/*slick setting*/
  .mypattern .slick-slide:not(.slick-center) {
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none;
    transition: none;
  }
/*slick setting*/

  .main_txt2 {
    line-height: 1.75em;
  }

  .category_left {
    width: 100%;
    margin-top: 2%;
    padding: 1% 0 2%;
    display: block;
    border-right: 0;
  }
  .category_right {
    width: 100%;
    margin-top: 2%;
    padding: 1% 0 0;
    display: block;
  }
  .main_access {
    width: 100%;
    display: block;
  }
  .main_map {
    width: 96%;
    display: block;
    margin: 5% auto;
  }
  .main_map iframe {
    width: 100%;
    height: 300px;
  }
}

@media screen and (max-width: 430px) {
  .main {
    padding-top: 180px;
  }
}

@media screen and (max-width: 430px) {  
  .main_top {
  padding-top: 160px;
  }
}

@media screen and (max-width: 414px) {
  .main {
    padding-top: 200px;
  }
  .category_left .category_schedule {
    line-height: 1.75em;
  }
  .main_message2 {
    margin: 7% 0;
  }
  .category_right {
    margin-top: 5%;
  }
}

@media screen and (max-width: 414px) {  
  .main_top {
  padding-top: 185px;
  }
}

@media screen and (max-width: 390px) {
  .main {
    padding-top: 220px;
  }
}

@media screen and (max-width: 390px) {  
  .main_top {
  padding-top: 205px;
  }
}

@media screen and (max-width: 375px) {  
  .main_top {
  padding-top: 195px;
  }
}

@media screen and (max-width: 320px) {
  .main {
    padding-top: 210px;
  }
}

@media screen and (max-width: 320px) {  
  .main_top {
  padding-top: 180px;
  }
}

/*********************************************
1-4.footer
*********************************************/
footer {
  padding: 140px 0 0;
  background-image: url(../img/footer.png);
  background-repeat: repeat-x;
}
footer p {
  text-align: center;
  padding: 150px 0 10px;
}
footer .sp_plse {
  display: none;
}

@media screen and (max-width: 428px) {
  footer {
    padding: 70px 0 0;
    background-size: 180%;
  }
  footer p {
    line-height: 1.35em;
    padding: 145px 0 10px;
    font-size: 1.2rem;
  }
  footer .sp_plse {
    display: block;
  }
}

@media screen and (max-width: 400px) {
  footer {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 375px) {
  footer {
    padding: 40px 0 0;
    background-size: 170%;
  }
}

@media screen and (max-width: 320px) {
  footer {
    padding: 20px 0 0;
    background-size: 180%;
  }
}
/*********************************************
2.achievement
*********************************************/
.performance1 {
  width: 100%;
  margin-bottom: 3.5%;
}

.performance1 h3 {
  padding: 1em 0;
  text-align: center;
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-right: 2px solid #555;
}
.performance1 ul {
  border: 2px solid #555;
}
.performance1 li {
  padding: 1% 2%;
  line-height: 1.5em;
  border-bottom: 1px solid #555;
}
.performance1 li:last-child {
  border-bottom: 0;
}
.performance2 {
  width: 100%;
}
.performance2 .table_come {
  display: none;
}
.performance2_table {
  width: 100%;
}
.performance2_table table {
  width: 100%;
  min-width: 700px;
  white-space: nowrap;
  margin: 0 auto 3%;
  border: 2px solid #555;
  border-collapse: collapse;
  box-sizing: border-box;
}
.performance2_table th {
  padding: 1% 2%;
  line-height: 1.5em;
  border-right: 1px solid #555;
  border-bottom: 2px solid #555;
}
.performance2_table td {
  padding: 1% 2%;
  line-height: 1.5em;
  border: 1px solid #555;
}

@media screen and (max-width: 748px) {
  .performance1 {
  margin-bottom: 4.5%;
  }

  .performance2_table {
    overflow-x: scroll;
  }

  .performance2 .table_come {
    font-size: 12px;
    padding: 0 10px 10px 0;
    text-align: right;
    font-weight: bold;
    display: block;
  }  
}

@media screen and (max-width: 430px) {
  .performance1 {
  margin-bottom: 7.5%;
  }
}


/*********************************************
3.activity
*********************************************/
.performance2 .pm_table2 table {
  min-width: 935px;
}
.performance2 h3 {
  padding-bottom: 10px;
}
.performance2 .pm_table2 td:nth-child(1) {
  width: 180px;
}
.performance2 .pm_table2 td:nth-child(3) {
  width: 235px;
}
.performance2 .pm_table2 td:nth-child(4) {
  width: 170px;
}

@media screen and (max-width: 768px) {
  .performance2 .supple_kome {
    width: 100%;
    margin-top: 20px;
  }
  .performance2 .supple_kome h3 {
    width: 49%;
    display: inline-block;
  }
  .performance2 .supple_kome .table_come {
    width: 49%;
    display: inline-block;
    text-align: right;
  }
  .performance2 .pm_table2 {
      overflow-x: scroll;
  }
}

/*********************************************
4.menber
*********************************************/
.menber1 {
  margin-bottom: 3.5%;
}
.menber1 ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.menber1 li {
  width: calc((100% / 3) * 2);
  text-align: left;
  padding: 1% 2%;
  font-weight: bold;
  box-sizing: border-box;
}
.menber1 .list1 {
  width: calc(100% / 3);
  font-size: 18px;
}
.menber1 .list1-1 {
  width: calc(100% / 3);
}
.menber1 .list0 {
  width: 100%;
  padding-left: 4%;
  font-weight: bold;
  color: red;
}
.menber1 .text1 {
  padding: 1% 4%;
  color: #333;
}
.menber1 .text2 {
  padding-bottom: 2%;
  font-weight: bold;
}
.menber1 .text2 span {
  border-bottom: 3px solid red;
}
.menber-wrap {
  margin-top: 2%;
}
#contact {
  width: 100%;
  margin-top: -240px;
  display: block;
  padding-top: 240px;
}
#contact .txt_h3 {
  padding: 0 2%;
}
.menber2 {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 2%;
  padding: 3% 4% 0;
  border: 10px solid cornflowerblue;
  align-items: center;
  box-sizing: border-box;
}
.menber2 .box1,
.menber2 .box2 {
  width: 50%;
  margin-bottom: 3%;
  text-align: center;
}
.menber2 .box1 {
  text-align: center;
}
.menber2 .box1 li {
  line-height: 1.5em;
}
.menber2 .box1 h3 {
  color: red;
  font-size: 20px;
  padding-bottom: 5%;
}
.menber2 .box1 h3 span {
  border-bottom: 6px double red;
}
#contact .text0_1 {
  font-size: 24px;
  font-weight: bold;
}
.menber2 .box2 {
  display: block;
  text-align: center;
}
.menber2 .box2 p {
  width: 70%;
  padding-top: 3%;
  line-height: 1.5em;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  padding: 3% 50px;
  position: relative;
}
.menber2 .box2 p::before,
.menber2 .box2 p::after {
  display: block;
  font: normal normal 7rem 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    HGS明朝E, メイリオ, Meiryo, serif;
  position: absolute;
  line-height: 0;
}
.menber2 .box2 p::before {
  content: "【";
  top: 50%;
  left: 0;
}
.menber2 .box2 p::after {
  content: "】";
  top: 50%;
  right: 0;
}
.menber2 .box2 ul {
  display: inline-block;
}
.menber2 .box2 li {
  text-align: left;
  line-height: 1.5em;
}
.menber2 .box2 li a:hover {
  color: cornflowerblue;
}

@media screen and (max-width: 1024px) {
  #contact {
    margin-top: -260px;
    padding-top: 260px;
  }  
}

@media screen and (max-width: 768px) {
  #contact {
    margin-top: -240px;
    padding-top: 240px;
  }  
  .menber2 .box2 p::before {
    content: "【";
    left: -20%;
  }
  .menber2 .box2 p::after {
    content: "】";
    right: -20%;
  }
}

@media screen and (max-width: 430px) {
  .menber1 h3 {
    padding: 0 0 5%;
  }
  .menber1 li {
    width: 100%;
    line-height: 1.5em;
  }
  .menber1 .list1 {
    width: calc(100% / 3);
    font-size: 18px;
  }
  .menber1 .list1-1 {
    width: 27%;
  }
  .menber1 .text2 {
    line-height: 1.5em;
  }
  .menber1 .list1-2 {
    width: 46%;
  }
  #contact {
    margin-top: -210px;
    padding-top: 210px;
  }  
  #contact h3 {
    line-height: 1.25em;
  }
  .menber2 {
    display: block;
  }
  .menber2 .box1,
  .menber2 .box2 {
    width: 100%;
  }
  .menber2 .box2 p {
    width: 65%;
    padding: 3% 30px;
  }
}

@media screen and (max-width: 390px) {
  #contact {
    margin-top: -245px;
    padding-top: 245px;
  }
  .menber2 .box2 p {
    width: 70%;
  }
}

@media screen and (max-width: 375px) {
  #contact {
    margin-top: -240px;
    padding-top: 240px;
  }
  .menber2 .box2 p {
    width: 73%;
  }
}

@media screen and (max-width: 320px) {
  #contact {
    margin-top: -225px;
    padding-top: 225px;
  }
  .menber2 .box2 p {
    width: 86%;
  }
}

/*********************************************
5.access
*********************************************/
#access {
  width: 100%;
  margin-top: 5%;
  text-align: center;
}
#access h2 {
  text-align: left;
}
#access iframe {
  width: 500;
  height: 400;
  box-sizing: border-box;
} 

@media screen and (max-width: 1024px) {
  #access iframe {
    width: 100%;
  } 
}
/*********************************************
6.gallery
*********************************************/
.gallery_box {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.gallery {
  width: 50%;
  margin-bottom: 30px;
  box-sizing: border-box;
  justify-content: flex-end;
}
.gallery .photo_siz {
  margin: 0 10px;
}
.gallery .ph1 {
  margin-left: 0;
}
.gallery .ph4 {
  margin-right: 0;
}
.gallery img {
  width: calc((100% / 2) - 18px);
}

@media screen and (max-width: 428px) {
  .gallery {
    width: 100%;
    margin-bottom: 20px;
  }  
  .gallery .photo_siz {
    margin: 0;
  }
  .gallery .ph1 {
    margin-right: 15px;
  }
  .gallery .ph4 {
    margin-left: 15px;
  }
  .gallery img {
    width: calc((100% / 2) - 11px);
  }
}

/*********************************************
※.TOPに戻る
*********************************************/
#scroll_to_top {
  /* 「TOPに戻る」ボタンにカーソルを載せた時に、
  カーソルが指のマークになるようにしています。 */
  cursor: pointer;

  /* 常にページの右下に表示されるように固定します。 */
  position: fixed;  /* 位置を固定させます。 */
  right: 20px;      /* 画面の右橋から20px空けます。 */
  bottom: 40px;     /* 画面の下端から40px空けます。 */
}
#scroll_to_top.button {
  /* 「TOPに戻る」ボタンのデザインを整えています。 */
  padding: 0 15px;
  font-size: 15px;
  display: inline-block;
  border: 1px solid #999;
  border-radius: 1em;
  background-color: #eee;
}
#scroll_to_top.button img {
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 1024px) {
  #scroll_to_top {
    right: 15px;
  }  
}

@media screen and (max-width: 428px) {
  #scroll_to_top {
    right: 10px;
    bottom: 28px;
  }
  #scroll_to_top.button {
    padding: 0;
  }  
}

@media screen and (max-width: 414px) {
  #scroll_to_top {
    bottom: 35px;
  }
}

@media screen and (max-width: 320px) {
  #scroll_to_top {
    bottom: 65px;
  }
  #scroll_to_top.button img {
    width: 50px;
    height: 50px;
  }  
}

