@charset "UTF-8";
section {
  padding: 7.5rem 0;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.container {
  margin: 0 auto;
}

.br {
  display: none;
}
@media (max-width: 768px) {
  .br {
    display: block;
  }
}

a {
  text-decoration: none;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

body.first-stop {
  pointer-events: none;
  overflow: hidden;
}

#first-splash {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1A1A1C;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}
#first-splash.show {
  display: flex;
}
#first-splash .first-splash__logo {
  width: 66px;
  margin-bottom: 2.25rem;
}
#first-splash .first-splash__text {
  max-width: calc(350px + 2rem);
  padding: 0 1.5rem;
}

#mv {
  position: relative;
  overflow: visible;
  margin-top: 5rem;
  padding: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  #mv {
    margin-top: 4rem;
  }
}
#mv div {
  line-height: 0;
}
#mv .mv-slide-pc {
  overflow: hidden;
}
@media (max-width: 768px) {
  #mv .mv-slide-pc {
    display: none;
  }
}
#mv .mv-slide-sp {
  display: none;
}
@media (max-width: 768px) {
  #mv .mv-slide-sp {
    display: block;
    overflow: hidden;
  }
  #mv .mv-slide-sp .slick-slide img {
    width: 100%;
  }
}
#mv .mv-info {
  position: absolute;
  display: flex;
  width: 90%;
  margin-left: auto;
  padding: 1.5rem 2rem;
  bottom: 0;
  right: 0;
  background: #1A1A1C;
  transform: translate(0px, 100%);
}
@media (max-width: 768px) {
  #mv .mv-info {
    position: relative;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 1rem;
    transform: unset;
  }
}
#mv .mv-info:hover .info__title {
  text-decoration: underline;
}
#mv .mv-info h2 {
  align-self: baseline;
  margin-right: 1rem;
  color: #757576;
  font-size: 1rem;
  font-family: "Jost", "YakuHanJP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #mv .mv-info h2 {
    margin-right: 0.5rem;
    font-size: 0.75rem;
  }
}
#mv .mv-info .info__date {
  align-self: baseline;
  margin-right: 1rem;
  color: #E7E7E7;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  #mv .mv-info .info__date {
    margin: 0;
  }
}
#mv .mv-info .info__title {
  align-self: baseline;
  color: #E7E7E7;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #mv .mv-info .info__title {
    width: 100%;
  }
}

