@charset "UTF-8";

@media screen and (max-width: 950px) {
  .sp-only {
    display: block !important;
  }
  
  .pc-only {
    display: none !important;
  }

  .kv {
    margin-bottom: 60px;
  }

  main {
    padding-top: 60px;
  }

  .title {
    height: 36px;
  }

  header {
    height: 60px;
  }

  header .sns {
    height: 60px;
    right: 60px;
    gap: 6px;
  }

  header .logo {
    width: 160px;
    left: 10px;
    z-index: 12;
  }

  header .sns img {
    width: 30px;
  }

  .introduction {
    padding: 40px 0 50px 0;
  }

  .introduction a {
    width: 90%;
    margin: 0 0 40px 0;
    transition: 0.3s;
}

.introduction a img {
  width: 100%;
}

  .introduction .text {
    width: 100%;
    padding: 0 20px;
  }

  .youtube {
    width: calc(100% - 40px);
    height: 197px;
    margin: 0 auto 90px auto;
  }

  .profile {
    width: 100%;
    padding: 0 20px;
  }

  .profile ul,.profile ul.second {
    width: 86%;
    margin-bottom: 20px;
  }

  .profile ul li {
    width: 100%;
  }

  .profile ul.second li {
    width: 100%;
  }

  .sp-profile {
    position: relative;
  }

  .sp-profile img {
    width: 100%;
    transition: 0.5s;
  }

  .profile a {
    height: 50px;
  }

  form {
    width: 100%;
    padding: 0 20px;
  }

  footer .logo {
    width: 200px;
  }


/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 30;
  right : 7px;
  top   : 9px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s all;

}
.hamburger span {
  display : block;
  position: absolute;
  width   : 27px;
  height  : 2px ;
  left    : 6px;
  border-radius: 5px;
  background : #dd047e;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active{
  transform: rotate(360deg);
  top: 12px;
  right: 8px;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  right : -300px;
  width: 100%;
  height: 100vh;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  visibility: hidden;
}

nav.globalMenuSp ul {
  padding: 0;
  width: 100%;
  height: 100vh;
  position: relative;
  background: #fff;
}

nav.globalMenuSp ul::before {
  content: "";
  height: 100vh;
  width: 100%;
  z-index: -1;
  top: 0;
  right: 0;
  position: fixed;
  opacity: 0.8;
  background: #111f35;
  transition: 0.3s;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 20px 0 20px 35px;
  font-size: 17px;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
  width: 250px;
  right : 0;
  visibility: visible;
  z-index: 29;
}


nav.globalMenuSp.active ul::before {
  width: 200%;
  height: 100vh;
  visibility: visible;
}

.schedule {
  margin-top: 100px;
}

.mews ul {
  width: calc(100% - 40px);
  margin: auto;
}

.news-detail {
  width: calc(100% - 40px);
  margin: 100px auto;
}

.mews ul li {
  flex-wrap: wrap;
}
.mews ul li p {
  flex: none;
  display: contents;
  font-size: 13px;
  font-family: sans-serif;
  margin: 5px 0 10px 0;
}

.mews ul li .link {
  font-size: 14px;
  height: 30px;
  width: 80px;
}

.news-detail h1 {
  font-size: 22px;
  line-height: 33px;
}

.banner {
  width: 80%;
  margin: 0 auto 60px auto;
}
}