@charset "utf-8";

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

html{
  overflow-y: scroll;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width:960px){
  body{
    padding-top: 60px;
  }
}

.cf:after{
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

li{
  list-style-type: none;
}

a{
  border: 0;
  color: #000;
}

a:hover{
  opacity: .5;
}

img{
  max-width: 100%;
  height: auto;
}

.pcOnly{
  display: block!important;
}

.spOnly{
  display: none!important;
}

main{
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 50px;
}

h1,h2,h3,h4{
  margin-bottom: 40px;
  text-align: center;
}

h2,h3,h4{
  font-family: 'Abril Fatface', cursive;
  font-size: 40px;
}

h1{
  font-family: 'Abril Fatface', cursive;
  margin-top: 40px;
  line-height: 1.5;
}

h1 img{
  width: 65%;
  max-width: 500px;
  margin-bottom: 5%;
}

h2 span{
  position: relative;
}

h2 span:before,h2 span:after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/common/g_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

h2 span:before{
  left: -45px;
}

h2 span:after{
  right: -45px;
  background-image: url(../img/common/g_r.png);
}

.news,.insta,.twitter,
.links,.join_us,.contact,.greeting_box,.members_box{
  max-width: 1000px;
  margin: 0 auto 10%;
}

.contact{
	padding: 0 9%;
	line-height: 1.5;
}

/*投稿画像*/
img.alignright{
  display: block;
  margin: 0 0 0 auto;
}

img.alignleft{
  display: block;
  margin: 0 auto 0 0;
}

img.aligncenter{
  display: block;
  margin: 0 auto;
}
/*end投稿画像*/

@media screen and (max-width:960px){
  main{
    width: 90%;
    margin: 0 auto;
  }

  h1,h2,h3,h4{
    margin-bottom: 10%;
  }
  
  h2,h3,h4{
    font-size: 7.5vw;
  }
  
  .pcOnly{
    display: none!important;
  }

  .spOnly{
    display: block!important;
  }
  
  h2:before,h2:after{
    width: 7vw;
    height: 7vw;
  }
  
  h2:before{
    margin-right: 2%;
  }

  h2:after{
    margin-left: 2%;
  }
  
  h2 span:before,h2 span:after{
    width: 5vw;
    height: 10vw;
  }
  
  h2 span:before{left: -30%;}
  h2 span:after{right: -30%;}
  
  #news h2 span:before{left: -50%;}
  #news h2 span:after{right: -50%;}
  
  #join_us h2 span:before{left: -35%;}
  #join_us h2 span:after{right: -35%;}
  
  .news,.insta,.twitter,
  .links,.join_us,.contact,.greeting_box,.members_box{
    margin-bottom: 20%;
  }
}

/*********************************
header
***********************************/
header{
  border-bottom: 1px solid #ddd;
}

.logo_img{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  z-index: 9;
}

.logo_img a{
  opacity: 1;
}

.logo_img img{
  float: left;
  display: inline-block;
  width: 200px;
  margin-left: 20px;
}

.mv img{
  display: block;
  width: 100%;
}

@media screen and (max-width:1300px){
  .logo_img{
    position: unset;
  }
}

@media screen and (max-width:960px){
  header{
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    border: none;
    background-color: rgba(252,252,252,.8);
    z-index: 999999;
  }
  
  .logo_img{
    width: 160px;
    height: 60px;
    margin-left: 20px;
    padding: 0;
    text-align: center;
  }

  .logo_img img{
    margin: 0;
  }
}

/*********************************
nav
***********************************/
nav ul{
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 36px 0;
}

nav ul li{
  padding: 0 20px;
  border-right: 1px solid #000002;
}

nav ul li:first-child{
  padding-left: 0;
}

nav ul li:last-child{
  padding-right: 0;
  border-right: 0;
}

nav ul li a{
  text-decoration: none;
}


#nav_toggle{
  display: none;
}

@media screen and (max-width:1300px){
  
  nav{
    display: none;
    position: absolute;
    top:88px;
    width: 100%;
    background: rgba(252,252,252,.9);
    left: 0;
    z-index: 9;
  }
  header nav ul{
    display: block;
    margin: 0 auto;
    width: 90%;
  }
  header nav ul li{
    margin: 0 auto;
    padding: 0;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid #333;
  }
  header nav ul li:last-child{
    border: none;
  }
  header nav ul li a{
    display: block; 
    padding: 20px 0;
    color: #333;
  }
  
  /*開閉ボタン*/
  #nav_toggle{
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 29px;
    right: 2%;
    z-index: 100;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span{
    display: block;
    height: 3px;
    background: #333;
    position:absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #nav_toggle span:nth-child(1){
    top:0px;
  }
  #nav_toggle span:nth-child(2){
    top:12px;
  }
  #nav_toggle span:nth-child(3){
    top:24px;
  }

  /*開閉ボタンopen時*/
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

}

@media screen and (max-width:768px){
  nav{
    top: 60px;
  }
  
  #nav_toggle{
    top: 15px;
  }
}

/*********************************
footer
***********************************/
.footer{
  width: 100%;
  padding: 42px 0;
  text-align: center;
  color: #fff;
  background-color: #000002;
}

.copyright{
  font-size: 14px;
}

/*********************************
btn
**********************************/
.btn a {
  display: block;
  width: 300px;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  outline: none;
}
.btn a::before,
.btn a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.btn a,
.btn a::before,
.btn a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn a {
  position: relative;
  z-index: 2;
  background-color: #fc5e93;
  border: 2px solid #fc5e93;
  color: #fff;
}
.btn a:hover {
  background-color: #fff;
  border-color: #fc5e93;
  color: #fc5e93;
}
.btn a::before,
.btn a::after {
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fc5e93;
}
.btn a::before {
  top: 0;
}
.btn a::after {
  bottom: 0;
}
.btn a:hover::before,
.btn a:hover::after {
  height: 0;
  background-color: #fc5e93;
}

.btn i{
  margin-left: 10px;
}

.page_box .right{
  float: right;
}

.page_box .left{
  float: left;
}

.page_box a{
  width: 200px;
}

@media screen and (max-width:960px){
  .btn a{
    margin-bottom: 3%;
  }

  .page_box a{
    width: 160px;
  }
}