@charset "UTF-8";
/*breakpoint*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blur {
  0% {
    -ms-filter: blur(12px);
    filter: blur(12px);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
/*style*/
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  min-width: 1140px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    overflow-x: none;
  }
}

body.overflow {
  overflow: hidden;
}

main {
  min-width: 1280px;
}
@media screen and (max-width: 767px) {
  main {
    min-width: auto;
    width: 100%;
  }
}

*:focus {
  outline: none;
}

a {
  color: #000000;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 99999;
  top: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header .global__navi {
  max-width: 1280px;
  width: calc(100% - 6rem);
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .global__navi {
    width: 100%;
    height: 50px;
  }
}
.header .global__navi .header-logo {
  width: 258px;
}
@media screen and (max-width: 767px) {
  .header .global__navi .header-logo {
    width: 165px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .header .global__navi .header-logo > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header .global__navi .header-logo img {
  width: 100%;
}
.header .global__navi .global__list {
  width: 700px;
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding-right: 10px;
  margin-top: -7px;
  box-sizing: border-box;
  margin-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .header .global__navi .global__list {
    width: 500px;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list {
    width: 100%;
    padding-right: 0;
    padding: 3rem;
    margin-left: 0;
  }
}
.header .global__navi .global__list .global__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item {
    border-bottom: 1px solid #D3D3D3;
  }
  .header .global__navi .global__list .global__item:last-child {
    border-bottom: none;
  }
}
.header .global__navi .global__list .global__item .global__link {
  font-size: 1.1rem;
  font-weight: normal;
  text-decoration: none;
  transition: 0.3s;
  color: #008AE3;
  line-height: 1.2 !important;
  display: block;
  text-align: center;
  margin: 0 auto;
  transform: scale(1);
}
@media screen and (max-width: 1000px) {
  .header .global__navi .global__list .global__item .global__link {
    font-size: 1rem;
  }
}
.header .global__navi .global__list .global__item .global__link::before {
  content: "";
  width: 56px;
  height: 50px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  margin: 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .header .global__navi .global__list .global__item .global__link::before {
    width: 40px;
    height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link::before {
    display: inline-block;
    margin: 0 2rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-top::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-top-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-general::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-general-off.svg);
}
.header .global__navi .global__list .global__item .global__link.gl-general:hover::before, .header .global__navi .global__list .global__item .global__link.gl-general.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-general-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-general:hover::before, .header .global__navi .global__list .global__item .global__link.gl-general.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-general-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-school::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-school-off.svg);
}
.header .global__navi .global__list .global__item .global__link.gl-school:hover::before, .header .global__navi .global__list .global__item .global__link.gl-school.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-school-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-school:hover::before, .header .global__navi .global__list .global__item .global__link.gl-school.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-school-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-chartered::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-chartered-off.svg);
}
.header .global__navi .global__list .global__item .global__link.gl-chartered:hover::before, .header .global__navi .global__list .global__item .global__link.gl-chartered.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-chartered-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-chartered:hover::before, .header .global__navi .global__list .global__item .global__link.gl-chartered.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-chartered-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-pfscjump::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-pfscjump-off.svg);
}
.header .global__navi .global__list .global__item .global__link.gl-pfscjump:hover::before, .header .global__navi .global__list .global__item .global__link.gl-pfscjump.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-pfscjump-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-pfscjump:hover::before, .header .global__navi .global__list .global__item .global__link.gl-pfscjump.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-pfscjump-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-facility::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-facility-off.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-facility::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-facility-sp-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-facility:hover::before, .header .global__navi .global__list .global__item .global__link.gl-facility.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-facility-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-facility:hover::before, .header .global__navi .global__list .global__item .global__link.gl-facility.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-facility-sp-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-access::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-access-off.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-access::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-access-sp-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-access:hover::before, .header .global__navi .global__list .global__item .global__link.gl-access.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-access-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-access:hover::before, .header .global__navi .global__list .global__item .global__link.gl-access.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-access-sp-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link.gl-faq::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-faq-off.svg);
}
.header .global__navi .global__list .global__item .global__link.gl-faq:hover::before, .header .global__navi .global__list .global__item .global__link.gl-faq.active::before {
  background-image: url(/skate/shinyokohama/assets/img/common/gl-faq-on.svg);
}
@media screen and (max-width: 767px) {
  .header .global__navi .global__list .global__item .global__link.gl-faq:hover::before, .header .global__navi .global__list .global__item .global__link.gl-faq.active::before {
    background-image: url(/skate/shinyokohama/assets/img/common/gl-faq-off.svg);
  }
}
.header .global__navi .global__list .global__item .global__link:hover {
  color: #A35CEB;
  transform: scale(1.1);
}
.header .global__navi .global__list .global__item .global__link.active {
  color: #A35CEB;
}

