.c-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  text-align: center;
  color: #313131;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .c-head {
    gap: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .c-head {
    gap: 4rem;
  }
}

.c-head__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  letter-spacing: 0.32rem;
}

.c-head__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-head__en {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 480px) {
  .c-head__en {
    font-size: 3.2rem;
  }
}

.c-head__ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .c-head__ja {
    font-size: 2.2rem;
  }
}

.c-head__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .c-head__lead {
    font-size: 1.5rem;
  }
}

.mv {
  position: relative;
  margin-top: 8rem;
  display: flex;
  width: 100%;
  aspect-ratio: 1920/770;
  border-bottom: 1px solid #b2b2b2;
  background-color: #f7f7f7;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .mv {
    flex-direction: column;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    flex-direction: column;
    aspect-ratio: auto;
    margin-top: 6rem;
  }
}

.mv__movie {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  background-color: #000000;
}
.mv__movie video,
.mv__movie img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .mv__movie {
    flex: none;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 480px) {
  .mv__movie {
    flex: none;
    aspect-ratio: 4/3;
  }
}

.mv__slider {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  background-color: #f7f7f7;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .mv__slider {
    flex: none;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 480px) {
  .mv__slider {
    flex: none;
    aspect-ratio: 1/1;
  }
}

@media screen and (max-width: 768px) {
  .mv__slider {
    order: 1;
  }
  .mv__movie {
    order: 2;
  }
}
.mv__slides {
  position: absolute;
  inset: 0;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.mv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.mv__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__indicator {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12.8rem;
}
.mv__indicator button {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #b2b2b2;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.mv__indicator button.is-active {
  background-color: #313131;
  transform: scale(1.05);
}
@media screen and (max-width: 480px) {
  .mv__indicator {
    bottom: 2rem;
  }
}

body.home #wrapper {
  overflow: visible;
}

.sec01 {
  position: relative;
  overflow: clip;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #b2b2b2;
}

.sec01__stage {
  position: relative;
  width: 100%;
  max-width: 192rem;
  height: clamp(260rem, 420vh, 480rem);
  margin: 0 auto;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec01__stage {
    height: clamp(260rem, 375vh, 320rem);
    height: clamp(260rem, 375svh, 320rem);
  }
}
@media screen and (max-width: 480px) {
  .sec01__stage {
    height: clamp(250rem, 375vh, 310rem);
    height: clamp(250rem, 375svh, 310rem);
  }
}

.sec01__images {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sec01__img {
  --intro-shift: 0px;
  --intro-scale: 1.16;
  --intro-opacity: 0;
  position: absolute;
  display: block;
  opacity: var(--intro-opacity);
  transform: translate3d(0, var(--intro-shift), 0);
  will-change: opacity, transform;
}
.sec01__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--intro-scale));
  transform-origin: center;
  will-change: transform;
}

.sec01__img--01 {
  top: 7%;
  left: 74%;
  width: 18%;
  aspect-ratio: 690/576;
}

.sec01__img--02 {
  top: 23%;
  left: 5%;
  width: 22%;
  aspect-ratio: 757/720;
}

.sec01__img--03 {
  top: 40%;
  left: 71%;
  width: 25%;
  aspect-ratio: 860/820;
}

.sec01__img--04 {
  top: 59%;
  left: 3%;
  width: 28%;
  aspect-ratio: 980/798;
}

.sec01__img--05 {
  top: 78%;
  left: 67%;
  width: 31%;
  aspect-ratio: 996/791;
}

.sec01__text {
  position: sticky;
  top: 4rem;
  z-index: 2;
  width: 56rem;
  height: calc(100vh - 4rem);
  height: calc(100svh - 4rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .sec01__text {
    width: min(53rem, 100% - 8rem);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec01__text {
    width: min(53rem, 100% - 6rem);
  }
}
@media screen and (max-width: 480px) {
  .sec01__text {
    top: 4rem;
    width: 100%;
    height: calc(100vh - 4rem);
    height: calc(100svh - 4rem);
  }
}

.sec01__text-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
}
@media screen and (max-width: 960px) {
  .sec01__text-inner {
    gap: clamp(3.2rem, 6vh, 5.6rem);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec01__text-inner {
    width: calc(100% - 2rem);
    padding: 2.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.82);
    border-radius: 2rem;
    box-shadow: 0 0 3rem 2rem rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(0.4rem);
    backdrop-filter: blur(0.4rem);
  }
}
@media screen and (max-width: 480px) {
  .sec01__text-inner {
    width: calc(100% - 2rem);
    padding: 2.4rem 1rem;
    gap: clamp(2.4rem, 5vh, 4rem);
    background-color: rgba(255, 255, 255, 0.82);
    border-radius: 2rem;
    box-shadow: 0 0 3rem 2rem rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(0.4rem);
    backdrop-filter: blur(0.4rem);
  }
}

.sec01__heading {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.32rem;
  color: #313131;
}
@media screen and (max-width: 480px) {
  .sec01__heading {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
  }
}

.sec01__body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #313131;
}
@media screen and (max-width: 480px) {
  .sec01__body {
    font-size: 1.6rem;
  }
}