#product {
  overflow: visible;
  position: relative;
  padding: 16rem 0 7.5rem;
}
@media (max-width: 768px) {
  #product {
    padding: 5rem 0;
  }
}
#product::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../image/product_bg.png");
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  z-index: -1;
}
#product::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../image/category_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  bottom: 0;
  z-index: -1;
}
#product .product-intro {
  display: flex;
  align-items: center;
  max-width: 900px;
}
@media (max-width: 768px) {
  #product .product-intro {
    flex-direction: column;
  }
}
#product .product-intro .intro-img {
  position: relative;
  text-align: center;
  max-width: 440px;
}
@media (max-width: 768px) {
  #product .product-intro .intro-img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__bg {
    padding: 1.5rem;
  }
}
#product .product-intro .intro-img .img__bg img {
  width: 100%;
}
#product .product-intro .intro-img .img__scroll {
  opacity: 0;
}
#product .product-intro .intro-img .img__scroll.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
#product .product-intro .intro-img .img__scroll.shaker {
  position: absolute;
  z-index: 4;
  top: 2.5rem;
  right: 3rem;
  padding: 1rem;
  transform: translate(16px, 16px);
  width: 30%;
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.shaker {
    top: 2rem;
  }
}
#product .product-intro .intro-img .img__scroll.shaker img {
  -webkit-animation: fuwafuwa 3s infinite ease-in-out 0.2s alternate;
  animation: fuwafuwa 3s infinite ease-in-out 0.2s alternate;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  transition: 1s ease-in-out;
  filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4));
  transform: translateZ(0);
}
#product .product-intro .intro-img .img__scroll.protein {
  position: absolute;
  z-index: 3;
  top: -4.5rem;
  left: 1.5rem;
  padding: 1rem;
  transform: translate(-16px, -16px);
  width: 70%;
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.protein {
    top: -1.5rem;
    width: 65%;
  }
}
#product .product-intro .intro-img .img__scroll.protein img {
  -webkit-animation: fuwafuwa 3s infinite ease-in-out 0.2s alternate;
  animation: fuwafuwa 3s infinite ease-in-out 0.2s alternate;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  transition: 1s ease-in-out;
  filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4));
  transform: translateZ(0);
}
#product .product-intro .intro-img .img__scroll.ball {
  position: absolute;
  z-index: 2;
  bottom: 3.25rem;
  left: 0;
  padding: 1rem;
  transform: translate(-16px, 16px);
  width: 40%;
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.ball {
    bottom: 2rem;
    left: 1rem;
  }
}
#product .product-intro .intro-img .img__scroll.ball img {
  filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4)) blur(2px);
  transform: translateZ(0);
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.ball img {
    filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4)) blur(1.3px);
  }
}
#product .product-intro .intro-img .img__scroll.dumbbell {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  right: 0;
  padding: 1rem;
  transform: translate(16px, -16px);
  width: 70%;
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.dumbbell {
    right: 1.5rem;
    width: 65%;
  }
}
#product .product-intro .intro-img .img__scroll.dumbbell img {
  filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4)) blur(2px);
  transform: translateZ(0);
}
@media (max-width: 768px) {
  #product .product-intro .intro-img .img__scroll.dumbbell img {
    filter: drop-shadow(10px 30px 30px rgba(26, 26, 28, 0.4)) blur(1.3px);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px);
  }
}
#product .product-intro .intro-text {
  padding: 0 0 0 6.75rem;
}
@media (max-width: 1128px) {
  #product .product-intro .intro-text {
    padding: 0 0 0 3rem;
  }
}
@media (max-width: 768px) {
  #product .product-intro .intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0 0;
  }
}
#product .product-intro .intro-text p {
  margin: 1.5rem 0 2rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  #product .product-intro .intro-text p {
    margin: 1.5rem 0;
    font-size: 1rem;
  }
}
#product .product-intro .intro-text a {
  margin: 0;
}
#product .product-category {
  overflow: hidden;
  position: relative;
  padding-top: 9rem;
}
@media (max-width: 768px) {
  #product .product-category {
    padding-top: 5rem;
  }
}
#product .product-category::before {
  position: absolute;
  font-family: "Jost", "YakuHanJP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-transform: uppercase;
  font-size: 16rem;
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  color: #E7E7E7;
  z-index: -1;
  content: "category";
  top: 110px;
}
@media (max-width: 768px) {
  #product .product-category::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  #product .product-category::before {
    font-size: min(18.8vw, 9rem);
  }
}
#product .product-category h2 {
  margin: 0 auto;
}
#product .product-category .category-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  #product .product-category .category-list {
    display: flex;
    flex-wrap: wrap;
  }
}
#product .product-category .category-list .category-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #E7E7E7;
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item {
    width: 50%;
  }
}
#product .product-category .category-list .category-list__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 0.75rem;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item a {
    padding: 2.5rem 0.75rem;
  }
}
#product .product-category .category-list .category-list__item a .img {
  max-width: 80px;
  filter: drop-shadow(20px 10px 12px rgba(26, 26, 28, 0.15));
  transform: scale(1);
  transition: all 0.2s;
}
#product .product-category .category-list .category-list__item a .text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
#product .product-category .category-list .category-list__item a .text::before {
  top: 50%;
  transform: translate(0, -50%);
}
#product .product-category .category-list .category-list__item a .text::after {
  top: 50%;
  left: 2.5px;
  transform: rotate(45deg) translate(0, -70%);
}
#product .product-category .category-list .category-list__item a:hover .img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item a:hover .img {
    transform: none;
  }
}
#product .product-category .category-list .category-list__item:first-of-type {
  min-width: 400px;
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:first-of-type {
    width: 100%;
    min-width: 100%;
  }
}
#product .product-category .category-list .category-list__item:first-of-type a .img {
  max-width: 260px;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:first-of-type a .img {
    max-width: 180px;
  }
}
#product .product-category .category-list .category-list__item:not(:nth-of-type(4)):not(:nth-of-type(7)):not(:nth-of-type(8)) {
  border-right: 1px solid #E7E7E7;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:not(:nth-of-type(4)):not(:nth-of-type(7)):not(:nth-of-type(8)) {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:nth-of-type(2n) {
    border-right: 1px solid #E7E7E7 !important;
  }
}
#product .product-category .category-list .category-list__item:last-of-type {
  grid-column: 1/5;
  grid-row: 3/4;
  border-right: none !important;
  border-bottom: 1px solid #E7E7E7;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:last-of-type {
    width: 100%;
  }
}
#product .product-category .category-list .category-list__item:last-of-type a {
  flex-direction: row;
  justify-content: center;
  padding: 2.75rem 0;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:last-of-type a {
    flex-direction: column;
  }
}
#product .product-category .category-list .category-list__item:last-of-type a .img {
  max-width: 200px;
  filter: drop-shadow(18px 8px 8px rgba(26, 26, 28, 0.15));
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:last-of-type a .img {
    max-width: 180px;
  }
}
#product .product-category .category-list .category-list__item:last-of-type a .text {
  margin: 0 0 0 2rem;
}
@media (max-width: 768px) {
  #product .product-category .category-list .category-list__item:last-of-type a .text {
    margin: 1rem 0 0;
  }
}

