@charset "UTF-8";
/* ===================================================================================
======================================================================================

global > variable

======================================================================================
=================================================================================== */
/* color
---------------------------------------- */
/* font
---------------------------------------- */
/* font-size
---------------------------------------- */
/* device
---------------------------------------- */
/* content
---------------------------------------- */
/* inner
---------------------------------------- */
/* margin
---------------------------------------- */
/* ===================================================================================
======================================================================================

global > mixin

======================================================================================
=================================================================================== */
/* media query
---------------------------------------- */
/* clearfix
---------------------------------------- */
/* hover
---------------------------------------- */
/* link
---------------------------------------- */
/* z-index
---------------------------------------- */
/* rem変換
---------------------------------------- */
/* %変換
---------------------------------------- */
/* vh変換(SP用)
---------------------------------------- */
/* vw変換(SP用)
---------------------------------------- */
/* vw変換(PC用) minとmax
---------------------------------------- */
/* spサイズをpcサイズへ引き伸ばし(px)
---------------------------------------- */
/* spサイズをpcサイズへ引き伸ばし(vw)
---------------------------------------- */
/* line-height計算
---------------------------------------- */
/* line-heightの上下余白を削除
---------------------------------------- */
/* letter-spacing計算
---------------------------------------- */
/* letter-spacingの文末を削除
---------------------------------------- */
/* 右三角
---------------------------------------- */
/* aspectArea(padding-top)
---------------------------------------- */
/* aspectArea-h(height)
---------------------------------------- */
/* youtube
---------------------------------------- */
/* margin: 0 auto
---------------------------------------- */
/* flex 上下左右センター
---------------------------------------- */
/* position 上下左右センター
---------------------------------------- */
/* ===================================================================================
======================================================================================

global > anime

======================================================================================
=================================================================================== */
/* speed
---------------------------------------- */
/* fadeIn
---------------------------------------- */
.fadeIn {
  opacity: 0;
  transition: opacity 1s;
}
.fadeIn.on {
  opacity: 1;
}

.anime .anime__item--fadeIn {
  opacity: 0;
  transition: opacity 1s;
}
.anime.on .anime__item--fadeIn {
  opacity: 1;
}

/* fadeUp
---------------------------------------- */
.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.anime .anime__item--fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeUp {
  opacity: 1;
  transform: translateY(0);
}

/* fadeDown
---------------------------------------- */
.fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
}
.fadeDown.on {
  opacity: 1;
  transform: translateY(0);
}

.anime .anime__item--fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeDown {
  opacity: 1;
  transform: translateY(0);
}

/* fadeLeft
---------------------------------------- */
.fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s, transform 1s;
}
.fadeLeft.on {
  opacity: 1;
  transform: translateX(0);
}

.anime .anime__item--fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeLeft {
  opacity: 1;
  transform: translateX(0);
}

/* fadeRight
---------------------------------------- */
.fadeRight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s, transform 1s;
}
.fadeRight.on {
  opacity: 1;
  transform: translateX(0);
}

.anime .anime__item--fadeRight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeRight {
  opacity: 1;
  transform: translateX(0);
}

/* 
=========---------------------------------------- */
.fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s, transform 1s;
}
.fadeInZoomOut.on {
  opacity: 1;
  transform: scale(1);
}

.anime .anime__item--fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeInZoomOut {
  opacity: 1;
  transform: scale(1);
}

/* colorBeta
---------------------------------------- */
.colorBeta {
  opacity: 0;
  position: relative;
  transition: opacity 1s;
}
.colorBeta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on {
  opacity: 1;
}
.colorBeta.on::before {
  opacity: 0;
}

.colorBeta .colorBeta__item {
  opacity: 0;
  position: relative;
  transition: opacity 1s;
}
.colorBeta .colorBeta__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on .colorBeta__item {
  opacity: 1;
}
.colorBeta.on .colorBeta__item::before {
  opacity: 0;
}

/* blur
=========---------------------------------------- */
.blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.blur.on {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.anime .anime__item--blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.anime.on .anime__item--blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/* slide
---------------------------------------- */
.slide {
  transform: translateX(-105%);
  transition: transform 1s ease;
  overflow: hidden;
}
.slide .slide__img {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.slide.on {
  transform: translateX(0);
}
.slide.on .slide__img {
  transform: translateX(0);
}

.anime .anime__item--slide {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1s ease;
}
.anime .anime__item--slide .anime__item--slideImg {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.anime.on .anime__item--slide,
.anime.on .anime__item--slideImg {
  transform: translateX(0);
}

/* slideBlur
---------------------------------------- */
.anime .anime__item--slideBlur {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1s ease;
  filter: blur(15px);
}
.anime .anime__item--slideBlur .anime__item--slideBlurImg {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.anime.on .anime__item--slideBlur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.anime.on .anime__item--slideBlur,
.anime.on .anime__item--slideBlurImg {
  transform: translateX(0);
}

/* loop
---------------------------------------- */
/* loop__y
---------------------------------------- */
/* ===================================================================================
======================================================================================

pages > top > newsTop

======================================================================================
=================================================================================== */
@media screen and (min-width: 769px) {
  .newsTop {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .newsTop {
    padding-top: 96px;
  }
}

@media screen and (min-width: 769px) {
  .sec__title {
    margin-bottom: 0;
  }
}

.newsTop__attn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .newsTop__attn {
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .newsTop__attn {
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 33px;
  }
}
.newsTop__attn .newsTop__attnIcon {
  background-color: #000;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .newsTop__attn .newsTop__attnIcon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .newsTop__attn .newsTop__attnIcon {
    width: 44px;
    height: 44px;
  }
}
@media screen and (min-width: 769px) {
  .newsTop__attn .newsTop__attnIcon img {
    width: 17px;
  }
}
@media screen and (max-width: 768px) {
  .newsTop__attn .newsTop__attnIcon img {
    width: 17px;
  }
}
.newsTop__attn .newsTop__attnText {
  line-height: 1.5625;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  text-align: center;
}

/* ===================================================================================
======================================================================================

pages > top > news

======================================================================================
=================================================================================== */
.news {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .news {
    max-width: 930px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .news {
    width: 92.8571428571vw;
  }
}

.newsBlock {
  border: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  .newsBlock {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newsBlock {
    padding: 0 35px;
  }
}
@media screen and (min-width: 769px) {
  .newsBlock:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .newsBlock:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.newsBlock .news__head {
  font-size: 1.06rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .newsBlock .news__head {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .newsBlock .news__head {
    padding: 33px 0 28px;
  }
}
.newsBlock .news__date {
  color: #fa7800;
  font-family: "DIN Condensed", "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1875rem;
}
@media screen and (min-width: 769px) {
  .newsBlock .news__date {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .newsBlock .news__date {
    margin-bottom: 5px;
  }
}
.newsBlock .news__title {
  line-height: 1.6927083333;
  word-break: break-all;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.newsBlock .news__content {
  width: 100%;
  border-top: 1px solid #ccc;
  line-height: 2.03125;
  font-size: 1rem;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px) {
  .newsBlock .news__content {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .newsBlock .news__content {
    padding: 40px 0 47px;
  }
}
.newsBlock .news__content a {
  text-decoration: underline;
}
.newsBlock .news__content .color {
  color: #fa7800;
}
@media screen and (min-width: 769px) {
  .newsBlock .news__content .flex {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .newsBlock .news__content .flex .flex_head {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .newsBlock .news__content .flex .flex_body {
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .btn {
    margin: 30px auto 50px;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 43px auto 70px;
  }
}/*# sourceMappingURL=news.css.map */