.sec01__emphasis {
  font-weight: 500;
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec01__img--01 {
    top: 5%;
    left: 50%;
    width: 43%;
  }
  .sec01__img--02 {
    top: 22%;
    left: -4%;
    width: 48%;
  }
  .sec01__img--03 {
    top: 41%;
    left: 53%;
    width: 46%;
  }
  .sec01__img--04 {
    top: 61%;
    left: -5%;
    width: 52%;
  }
  .sec01__img--05 {
    top: 81%;
    left: 47%;
    width: 54%;
  }
}
@media screen and (max-width: 480px) {
  .sec01__img--01 {
    top: 4%;
    left: 45%;
    width: 52%;
  }
  .sec01__img--02 {
    top: 22%;
    left: -8%;
    width: 60%;
  }
  .sec01__img--03 {
    top: 42%;
    left: 48%;
    width: 62%;
  }
  .sec01__img--04 {
    top: 63%;
    left: -10%;
    width: 67%;
  }
  .sec01__img--05 {
    top: 82%;
    left: 36%;
    width: 70%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sec01__stage {
    height: 140rem;
  }
  .sec01__img {
    --intro-shift: 0px !important;
    --intro-scale: 1 !important;
    --intro-opacity: 1 !important;
  }
}
.sec02 {
  position: relative;
  overflow: visible;
  padding: 12rem 0 8rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 960px) {
  .sec02 {
    padding: 8rem 0 6rem;
  }
}

.sec02__watermark {
  position: absolute;
  left: 15.1rem;
  top: -12rem;
  z-index: 0;
  width: 70rem;
  max-width: 50%;
  pointer-events: none;
  user-select: none;
}
.sec02__watermark img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .sec02__watermark {
    left: 3rem;
    top: -8rem;
    width: 50rem;
    opacity: 0.6;
  }
}
@media screen and (max-width: 480px) {
  .sec02__watermark {
    display: none;
  }
}

.sec02__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6.4rem;
  padding-left: 6rem;
  margin-bottom: 4rem;
  color: #313131;
}
@media screen and (max-width: 960px) {
  .sec02__head {
    gap: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec02__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 2rem;
  }
}

.sec02__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 960px) {
  .sec02__en {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec02__en {
    font-size: 3.2rem;
  }
}

.sec02__ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 480px) {
  .sec02__ja {
    font-size: 2rem;
  }
}

.sec02__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding-left: 6rem;
}
@media screen and (max-width: 960px) {
  .sec02__body {
    padding-left: 3rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec02__body {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sec02__body {
    flex-direction: column;
    gap: 2.4rem;
    padding-left: 2rem;
  }
}

.sec02__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-left: 1.6rem;
  border-left: 1px solid #b2b2b2;
  flex-shrink: 0;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec02__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .sec02__list {
    gap: 0.8rem;
  }
}

.sec02__list-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  color: #313131;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec02__list-item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .sec02__list-item {
    font-size: 1.6rem;
  }
}

.sec02__check {
  flex-shrink: 0;
  width: 2.4rem;
  height: auto;
}

.sec02__cards {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec02__cards {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .sec02__cards {
    width: 100%;
    max-width: 100%;
  }
}

.sec02__cards-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.sec02__card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex-shrink: 0;
  width: 46rem;
  height: 46rem;
  padding: 3.2rem;
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 0.5rem;
  scroll-snap-align: start;
  color: #313131;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sec02__card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 480px) {
  .sec02__card {
    width: 30rem;
    height: 30rem;
    padding: 2.4rem;
    gap: 1.6rem;
  }
}