#pickup {
  position: relative;
  background: #1A1A1C;
}
#pickup::before {
  position: absolute;
  font-family: "Jost", "YakuHanJP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-transform: uppercase;
  font-size: 16rem;
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  color: #303032;
  z-index: -1;
  content: "pick up";
  top: 0;
}
@media (max-width: 768px) {
  #pickup::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  #pickup::before {
    font-size: min(26.5vw, 12.8rem);
  }
}
#pickup .pickup-inner {
  max-width: calc(1088px + 3rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 1128px) {
  #pickup .pickup-inner {
    margin: 0 auto;
    padding: 0;
  }
}
#pickup .pickup-inner h2 {
  max-width: calc(1088px + 3rem);
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  #pickup .pickup-inner h2 {
    padding: 0 1.5rem;
  }
}
#pickup .slider-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
#pickup .pickup__slider {
  position: relative;
  max-width: 638px;
  width: 100%;
  margin: 0 72px 0 0;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 1128px) {
  #pickup .pickup__slider {
    max-width: 768px;
    margin: 0 auto;
  }
}
#pickup .pickup__slider .slider__inner {
  position: relative;
  padding: 2.5rem 4.25rem;
  margin: 0;
  background-color: #1A1A1C;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: 0s;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pickup .pickup__slider .slider__inner {
    padding: 1.5rem 3rem;
  }
}
#pickup .pickup__slider .slider__inner::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #1A1A1C;
  width: 100%;
  height: calc(100% + 1px);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
  transition: 0s;
}
#pickup .pickup__slider .slider__inner::after {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  z-index: -2;
  transition: 0s;
  filter: blur(10px);
  background: inherit;
}
#pickup .pickup__slider .slider__inner a {
  transition: 0s;
}
#pickup .pickup__slider .slide-btn {
  position: absolute;
  cursor: pointer;
  width: 68px;
  height: 100%;
  top: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  #pickup .pickup__slider .slide-btn {
    width: 48px;
  }
}
#pickup .pickup__slider .slide-btn::before {
  content: "";
  position: absolute;
  display: block;
  cursor: pointer;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #E7E7E7;
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#pickup .pickup__slider .slide-btn.swiper-button-prev {
  left: 0;
}
#pickup .pickup__slider .slide-btn.swiper-button-prev::before {
  border-width: 0 0 2px 2px;
  left: calc(50% + 6px);
}
#pickup .pickup__slider .slide-btn.swiper-button-next {
  right: 0;
}
#pickup .pickup__slider .slide-btn.swiper-button-next::before {
  border-width: 2px 2px 0 0;
  left: calc(50% - 6px);
}
#pickup .pickup__text {
  width: calc(100% - 710px);
  transition: 0s all;
  overflow: hidden;
}
@media (max-width: 1128px) {
  #pickup .pickup__text {
    order: 1;
    max-width: calc(768px + 3rem);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
}
#pickup .pickup__text *:not(.btn) {
  transition: 0s all;
}
#pickup .pickup__text .swiper-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1128px) {
  #pickup .pickup__text .swiper-wrapper {
    align-items: baseline;
  }
}
#pickup .pickup__text .text-inner {
  z-index: 0;
  pointer-events: none;
}
#pickup .pickup__text .text-inner.swiper-slide-active {
  z-index: 1;
  pointer-events: inherit;
}
#pickup .pickup__text .text-inner .title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #E7E7E7;
  text-align: left;
}
@media (max-width: 768px) {
  #pickup .pickup__text .text-inner .title {
    font-size: 1.25rem;
  }
}
#pickup .pickup__text .text-inner p {
  margin: 1rem 0 1.5rem;
  color: #E7E7E7;
  text-align: left;
}
#pickup .pickup__text .text-inner .btn {
  margin: 0;
}
@media (max-width: 1128px) {
  #pickup .pickup__text .text-inner .btn {
    margin: 0 auto;
  }
}
#pickup .pickup__slider-sub {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  overflow: hidden;
}
@media (max-width: 1128px) {
  #pickup .pickup__slider-sub {
    max-width: 768px;
    white-space: nowrap;
    margin: 1.5rem auto;
  }
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub {
    padding-top: 0.25rem;
  }
}
#pickup .pickup__slider-sub::-webkit-scrollbar {
  /* Chrome, Safari, Edge 対応 */
}
@media (max-width: 1128px) {
  #pickup .pickup__slider-sub::-webkit-scrollbar {
    display: none;
  }
}
#pickup .pickup__slider-sub .slider-sub__inner {
  width: calc((100% - 5rem) / 6);
  bottom: 0;
  padding: 0;
  margin-right: 1rem;
  transition: all 0.2s !important;
  opacity: 0.3;
  cursor: pointer;
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub .slider-sub__inner {
    width: 94px;
    margin-right: 0.25rem;
  }
}
#pickup .pickup__slider-sub .slider-sub__inner.last-child {
  margin-right: 0;
}
#pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-active, #pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-duplicate-active {
  opacity: 1;
}
#pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-active::after, #pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-duplicate-active::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background: #dc000c;
  transform: translate(0px, -100%);
  z-index: -1;
}
#pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-active img, #pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-duplicate-active img {
  transform: translate(0, -0.5rem);
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-active img, #pickup .pickup__slider-sub .slider-sub__inner.swiper-slide-duplicate-active img {
    transform: translate(0, -0.25rem);
  }
}
#pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover {
  opacity: 1;
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover {
    opacity: 0.3;
  }
}
#pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background: #dc000c;
  transform: translate(0px, -100%);
  z-index: -1;
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover::after {
    display: none;
  }
}
#pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover img {
  transform: translate(0, -0.5rem);
}
@media (max-width: 768px) {
  #pickup .pickup__slider-sub .slider-sub__inner:not(.swiper-slide-active):hover img {
    transform: translate(0, 0);
  }
}
#pickup .pickup__slider-sub .slider-sub__inner img {
  transition: 0.2s all;
}