.footer {
  width: 100%;
  min-width: 1280px;
  background: linear-gradient(to right, #78DBFF, #008AE3);
}
@media screen and (max-width: 767px) {
  .footer {
    min-width: auto;
    background: linear-gradient(to bottom, #78DBFF, #008AE3);
  }
}
.footer .footer__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer .footer__inner {
    padding: 8rem 3rem;
    box-sizing: border-box;
  }
}
.footer .footer__contents {
  width: 100%;
  margin: 0 auto;
}
.footer a img {
  opacity: 1;
  transition: 0.3s;
}
.footer a img:hover {
  opacity: 0.6;
}
.footer .footer__top {
  display: flex;
  justify-content: space-between;
  padding: 3.3rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer .footer__top {
    display: flex;
    flex-flow: wrap;
    flex-direction: column-reverse;
    padding: 0;
  }
}
.footer .footer__top .footer__addr .footer__addr--text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}
.footer .footer__top .footer__addr .footer__addr--text a {
  color: #fff !important;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer .footer__top .footer__addr {
    font-size: 1.8rem;
  }
}
.footer .footer__top .footer__addr .addr {
  margin: 1.3rem 0 0 0;
  font-size: 1.2rem;
  font-weight: normal;
}
.footer .footer__top .footer__navi .footer__navi-list {
  width: 80%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer__top .footer__navi .footer__navi-list {
    width: 30%;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
}
.footer .footer__top .footer__navi .footer__navi-list .footer__item {
  flex-shrink: 0;
  position: relative;
}
.footer .footer__top .footer__navi .footer__navi-list .footer__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 9px;
  left: 0px;
}
.footer .footer__top .footer__navi .footer__navi-list .footer__item:last-of-type::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 9px;
  right: 0px;
}
@media screen and (max-width: 767px) {
  .footer .footer__top .footer__navi .footer__navi-list .footer__item {
    position: relative;
    width: auto;
    display: inline-block;
    white-space: nowrap;
  }
  .footer .footer__top .footer__navi .footer__navi-list .footer__item::before {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    top: 9px;
    right: 0px;
  }
}
.footer .footer__top .footer__navi .footer__navi-list .footer__link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 1.8rem;
}
.footer .footer__top .footer__navi .footer__navi-list .footer__link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer .footer__top .footer__navi .footer__navi-list .footer__link {
    font-size: 1.4rem;
    margin: 0 1.8rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__top .footer__navi {
    margin-bottom: 6rem;
  }
}
.footer .footer__bottom {
  margin: 6rem auto 0;
  padding: 0 0 4.8rem 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer__bottom {
    display: block;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__bottom .logo__kose {
    display: block;
    margin: 0 auto 5rem;
    width: 138px;
  }
  .footer .footer__bottom .logo__kose img {
    width: 100%;
  }
}
.footer .footer__bottom .logo__area {
  display: flex;
  justify-content: space-between;
  max-width: 525px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer .footer__bottom .logo__area {
    width: 100%;
    display: flex;
    gap: 2rem;
  }
  .footer .footer__bottom .logo__area > div img {
    width: 100%;
  }
  .footer .footer__bottom .logo__area .logo__ph {
    width: 57%;
  }
  .footer .footer__bottom .logo__area .logo__sg {
    width: 43%;
  }
}
.footer .footer__copy {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
}
.footer .footer__copy .copy__text {
  color: #888888;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer .footer__copy .copy__text {
    font-size: 1.1rem;
    line-height: 1.2;
    padding: 1rem;
  }
}
.footer .footer__copy .copy__text .copymark {
  font-size: 1.6rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .footer .footer__copy .copy__text .copymark {
    font-size: 1.1rem;
  }
}

