@charset "UTF-8";
:root {
  --font-family-base: "Noto Sans", sans-serif;
  --font-en: "Barlow", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-warning: #f00;
  --color-body: #000;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 10px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, " 游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  font-weight: 400;
}
@media (min-width: 768px) {
  body {
    min-width: 1280px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 123rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

.animate_animated {
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate-imageScale {
  animation-name: imageScale;
}

.fadeUp {
  animation-name: fadeUp;
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding-inline: 2.8rem;
  background-color: #5C5A5A;
  color: #FFF;
  line-height: 1.6923076923;
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .btn-primary {
    transition: 0.3s opacity;
    line-height: 1.7142857143;
    font-size: 1.4rem;
  }
  .btn-primary:hover {
    opacity: 0.8;
  }
}
.btn-primary::after {
  display: inline-block;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon_arrow_01.svg") no-repeat center;
  background-size: 1rem auto;
  transform: translateY(-50%);
  content: "";
}

.hline01 {
  margin-bottom: 2.2rem;
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 1.2777777778;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #000;
}
@media (min-width: 768px) {
  .hline01 {
    margin-bottom: 6.5rem;
    font-size: 6rem;
  }
}

.p-ex__inner, .p-strap__inner, .p-feat__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.75rem;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.cover-fit {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.style-animated {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

@media (max-width: 767px) {
  .l-header + .l-main {
    padding-top: 0 !important;
  }
}
.l-header + .l-main .p-mv {
  height: 100vh;
}
@media (min-width: 768px) {
  .l-header + .l-main .p-mv {
    height: calc(100vh - 11rem);
  }
}

.l-main {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  word-break: normal;
}

.p-mv {
  position: relative;
  height: 100vh;
  background-color: #000;
}
@media (min-width: 768px) {
  .p-mv {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .p-mv__image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}
.p-mv__logo {
  width: 13rem;
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-mv__logo {
    width: 20.8rem;
    top: 7.3rem;
    left: 11rem;
    right: 0;
    margin-inline: 0;
  }
}
.p-mv__content {
  position: absolute;
  bottom: 13.3rem;
  left: 0;
  right: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-mv__content {
    top: calc(50% - 2.6rem);
    transform: translateY(-50%);
    right: 23.90625%;
    bottom: auto;
    left: 23.90625%;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-mv__ttl {
  color: #FFF;
  line-height: 1.3125;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-mv__ttl {
    line-height: 1.9444444444;
  }
}
.p-mv__ttl .sub-1 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-mv__ttl .sub-1 {
    font-size: 3.6rem;
  }
}
.p-mv__ttl .sub-2 {
  font-size: 1.4rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-mv__ttl .sub-2 {
    font-size: 2.1rem;
    top: -0.5rem;
    left: 0.1rem;
  }
}
.p-mv__txt {
  margin-top: 1.5rem;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-mv__txt {
    font-size: 1.7rem;
    line-height: 1.9444444444;
    margin-top: 0.6rem;
  }
}
.p-mv__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3.2rem;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .p-mv__btns {
    flex-direction: row;
    margin-top: 8.5rem;
    gap: 2rem;
  }
}
.p-mv__btns a {
  width: 18.5rem;
}
.p-mv--btns::after {
  display: none;
}
.p-mv--btns .p-mv__content {
  bottom: 3.2rem;
}
@media (min-width: 768px) {
  .p-mv--btns .p-mv__content {
    top: calc(50% + 3.4rem);
  }
}
.p-mv__scroll {
  width: 1px;
  height: 10rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-mv__scroll {
    display: none;
  }
}
.p-mv__scroll .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 10rem;
  margin: auto;
  background-color: #fff;
  animation: scrollbarMv 3s ease-in-out infinite;
}

@keyframes scrollbarMv {
  0% {
    height: 10rem;
    opacity: 0;
  }
  30% {
    height: 10rem;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .p-bnr {
    margin-top: 0.4rem;
  }
}
.p-bnr__item {
  position: relative;
}
.p-bnr__item-content {
  position: absolute;
}
@media (max-width: 767px) {
  .p-bnr__item-content {
    right: 0;
    left: 0;
  }
}
.p-bnr__item-txt {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-bnr__item-txt {
    font-size: 1.7rem;
    text-align: left;
    letter-spacing: 0.05em;
  }
}
.p-bnr__item--01 {
  aspect-ratio: 375/674;
}
@media (min-width: 768px) {
  .p-bnr__item--01 {
    aspect-ratio: 1381/575;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--01 {
    z-index: 5;
  }
}
@media (min-width: 768px) {
  .p-bnr__item--01 .p-bnr__item-content {
    top: 50%;
    transform: translateY(-50%);
    right: 10rem;
  }
}
@media (min-width: 1280px) {
  .p-bnr__item--01 .p-bnr__item-content {
    top: calc(50% - 9rem);
    right: 18.75%;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--01 .p-bnr__item-content {
    bottom: 1.6rem;
  }
}
.p-bnr__item--02 {
  aspect-ratio: 125/366;
}
@media (min-width: 768px) {
  .p-bnr__item--02 {
    aspect-ratio: 12/5;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--02 {
    z-index: 4;
  }
}
@media (min-width: 768px) {
  .p-bnr__item--02 .p-bnr__item-content {
    top: 50%;
    transform: translateY(-50%);
    left: 5rem;
  }
}
@media (min-width: 1280px) {
  .p-bnr__item--02 .p-bnr__item-content {
    left: 13.5416666667%;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--02 .p-bnr__item-content {
    bottom: 4.1rem;
  }
}
.p-bnr__item--03 {
  aspect-ratio: 125/197;
}
@media (min-width: 768px) {
  .p-bnr__item--03 {
    aspect-ratio: 16/5;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--03 {
    z-index: 4;
  }
}
@media (min-width: 768px) {
  .p-bnr__item--03 .p-bnr__item-content {
    top: 50%;
    transform: translateY(-50%);
    right: 12rem;
  }
}
@media (min-width: 1280px) {
  .p-bnr__item--03 .p-bnr__item-content {
    right: 16.6145833333%;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--03 .p-bnr__item-content {
    bottom: -8rem;
  }
}
.p-bnr__item--04 {
  aspect-ratio: 75/158;
}
@media (min-width: 768px) {
  .p-bnr__item--04 {
    aspect-ratio: 16/5;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--04 {
    z-index: 3;
  }
}
@media (min-width: 768px) {
  .p-bnr__item--04 .p-bnr__item-content {
    top: 50%;
    transform: translateY(-50%);
    left: 5rem;
  }
}
@media (min-width: 1280px) {
  .p-bnr__item--04 .p-bnr__item-content {
    left: 23.9583333333%;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--04 .p-bnr__item-content {
    bottom: 2.9rem;
  }
}
.p-bnr__item--05 {
  aspect-ratio: 375/512;
}
@media (min-width: 768px) {
  .p-bnr__item--05 {
    padding-bottom: 15.5rem;
    aspect-ratio: 192/85;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--05 {
    z-index: 3;
    padding-bottom: 12.9rem;
  }
}
@media (min-width: 768px) {
  .p-bnr__item--05 .p-bnr__item-content {
    top: 4rem;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1280px) {
  .p-bnr__item--05 .p-bnr__item-content {
    top: 8.6rem;
  }
}
@media (max-width: 767px) {
  .p-bnr__item--05 .p-bnr__item-content {
    position: relative;
    top: -10rem;
  }
}
.p-bnr__item--05 .p-bnr__item-txt {
  text-align: center;
}

.p-video {
  max-width: 85rem;
  width: 100%;
  aspect-ratio: 375/667;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-video {
    margin-top: -10rem;
    aspect-ratio: 850/478;
  }
}
.p-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-feat {
  padding-block: 12rem 5.5rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-feat {
    padding-block: 14rem 12rem;
  }
}
.p-feat__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 147.5rem;
}
.p-feat .hline01 {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-feat .hline01 {
    margin-bottom: 8.5rem;
  }
}
.p-feat__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4.5rem;
}
@media (min-width: 768px) {
  .p-feat__list {
    -moz-column-gap: 10rem;
    column-gap: 10rem;
    row-gap: 7rem;
  }
}
.p-feat__item {
  width: 100%;
  animation-duration: 1.5s !important;
}
@media (min-width: 768px) {
  .p-feat__item {
    width: calc((100% - 20rem) / 3);
  }
}
.p-feat__image {
  aspect-ratio: 4/3;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .p-feat__image {
    margin-bottom: 4rem;
  }
}
.p-feat__ttl {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media (min-width: 768px) {
  .p-feat__ttl {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}
.p-feat__txt {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
  text-align: justify;
  color: #000;
}
@media (min-width: 768px) {
  .p-feat__txt {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-strap {
  padding-block: 6rem;
  background-color: #e0e0e0;
}
@media (min-width: 768px) {
  .p-strap {
    padding-block: 6.5rem 6.5rem;
  }
}
.p-strap__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 179.5rem;
}
.p-strap__content {
  display: flex;
  flex-direction: column;
  gap: 4.1rem;
}
@media (min-width: 768px) {
  .p-strap__content {
    flex-direction: row;
    gap: 7.4rem;
    width: 80.7rem;
  }
}
.p-strap__image {
  min-width: 20rem;
  width: 20rem;
  aspect-ratio: 200/202;
  margin-inline: auto;
  margin-bottom: 0.4rem;
}
@media (min-width: 768px) {
  .p-strap__image {
    width: 30rem;
    min-width: 30rem;
    aspect-ratio: 300/303;
  }
}
.p-strap .hline01 {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-strap .hline01 {
    margin-bottom: 4rem;
  }
}
.p-strap__txt {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-strap__txt {
    padding-top: 6rem;
    font-size: 1.5rem;
  }
}

.p-ex {
  padding-block: 0 6.5rem;
  background-color: #000;
}
@media (min-width: 768px) {
  .p-ex {
    padding-block: 12rem 15rem;
    background: url("../images/bg_ex.jpg") no-repeat center/cover;
  }
}
.p-ex__inner {
  display: flex;
  flex-direction: column;
  max-width: 176.5rem;
}
@media (min-width: 768px) {
  .p-ex__inner {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .p-ex__inner {
    padding-inline: 0;
  }
}
@media (min-width: 768px) {
  .p-ex__col-1 {
    width: 30%;
  }
  .p-ex__col-1 img {
    display: none;
  }
}
.p-ex__col-2 {
  order: 3;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-ex__col-2 {
    order: 2;
    width: 40%;
    min-width: 60rem;
    padding-inline: 2rem;
  }
}
.p-ex__col-3 {
  order: 2;
  margin-bottom: 6rem;
  padding-top: 3rem;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-ex__col-3 {
    display: flex;
    justify-content: flex-end;
    order: 3;
    width: 30%;
    margin-bottom: 0;
    padding: 0;
  }
}
.p-ex .hline01 {
  color: #FFF;
  white-space: nowrap;
}
.p-ex__ttl {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-ex__ttl {
    margin-bottom: 3.5rem;
    font-size: 2.1rem;
  }
}
.p-ex__txt {
  font-size: 1.3rem;
  line-height: 1.8461538462;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-ex__txt {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.p-ex__txt.--style-1 {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-ex__txt.--style-1 {
    margin-bottom: 2.5rem;
  }
}
.p-ex__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  min-height: 9.6rem;
  margin-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-ex__btns {
    flex-direction: row;
    gap: 2rem;
    min-height: 4rem;
    margin-top: 6rem;
  }
}
.p-ex__btns .btn-primary {
  width: 24rem;
  min-height: 5.2rem;
}
@media (min-width: 768px) {
  .p-ex__btns .btn-primary {
    width: 18.5rem;
    min-height: 4rem;
  }
}

.splide-ex {
  aspect-ratio: 75/90;
}
@media (min-width: 768px) {
  .splide-ex {
    max-width: 50rem;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.splide-ex__image {
  display: block;
}
.splide-ex .splide__slide {
  cursor: pointer;
}
.splide-ex .splide__pagination {
  display: flex;
  gap: 2.3rem;
  left: 0;
  bottom: -3rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .splide-ex .splide__pagination {
    bottom: -5.3rem;
  }
}
.splide-ex .splide__pagination li {
  padding: 0;
  margin: 0;
}
.splide-ex .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  background-color: #666;
  opacity: 1;
}
.splide-ex .splide__pagination__page.is-active {
  transform: scale(1) !important;
  background-color: #FFF;
}
/*# sourceMappingURL=maps/style.css.map */