.sec02__card-head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.sec02__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.16rem;
}

.sec02__card-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 480px) {
  .sec02__card-title {
    font-size: 1.8rem;
  }
}

.sec02__card-img {
  flex-shrink: 0;
  width: 40rem;
  max-width: 100%;
  height: 28rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.sec02__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .sec02__card-img {
    height: 18rem;
  }
}

.sec02__card-title {
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .sec02__card-title {
    white-space: normal;
  }
}

.sec02__arrows {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
  margin-top: 4rem;
  padding-right: 12.5%;
}
@media screen and (max-width: 768px) {
  .sec02__arrows {
    justify-content: center;
    padding-right: 0;
  }
}

.sec02__arrow {
  width: 4.5rem;
  height: 4.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sec02__arrow img {
  width: 100%;
  height: 100%;
}
.sec02__arrow--prev img {
  transform: rotate(-90deg);
}
.sec02__arrow--next img {
  transform: rotate(90deg);
}
.sec02__arrow:hover {
  opacity: 0.6;
}

.sec03 {
  position: relative;
  overflow: clip;
  padding: 12.5rem 0;
  background-color: #2c2c2c;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8 + 1px));
}

.sec03__stage {
  position: relative;
  width: 100%;
  max-width: 192rem;
  margin: 0 auto;
  aspect-ratio: 1920/2400;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec03__stage {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 480px) {
  .sec03__stage {
    aspect-ratio: auto;
  }
}

.sec03__photo-track {
  display: contents;
}

.sec03__images {
  position: absolute;
  inset: 0;
}

.sec03__img {
  position: absolute;
  left: 62.5%;
  width: 25%;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
  will-change: transform;
}
.sec03__img:nth-child(1) {
  top: 0;
}
.sec03__img:nth-child(2) {
  top: 35%;
}
.sec03__img:nth-child(3) {
  top: 60%;
}
.sec03__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec03__text {
  position: sticky;
  top: calc(8rem + 12rem);
  z-index: 2;
  width: 72rem;
  margin-left: 12.5%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  color: #ffffff;
}
@media screen and (max-width: 960px) {
  .sec03__text {
    top: calc(8rem + 6rem);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec03__text {
    position: static;
    width: 100%;
    margin-left: 0;
    padding: 8rem 3rem 4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec03__text {
    position: static;
    width: 100%;
    margin-left: 0;
    padding: 6rem 2rem 3rem;
    gap: 4rem;
  }
}

.sec03__heading {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.32rem;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .sec03__heading {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }
}

.sec03__body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .sec03__body {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sec03__text {
    top: calc(8rem + 4rem);
    width: 44%;
    margin-left: 5%;
    gap: 4rem;
  }
  .sec03__img {
    left: 58%;
    width: 34%;
  }
}
@media screen and (max-width: 768px) {
  .sec03 {
    overflow: visible;
    padding: 0;
  }
  .sec03__stage {
    display: flex;
    flex-direction: column;
  }
  .sec03__photo-track {
    --photo-area-height: min(calc(100vw - 6rem), 64rem);
    position: relative;
    display: block;
    flex: none;
    height: calc(200vh + var(--photo-area-height));
    height: calc(200svh + var(--photo-area-height));
    margin-top: 4rem;
  }
  .sec03__images {
    position: sticky;
    inset: auto;
    top: 10rem;
    display: block;
    width: 100%;
    height: var(--photo-area-height);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  }
  .sec03__stage.is-photo-phase .sec03__images {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s;
  }
  .sec03__img {
    --photo-opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 6rem);
    max-width: 64rem;
    opacity: var(--photo-opacity);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .sec03__img:nth-child(n) {
    top: 50%;
  }
  .sec03__img.is-active {
    opacity: 1;
  }
  .sec03__text {
    flex: none;
  }
}
@media screen and (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .sec03__images,
  .sec03__img {
    transition: none;
  }
}
@media screen and (max-width: 480px) {
  .sec03__photo-track {
    --photo-area-height: min(calc(100vw - 4rem), 44rem);
  }
  .sec03__images {
    top: 8rem;
  }
  .sec03__img {
    width: calc(100% - 4rem);
    max-width: 44rem;
  }
}
.sec04 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15rem 2rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 960px) {
  .sec04 {
    padding: 8rem 2rem;
  }
}

.sec04__marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.sec04__row {
  flex: 1 1 33.3333333333%;
  min-height: 0;
  overflow: hidden;
}
.sec04__row--right .sec04__track {
  animation-name: sec04-marquee-right;
}

.sec04__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: sec04-marquee-left 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .sec04__track {
    animation: none;
  }
}

.sec04__cell {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}
.sec04__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes sec04-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes sec04-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.sec04__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
  width: 96rem;
  max-width: 100%;
  min-height: 54.7rem;
  padding: 6.4rem;
  background-color: #2c2c2c;
  border-radius: 0.5rem;
  overflow: hidden;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8 + 1px));
}
@media screen and (max-width: 480px) {
  .sec04__card {
    gap: 4rem;
    padding: 4rem 2rem;
  }
}