#news {
  position: relative;
}
#news::before {
  position: absolute;
  font-family: "Jost", "YakuHanJP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-transform: uppercase;
  font-size: 16rem;
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  color: #E7E7E7;
  z-index: -1;
  content: "news";
  top: 0;
}
@media (max-width: 768px) {
  #news::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  #news::before {
    font-size: min(34.5vw, 16.5rem);
    transform: translate(-50%, -10%);
  }
}
@media (max-width: 768px) {
  #news .news-inner {
    padding: 0;
  }
}
@media (max-width: 768px) {
  #news .news-inner h2 {
    padding: 0 1.5rem;
  }
}
#news .news__wrap {
  display: flex;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  #news .news__wrap {
    flex-direction: column;
  }
}
#news .news__wrap .news__menu {
  flex-shrink: 0;
  width: 146px;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu {
    display: flex;
    overflow: auto;
    width: 100vw;
    margin: 0 0 1.5rem;
  }
}
#news .news__wrap .news__menu li {
  position: relative;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  color: #757576;
  font-size: 0.875rem;
  padding: 1rem 0;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu li {
    padding: 1rem;
  }
}
#news .news__wrap .news__menu li::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #dc000c;
  width: 1px;
  height: calc(100% - 22px);
  top: 11px;
  left: 0;
  transition: 0.3s all;
  transform: scale(1, 0);
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu li::before {
    width: 100%;
    height: 1px;
    top: 0;
    transform: scale(0, 1);
  }
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu li:first-child {
    margin-left: 1.5rem;
  }
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu li:last-child {
    margin-right: 1.5rem;
  }
}
#news .news__wrap .news__menu li:hover {
  color: #1A1A1C;
  font-weight: 700;
}
#news .news__wrap .news__menu li.mark {
  color: #1A1A1C;
  font-weight: 700;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__menu li.mark {
    padding: 1rem;
  }
}
#news .news__wrap .news__menu li.mark::before {
  transform: scale(1, 1);
}
#news .news__wrap .news__list {
  width: 100%;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list {
    padding: 0 1.5rem;
  }
}
#news .news__wrap .news__list ul {
  display: none;
}
#news .news__wrap .news__list ul.active {
  display: block;
}
#news .news__wrap .news__list ul .none_post {
  font-size: 0.875rem;
}
#news .news__wrap .news__list ul li {
  border-bottom: 1px solid #E7E7E7;
}
#news .news__wrap .news__list ul li:first-child a {
  padding-top: 0;
}
#news .news__wrap .news__list ul li a {
  display: flex;
  align-items: baseline;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list ul li a {
    flex-wrap: wrap;
  }
}
#news .news__wrap .news__list ul li a:hover .news__list--title {
  text-decoration: underline;
}
#news .news__wrap .news__list ul li a .news__list--cat {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  outline: 1px solid #E7E7E7;
  font-size: 0.625rem;
  width: 100px;
  margin-right: 1rem;
  padding: 0.25rem 0.875rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list ul li a .news__list--cat {
    padding: 0.125rem 0.875rem;
  }
}
#news .news__wrap .news__list ul li a .news__list--date {
  flex-shrink: 0;
  font-size: 0.875rem;
  width: 74px;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list ul li a .news__list--date {
    margin-right: 0;
  }
}
#news .news__wrap .news__list ul li a .news__list--title {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list ul li a .news__list--title {
    width: 100%;
    margin-top: 0.5rem;
  }
}
#news .news__wrap .news__list .news-page-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  #news .news__wrap .news__list .news-page-link {
    margin-top: 1.5rem;
  }
}
#news .news__wrap .news__list .news-page-link a {
  font-size: 0.875rem;
  font-weight: 700;
}
#news .news__wrap .news__list .news-page-link a::before {
  top: 2px;
}
#news .news__wrap .news__list .news-page-link a::after {
  top: 8px;
}

