/*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);
  }
}
#mv {
  display: flex;
  width: 1280px;
  height: 583px;
  margin: 10rem auto 6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #mv {
    width: 100%;
    height: auto;
    padding: 0 1.2rem;
    margin: 5rem auto 6rem;
  }
}
#mv .mv__logo {
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #mv .mv__logo {
    display: none;
  }
}
#mv .mv__logo img {
  width: 365px;
}
#mv #mv__img {
  width: 820px;
  height: 583px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #mv #mv__img {
    width: 100%;
    height: auto;
  }
}
#mv #mv__img .slick-img img {
  width: 100%;
}

.news {
  width: 1080px;
  margin: 0 auto;
  background: linear-gradient(rgba(120, 219, 255, 0.2), rgba(0, 138, 227, 0.2));
  border-radius: 2rem;
  padding: 7rem 8rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 4rem 1.5rem;
    width: calc(100% - 24px);
    box-sizing: border-box;
    margin-bottom: 6rem;
  }
}
.news .news__h2 {
  text-align: center;
}
.news .news__h2 .news__icon--area .news-icon {
  display: inline-block;
  margin: 0 1.8rem;
}
.news .news__h2 .news__text--area {
  color: #008AE3;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.8rem;
  margin: 0 2rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news .news__h2 .news__text--area {
    font-size: 2.5rem;
  }
}
.news .news__list {
  height: auto;
  margin: 1.5rem auto 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .news .news__list {
    margin: 0;
  }
}
.news .news__list.active {
  height: auto;
}
.news .news__list .news__item {
  width: 100%;
  border-bottom: 1px solid #707070;
  transition: 0.5s;
}
.news .news__list .news__item .news__link {
  display: block;
  padding: 2.9rem 0;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__link {
    padding: 2rem 0;
  }
}
.news .news__list .news__item.hide {
  display: none;
  animation: fadeout 2s;
  animation-fill-mode: both;
  height: 0;
}
.news .news__list .news__item.show {
  display: block;
  animation: fadein 2s;
  animation-fill-mode: both;
  height: auto;
}
.news .news__list .news__item .news__item--inner {
  width: 700px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner {
    width: 100%;
    display: block;
  }
}
.news .news__list .news__item .news__item--inner .news__date {
  margin: 0 5rem 0 0;
  flex-shrink: 0;
  width: 160px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner .news__date {
    width: 100%;
    display: block;
    font-size: 1.4rem;
    text-align: left;
    margin: 0 0 1rem 0;
    width: auto;
  }
}
.news .news__list .news__item .news__item--inner .news__toc {
  text-align: left;
  /*flex-shrink: 0;*/
}
.news .news__list .news__item .news__item--inner .news__toc .title {
	font-size: 1.2em;
	font-weight: bold;
}
.news .news__list .news__item .news__item--inner .news__toc.pr {
	color: rgba(243,55,59,1.00)
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner .news__toc {
    font-size: 1.4rem;
    width: 100%;
    display: block;
  }
}
.news .news__list .news__item .news__item--inner.red .news__date,
.news .news__list .news__item .news__item--inner.red .news__toc {
  color: #FF0000;
}
.news .news__list .news__item .news__item--inner .red {
  color: #FF0000;
}
.news .news__list .news__item:nth-of-type(3) {
  border-bottom: 0;
}
.news .news__list .news__item:nth-of-type(4) {
  border-top: 1px solid #707070;
}
.news .news__list .news__item:last-of-type {
  border-bottom: 0;
}
.news .news__list .news__item.open:nth-of-type(n+4) {
  height: 100%;
  opacity: 1;
}
.news .news__list .news__item:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item:hover {
    background: inherit;
  }
}
.news .news__list .news__item a .news__toc {
  color: #004789;
  text-decoration: underline;
}
.news .news__list .news__item a .news__date {
  color: #000;
  text-decoration: none !important;
}
.news .news__list .news__item a:nth-child(n+2) {
  padding: 0 0 2.9rem;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item a:nth-child(n+2) {
    padding: 0 0 2.9rem;
    /*margin-top: -2.8rem;*/
	  margin-top: -.9rem;
  }
}
.news .view-more {
  width: 219px;
  height: 41px;
  margin: 4rem auto 0;
  cursor: pointer;
  transition: 0.3s linear;
}
.news .view-more .view-more__btn {
  background-color: #FFFFFF;
  border: 1px solid #008AE3;
  line-height: 43px;
  border-radius: 10px;
  color: #008AE3;
  text-align: center;
  transition: 0.3s;
  font-weight: 600;
}
.news .view-more .view-more__btn.view-open {
  display: block;
  position: relative;
}
.news .view-more .view-more__btn.view-open::before {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: rotate(45deg);
}
.news .view-more .view-more__btn.view-open::after {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: rotate(-45deg);
}
.news .view-more .view-more__btn.view-open:hover {
  background-color: #008AE3;
}
.news .view-more .view-more__btn.view-open:hover .view-more__btn {
  color: #fff;
}
.news .view-more .view-more__btn.view-open:hover.view-open {
  color: #fff;
}
.news .view-more .view-more__btn.view-open:hover::before {
  background: #fff;
}
.news .view-more .view-more__btn.view-open:hover::after {
  background: #fff;
}
.news .view-more .view-more__btn.view-close {
  display: none;
}
.news .view-more.more-close .view-more__btn.view-open {
  display: none;
}
.news .view-more.more-close .view-more__btn.view-close {
  display: block;
  position: relative;
}
.news .view-more.more-close .view-more__btn.view-close::before {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: rotate(-45deg);
}
.news .view-more.more-close .view-more__btn.view-close::after {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: rotate(45deg);
}
.news .view-more.more-close .view-more__btn.view-close:hover {
  background-color: #008AE3;
}
.news .view-more.more-close .view-more__btn.view-close:hover .view-more__btn {
  color: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover.view-close {
  color: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover::before {
  background: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover::after {
  background: #fff;
}

.info {
  width: 100%;
  height: 357px;
  background-image: url(/skate/shinyokohama/assets/img/index/info_bg.jpg);
  background-position: 50% 56%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info {
    height: auto;
    padding: 6rem 3rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/skate/shinyokohama/assets/img/index/info_bg-sp.png);
    background-position: top;
  }
}
.info::before {
  content: "";
  background-color: rgba(11, 152, 217, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .info::before {
    background-color: transparent;
  }
}
.info .info__list {
  width: 480px;
  margin: 13.2rem auto 0;
  padding: 5.4rem 0 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .info .info__list {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.info .info__list .snow__footer-l {
  display: block;
  width: 130px;
  height: 138px;
  background-image: url(/skate/shinyokohama/assets/img/index/snow-deco01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 60px;
  left: -230px;
}
@media screen and (max-width: 767px) {
  .info .info__list .snow__footer-l {
    top: -54px;
    left: -24px;
    background-image: url(/skate/shinyokohama/assets/img/index/snow-deco01-sp.svg);
    width: 81px;
    height: 53px;
  }
}
.info .info__list .snow__footer-r {
  display: block;
  width: 165px;
  height: 144px;
  background-image: url(/skate/shinyokohama/assets/img/index/snow-deco02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -19px;
  right: -230px;
}
@media screen and (max-width: 767px) {
  .info .info__list .snow__footer-r {
    bottom: -50px;
    right: -22px;
    background-image: url(/skate/shinyokohama/assets/img/index/snow-deco02-sp.svg);
    width: 83px;
    height: 45px;
  }
}
.info .info__list .info__item {
  width: 480px;
  height: 83px;
  list-style: none;
  margin: 0 auto 5.4rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 3px solid #0B97D9;
  transition: 0.3s;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .info .info__list .info__item {
    width: 100%;
    height: auto;
    padding: 2rem;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .info .info__list .info__item:nth-child(3) {
    margin-bottom: 3rem;
  }
}
.info .info__list .info__item .info__anker {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #008AE3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
	text-align: center;
}
.info .info__list .info__item .info__windowicon {
  display: inline-block;
  position: absolute;
  top: 42%;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .info .info__list .info__item .info__windowicon {
    top: 52%;
    right: 0;
    transform: translateY(-50%) scale(0.8);
  }
}
.info .info__list .info__item:hover {
  background-color: rgba(11, 152, 217, 0.8);
  border: 3px solid #fff;
}
.info .info__list .info__item:hover .info__anker {
  color: #fff;
}
.info .info__list .info__item:hover .info__windowicon svg g path {
  fill: #fff;
}/*# sourceMappingURL=index.css.map */


.news .bnr__list {
  margin: 4rem auto;
  width: 100%;
}
.news .bnr__list figure{
	max-width: 890px;
	width: 100%;
	margin: auto;
}
.news .bnr__list figure + figure{
	margin: 3em auto 0;
}
.news .bnr__list figure img{
	width: 100%;
	height: auto;
}