.sec04__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .sec04__text {
    font-size: 1.5rem;
  }
}

.sec04__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 960px) {
  .sec04__btns {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec04__btns {
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
  }
}

.sec05 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  padding: 16rem 24rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 960px) {
  .sec05 {
    padding: 12rem 6rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec05 {
    padding: 10rem 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sec05 {
    padding: 8rem 2rem;
    gap: 4rem;
  }
}

.sec05__watermark {
  position: absolute;
  left: -12.6rem;
  top: 15.8rem;
  z-index: 0;
  width: 70rem;
  pointer-events: none;
}
.sec05__watermark img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .sec05__watermark {
    opacity: 0.5;
    width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  .sec05__watermark {
    display: none;
  }
}

.sec05 > .c-head,
.sec05__inner {
  position: relative;
  z-index: 1;
}

.sec05__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  width: 100%;
}

.sec05__products {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec05__products {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .sec05__products {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .sec05__products {
    align-items: stretch;
    width: 100%;
  }
}

.sec05__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 44rem;
  max-width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec05__product {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec05__product {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec05__product {
    width: 100%;
    max-width: none;
  }
}

.sec05__product-img {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #b2b2b2;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sec05__product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec05__product-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec05__product-meta {
    gap: 1.6rem;
  }
}

.sec05__badge {
  padding: 0.6rem 3.2rem;
  background-color: #313131;
  border-radius: 5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.09rem;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .sec05__badge {
    font-size: 1.6rem;
  }
}

.sec05__product-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  color: #313131;
}
@media screen and (max-width: 480px) {
  .sec05__product-name {
    font-size: 2.8rem;
  }
}

.sec06 {
  position: relative;
  overflow: hidden;
  padding: 11rem 6rem;
  background-color: #ffffff;
  border-top: 1px solid #b2b2b2;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8 + 1px));
}
@media screen and (max-width: 480px) {
  .sec06 {
    padding: 6rem 2rem;
  }
}

.sec06__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  max-width: 192rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec06__inner {
    flex-direction: column;
    gap: 8rem;
  }
}

.sec06__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
  width: 84rem;
  max-width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec06__col .c-head__group {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .sec06__col .c-head__group {
    gap: 0.4rem;
  }
}

.sec06__figure {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 840/500;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sec06__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec06__figure:hover img {
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
  .sec06__col {
    position: relative;
  }
  .sec06__col .c-head {
    position: absolute;
    left: auto;
    right: 2.4rem;
    top: auto;
    bottom: 2.4rem;
    z-index: 2;
    align-items: flex-end;
    color: #ffffff;
    text-align: right;
    pointer-events: none;
  }
  .sec06__col .c-head__group {
    align-items: flex-end;
  }
  .sec06__col .sec06__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
  }
}
.sec07 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  padding: 16rem 12rem;
  color: #313131;
}
@media screen and (max-width: 960px) {
  .sec07 {
    padding: 12rem 6rem;
  }
}
@media screen and (max-width: 480px) {
  .sec07 {
    padding: 8rem 2rem;
    gap: 4rem;
  }
}

.sec07__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sec07__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec07 > .c-head,
.sec07__cards {
  position: relative;
  z-index: 1;
}

.sec07__cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec07__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .sec07__cards {
    flex-direction: column;
    justify-content: center;
  }
}

.sec07__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 56rem;
  padding: 1.6rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #b2b2b2;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec07__card {
    flex: 0 1 44rem;
  }
}
@media screen and (max-width: 480px) {
  .sec07__card {
    flex: none;
    width: 100%;
    max-width: none;
  }
}