#support {
  position: relative;
}
#support::before {
  position: absolute;
  font-family: "Jost", "YakuHanJP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-transform: uppercase;
  font-size: 16rem;
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  color: #FFFFFF;
  z-index: -1;
  content: "user support";
  top: 0;
  font-size: 12rem;
}
@media (max-width: 768px) {
  #support::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  #support::before {
    content: "user\asupport";
    white-space: pre;
    top: -8px;
    font-size: min(22.5vw, 10.8rem);
    line-height: 0.85;
  }
}
#support .support-inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 320px;
  top: 0;
  left: 0;
  background: #E7E7E7;
  z-index: -2;
}
#support .support-inner .support-list {
  display: flex;
  z-index: 0;
  margin: 1.5rem 0;
  filter: drop-shadow(0px 0px 3px rgba(26, 26, 28, 0.1));
}
@media (max-width: 768px) {
  #support .support-inner .support-list {
    flex-direction: column;
    box-shadow: none;
  }
}
#support .support-inner .support-list li {
  z-index: 0;
  width: 33.3333333333%;
  background: #FFFFFF;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li {
    width: 100%;
    border-top: none;
  }
}
#support .support-inner .support-list li:hover {
  box-shadow: 0 0 8px rgba(26, 26, 28, 0.2);
  z-index: 2;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li:hover {
    box-shadow: inherit;
  }
}
#support .support-inner .support-list li:nth-of-type(2) a {
  border-left: 1px solid #E7E7E7;
  border-right: 1px solid #E7E7E7;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li:nth-of-type(2) a {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    border-left: none;
    border-right: none;
  }
}
#support .support-inner .support-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  height: 100%;
  width: 100%;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li a {
    padding: 2rem 1rem;
  }
}
#support .support-inner .support-list li a .img {
  width: 20%;
  min-width: 42px;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li a .img {
    max-width: 42px;
  }
}
#support .support-inner .support-list li a .text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  #support .support-inner .support-list li a .text {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
#support .support-inner .support-list li a .text::before {
  top: 50%;
  transform: translate(0px, -50%);
}
#support .support-inner .support-list li a .text::after {
  top: 50%;
  transform: translate(0px, -50%) rotate(45deg);
}