.ham__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .ham__line {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    background: #fff;
    /*動き*/
    transition: all 0.3s;
    visibility: hidden;
    height: 100vh;
    /*ナビの高さ*/
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  /*×に変化*/
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #g-nav li a {
    display: flex;
    align-items: center;
    text-align: left;
    color: #008AE3;
    font-size: 1.6rem;
    padding: 10px 10px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .ham__line {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .ham__line span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  .ham__line span:nth-of-type(1) {
    top: 15px;
  }
  .ham__line span:nth-of-type(2) {
    top: 23px;
  }
  .ham__line span:nth-of-type(3) {
    top: 31px;
  }
  .ham__line.active span:nth-of-type(1) {
    top: 18px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .ham__line.active span:nth-of-type(2) {
    opacity: 0;
  }
  .ham__line.active span:nth-of-type(3) {
    top: 30px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
}
#mv__lower {
  max-width: 1280px;
  width: 100%;
  text-align: center;
  margin: 10rem auto 9rem;
  background-size: cover;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  position: relative;
  animation: blur 2s;
  animation-fill-mode: both;
}
@media screen and (max-width: 767px) {
  #mv__lower {
    margin: 5rem auto 8rem;
    width: calc(100% - 2rem);
    height: 240px;
  }
}
#mv__lower .mv__snow {
  position: absolute;
  top: 5rem;
  left: 6rem;
}
@media screen and (max-width: 767px) {
  #mv__lower .mv__snow {
    top: auto;
    left: 2rem;
    bottom: 2rem;
  }
}
#mv__lower .mainvisual__heading-2 {
  width: 100%;
  color: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: 1rem;
}

#general #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/general/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #general #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/general/mv-bg-sp.png);
  }
}
#general #mv__lower .mainvisual__icon img {
  width: 66px;
}

#school #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/school/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #school #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/school/mv-bg-sp.png);
  }
}
#school #mv__lower .mainvisual__icon img {
  width: 59px;
}

#chartered #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/chartered/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #chartered #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/chartered/mv-bg-sp.png);
  }
}
#chartered #mv__lower .mainvisual__icon img {
  width: 53px;
}

#pfscjump #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/pfscjump/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #pfscjump #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/pfscjump/mv-bg-sp.png);
  }
}
#pfscjump #mv__lower .mainvisual__icon img {
  width: 67px;
}

#facility #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/facility/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #facility #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/facility/mv-bg-sp.png);
  }
}
#facility #mv__lower .mainvisual__icon img {
  width: 66px;
}

#access #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/access/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #access #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/access/mv-bg-sp.png);
  }
}
#access #mv__lower .mainvisual__icon img {
  width: 72px;
}

#faq #mv__lower {
  background-image: url(/skate/shinyokohama/assets/img/faq/mv-bg.png);
}
@media screen and (max-width: 767px) {
  #faq #mv__lower {
    background-image: url(/skate/shinyokohama/assets/img/faq/mv-bg-sp.png);
  }
}
#faq #mv__lower .mainvisual__icon img {
  width: 66px;
}/*# sourceMappingURL=common.css.map */



.news .news__list .news__item .news__link.none {pointer-events: none;}
.news .news__list .news__item .news__link.none .news__toc {color: #000000;text-decoration: none;}




/*25.12.10　更新*/

.news .bnr__list {
	margin: 2em auto 4em;
}

.news .bnr__list li{
	list-style: none;
}
.news .bnr__list li + li{
	margin-top: 2em
}
.news .bnr__list li figure a:hover img { 
	opacity: .7;
}
.news .bnr__list li figure a:hover figcaption { 
	border-radius: 10px;
	color: #008AE3;
	background-color: white
}
.news .bnr__list li figure{
	width: 100%;
	margin: auto;
}
.news .bnr__list li figure a{
	display: block;
}
.news .bnr__list li figure.aspect img{
	aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}
.news .bnr__list li figure img{
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.news .bnr__list li figure figcaption{
	text-align: left;
	font-size: 14px;
	line-height:1.5;
	padding: 1em .5em;
}

@media screen and (min-width: 768px) {
	

.news .bnr__list {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
}
.news ul.bnr__list:has(li:first-child):not(:has(li:first-child + li)){
	justify-content: center;
 }
.news .bnr__list li{
	width: 48%;
	list-style: none;
}
.news .bnr__list li + li{
	margin-top: 0
}
/*.news .bnr__list li:first-child:last-child{
	width: 60%;
	list-style: none;
}*/
.news .bnr__list li:first-child:last-child figure figcaption{
	text-align: center;
}
.news .bnr__list li:nth-child(n+3) {
	margin-top: 3em;
}
}