.sec07__card-img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sec07__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec07__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  padding: 0 0.8rem;
}

.sec07__card-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.24rem;
}

.sec07__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.sec07__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.sec07__link img {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}
.sec07__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .sec07__link {
    font-size: 1.6rem;
  }
}

.sec08 {
  position: relative;
  overflow: hidden;
  padding: 16rem 0;
  background-color: #2c2c2c;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8), rgba(255, 255, 255, 0.05) calc((100% - 1px) / 8 + 1px));
}
@media screen and (max-width: 960px) {
  .sec08 {
    padding: 10rem 0;
  }
}

.sec08__watermark {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  display: block;
  width: 70rem;
  height: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 960px) {
  .sec08__watermark {
    display: none;
  }
}

.sec08__inner {
  position: relative;
  z-index: 1;
  max-width: 192rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sec08__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 24rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .sec08__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 2rem;
  }
}

.sec08__head-text {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  color: #ffffff;
}
@media screen and (max-width: 960px) {
  .sec08__head-text {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec08__head-text {
    width: 100%;
  }
}

.sec08__head-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 480px) {
  .sec08__head-title {
    gap: 1.2rem;
  }
}

.sec08__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec08__en {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec08__en {
    font-size: 3.2rem;
  }
}

.sec08__ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .sec08__ja {
    font-size: 2.2rem;
  }
}

.sec08__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .sec08__lead {
    font-size: 1.5rem;
  }
}

.sec08__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.6rem;
  min-width: 0;
  max-width: 100%;
  padding-bottom: 0.8rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.sec08__tag {
  flex: 0 0 auto;
  padding: 0.4rem 1.6rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  color: #313131;
  white-space: nowrap;
}

.sec08__cards {
  display: flex;
  width: 100%;
  position: relative;
}
.sec08__cards.swiper-initialized {
  display: block;
}
.sec08__cards .swiper-wrapper {
  display: flex;
}
.sec08__cards .swiper-slide {
  height: auto;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec08__cards {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .sec08__cards {
    margin-bottom: 6rem;
    overflow: visible;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec08__cards:not(.swiper-initialized) {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .sec08__cards:not(.swiper-initialized) {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

.sec08__card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 1.5rem 1.6rem;
  border: 1px solid #4a4a4a;
  border-left: none;
  transition: background-color 0.3s ease;
}
.sec08__card:first-child {
  border-left: 1px solid #4a4a4a;
}
.sec08__card:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 480px) {
  .sec08__card {
    flex: 0 0 26rem;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec08__cards:not(.swiper-initialized) .sec08__card {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 480px) {
  .sec08__cards:not(.swiper-initialized) .sec08__card {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: center;
  }
}
.swiper-initialized .sec08__card {
  display: flex !important;
  flex: none;
  height: 100%;
}

.sec08__slick-arrow {
  display: none;
  position: absolute;
  bottom: -6rem;
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec08__slick-arrow {
    display: block;
  }
}
.sec08__slick-arrow img {
  width: 100%;
  height: 100%;
}
.sec08__slick-arrow--prev {
  left: calc(50% - 5.3rem);
}
.sec08__slick-arrow--prev img {
  transform: rotate(-90deg);
}
.sec08__slick-arrow--next {
  right: calc(50% - 5.3rem);
}
.sec08__slick-arrow--next img {
  transform: rotate(90deg);
}
.sec08__slick-arrow:hover {
  opacity: 0.6;
}
.sec08__slick-arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.sec08__card-img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sec08__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec08__card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.sec08__card-img--placeholder img {
  width: auto;
  height: 40%;
  object-fit: contain;
}

.sec08__card-body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 0 0.8rem;
}

.sec08__card-meta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.sec08__card-date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #ffffff;
}

.sec08__card-cat {
  padding: 0.4rem 1.6rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  color: #313131;
  white-space: nowrap;
}

.sec08__card-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 10.8rem;
}

.sec08__more {
  display: flex;
  justify-content: flex-end;
  padding-right: 24rem;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sec08__more {
    justify-content: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .sec08__more {
    width: 100%;
    padding: 0 2rem;
  }
  .sec08__more .btn-wh {
    width: 100%;
    min-height: 6.6rem;
  }
}

.sec09 {
  padding: 16rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .sec09 {
    padding: 10rem 0;
  }
}

.sec09__inner {
  display: flex;
  gap: 17rem;
  max-width: 192rem;
  margin: 0 auto;
  padding: 0 6rem;
}
@media screen and (max-width: 960px) {
  .sec09__inner {
    flex-direction: column;
    gap: 5rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec09__inner {
    padding: 0 2rem;
  }
  .sec09__inner .sec09__aside {
    display: contents;
  }
  .sec09__inner .sec09__head {
    order: 1;
  }
  .sec09__inner .sec09__list {
    order: 2;
  }
  .sec09__inner .sec09__aside .btn-wh {
    order: 3;
    margin-top: 1rem;
  }
}

.sec09__aside {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .sec09__aside {
    gap: 4rem;
  }
}

.sec09__head {
  color: #313131;
  letter-spacing: 0.32rem;
}

.sec09__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.sec09__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #e5e5e5;
  color: #313131;
  transition: opacity 0.3s ease;
}
.sec09__item:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .sec09__item {
    padding: 1.6rem 0;
    gap: 0;
  }
}

.sec09__item-main {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}

.sec09__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

.sec09__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 480px) {
  .sec09__title {
    white-space: normal;
  }
}

.sec09__arrow {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}

/* CSS Document */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Home
  - Loading
  - Basic
  - MainVisual
  - News
--------------------------------------------------------------*/
/* Color
--------------------------------------------- */
/* Fonts
--------------------------------------------- */
/* Mixin
--------------------------------------------- */
/* Loading
--------------------------------------------- */
#loading {
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100vw;
  height: 100vh;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  /* video */
}
#loading .load {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(231, 231, 231);
  background: linear-gradient(360deg, rgb(231, 231, 231) 0%, rgb(249, 249, 249) 50%, rgb(231, 231, 231) 100%);
}
#loading .video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
#loading .video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #loading .video {
    width: auto;
    height: 55%;
    min-width: 0;
    min-height: 0;
  }
}

/* Basic
--------------------------------------------- */
.h2_txt {
  display: block;
  margin-bottom: 2.5rem;
  color: #313131;
  font-size: 66px;
  font-weight: 300;
  font-family: "Montserrat";
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .h2_txt {
    font-size: 50px;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .h2_txt {
    font-size: 9.6vw;
  }
}

.h2_ttl {
  display: block;
  opacity: 0;
  width: fit-content;
  margin-bottom: 1.5rem;
  color: #313131;
  font-size: 66px;
  font-weight: 300;
  font-family: "Montserrat";
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .h2_ttl {
    font-size: 50px;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .h2_ttl {
    font-size: 9.6vw;
  }
}
.h2_ttl span {
  display: block;
  color: #A3A3A3;
  font-size: 24px;
  text-align: left;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .h2_ttl span {
    font-size: 21px;
  }
}
@media only screen and (max-width: 480px) {
  .h2_ttl span {
    font-size: 4.2vw;
  }
}

/* News
--------------------------------------------- */
.news .inner13 {
  padding-top: 134px;
  padding-bottom: 134px;
}
@media only screen and (max-width: 768px) {
  .news .inner13 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.news__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .news__inner {
    flex-wrap: wrap;
  }
}
.news__ttl {
  width: 325px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .news__ttl {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.news__ttl .news__link {
  margin-top: 55px;
}
.news__ttl .news__link-btn {
  display: block;
  width: 100%;
  max-width: 325px;
  margin: auto;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #313131;
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .news__ttl .news__link-btn {
    letter-spacing: 0.05em;
  }
}
.news__ttl .news__link-btn:hover {
  background: #313131;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
.news__item {
  width: calc(100% - 325px - 60px);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .news__item {
    width: 100%;
  }
}
.news__item .news__link {
  margin-top: 2.5rem;
}
.news__item .news__link-btn {
  display: block;
  width: 100%;
  max-width: 325px;
  margin: auto;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #313131;
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .news__item .news__link-btn {
    letter-spacing: 0.05em;
  }
}
.news__item .news__link-btn:hover {
  background: #313131;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
.news__listItem {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E5E5;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .news__listItem {
    padding-bottom: 1rem;
    font-size: 16px;
  }
}
.news__listItem time {
  display: block;
  margin-bottom: 10px;
  color: #9B9B9B;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .news__listItem time {
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
