:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #FFF100;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  background-color: #fff;
  color: #1E1E1E;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
}

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;
}

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%;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__skew {
  animation-name: imageSkew;
}

.animate__skew2 {
  animation-name: imageSkew2;
}

.animate__skew3 {
  animation-name: imageSkew3;
}

.animate__fadeUp {
  animation-name: fadeUp;
}

.animate__imageLTR {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation-name: imageLTR;
}

.animate__imageRTL {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  animation-name: imageRTL;
}

@keyframes sliderRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes imageSkew {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@keyframes imageSkew2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes imageSkew3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes imageLTR {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes imageRTL {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes animateShake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes animateShake2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.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: 1;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  transition: 0.3s ease;
}
.btn-primary:not(.disabled):hover {
  opacity: 0.7;
}
.btn-primary img {
  width: 13.5rem;
}

.hover {
  transition: 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}

.l-wrapper {
  background: url("../images/midi_pc_bg.webp") no-repeat center/cover;
  background-attachment: fixed;
  min-height: 100vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-wrapper {
    display: grid;
    grid-template-columns: 37.5rem 1fr;
    overflow: visible;
  }
}
@media (min-width: 1200px) {
  .l-wrapper {
    grid-template-columns: 1fr 37.5rem 1fr;
  }
}

.l-main {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.l-side {
  position: relative;
  padding-inline: 6rem;
}
@media (max-width: 767px) {
  .l-side {
    display: none;
  }
}
.l-side.l-side--left {
  padding-inline: 0;
}
@media (max-width: 1199px) {
  .l-side.l-side--left {
    display: none;
  }
}
.l-side__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-inline: 1.5rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}
.l-side__copy img {
  width: 61.7rem;
}
.l-side__nav {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 49.6rem;
  margin: 0 auto;
  padding: 3rem 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}
.l-side__ttl {
  margin-bottom: 3.2rem;
  text-align: center;
}
.l-side__ttl img {
  width: 49.6rem;
}
.l-side__list {
  display: grid;
  gap: 6rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 4rem;
}
.l-side__list-item {
  display: grid;
  grid-template-columns: 32.323% 1fr;
  gap: 1rem;
  align-items: center;
}
.l-side__list-img {
  max-width: 12.4rem;
}
.l-side__logo {
  margin: 3.2rem auto 0;
  width: 20.9677%;
}
.l-side__logo img {
  width: 100%;
}

.p-header {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 10;
}
.p-header img {
  width: 5.4rem;
}

.p-mv {
  margin-bottom: 4rem;
  position: relative;
}
.p-mv__media video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
.p-mv__txt {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
}
.p-mv__txt img {
  width: 31.7rem;
}
.p-mv__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-mv__scroll::after {
  content: "";
  background-color: var(--color-primary);
  height: 4.8rem;
  width: 1px;
}

.p-about {
  margin-bottom: 7.1rem;
}
.p-about__ttl {
  margin-bottom: 2rem;
  padding-inline: 2.4rem;
  text-align: center;
}
.p-about__ttl img {
  width: 100%;
}
.p-about__txt {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 3.7rem;
  text-align: center;
}
.p-about__img {
  position: relative;
}
.p-about__img::after {
  content: "";
  background-color: var(--color-primary);
  height: 0.8rem;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  right: 0;
  z-index: 1;
}

.style-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.3rem;
}
.style-info__txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.style01 {
  margin-bottom: 12rem;
}
.style01-article {
  margin-bottom: 7.1rem;
  position: relative;
  padding-inline: 2.5rem;
}
.style01-article__head {
  position: absolute;
  left: 3rem;
  top: 2.6rem;
  width: 7.5rem;
  z-index: 1;
}
.style01-article .style-info {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-inline: 0.5rem;
}
.style01-ph01 {
  margin-bottom: 0.6rem;
  position: relative;
}
.style01-ph01__wrap {
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
  margin-bottom: 2rem;
  padding-inline: 1.5rem;
}
.style01-ph01__media {
  width: 24.8rem;
}
.style01-ph01__label {
  width: 2.2rem;
}
.style01-ph01__img {
  animation: animateShake 2s steps(1) infinite;
  position: absolute;
  top: 1.6rem;
  right: -1.9rem;
  width: 22.6rem;
  z-index: 2;
}
.style01-ph01__txt {
  margin-top: 2rem;
  padding-inline: 1rem;
}
.style01-ph01__txt img {
  width: 21.3rem;
}
.style01-ph02 {
  padding-inline: 1.5rem;
  position: relative;
}
.style01-ph02__label {
  position: absolute;
  left: 2.7rem;
  top: -0.6rem;
  width: 2.2rem;
}
.style01-ph02__img {
  animation: animateShake2 2s 0.3s steps(1) infinite;
  position: absolute;
  top: 5.7rem;
  left: 1.5rem;
  width: 14.5rem;
  z-index: 1;
}

.style02 {
  margin-bottom: 11.9rem;
}
.style02-article {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 5rem;
}
.style02-article__media {
  margin-left: -2.6rem;
  position: relative;
  width: 35.2rem;
}
.style02-article__head {
  position: absolute;
  top: 2.6rem;
  right: 2.5rem;
  width: 7.5rem;
  z-index: 1;
}
.style02-article__label {
  margin-bottom: -0.8rem;
}
.style02-article__label img {
  width: 1.7rem;
}
.style02-prod {
  display: flex;
  gap: 1.5rem;
  padding-inline: 1.5rem;
}
.style02-prod.style02-prod--reverse {
  align-items: flex-end;
  flex-direction: row-reverse;
  margin-top: -6.8rem;
}
.style02-prod.style02-prod--reverse .style02-prod__img::before {
  left: auto;
  right: -0.4rem;
}
.style02-prod__img {
  position: relative;
  width: 16.5rem;
}
.style02-prod__img::before {
  content: "";
  background-color: var(--color-primary);
  width: 0.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.4rem;
  z-index: 1;
}
.style02-gallery {
  margin-block: 9rem 3.7rem;
  padding-inline: 3rem;
}
.style02-gallery__item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.style02-gallery__item:last-child {
  margin-bottom: 0;
}
.style02-gallery__item:nth-child(even) {
  flex-direction: row-reverse;
}
.style02-gallery__label {
  flex-shrink: 0;
  width: 1rem;
}
.style02-gallery__media {
  overflow: hidden;
}
.style02-gallery__media img {
  width: 26.3rem;
}
.style02-ph img {
  width: 100%;
}

.style03 {
  margin-bottom: 12.3rem;
}
.style03-article {
  margin-bottom: 1.8rem;
  position: relative;
}
.style03-article__head {
  position: absolute;
  left: 2.6rem;
  top: 0.2rem;
  width: 7.5rem;
  z-index: 1;
}
.style03-article__img img {
  width: 100%;
}
.style03-item {
  margin-bottom: 7.2rem;
}
.style03-item:last-child {
  margin-bottom: 0;
}
.style03-item.style03-item--reverse {
  flex-direction: row-reverse;
}
.style03-item.style03-item--reverse .style03-item__media {
  text-align: left;
}
.style03-item.style03-item--reverse .style03-item__main {
  flex-direction: row-reverse;
}
.style03-item.style03-item--reverse .style03-item__img::before {
  left: auto;
  right: -0.4rem;
}
.style03-item__label {
  margin-left: -1.6rem;
  margin-bottom: -2.6rem;
}
.style03-item__label img {
  width: 23.6rem;
}
.style03-item__media {
  padding-inline: 3rem;
  text-align: right;
}
.style03-item__media img {
  width: 27rem;
}
.style03-item__main {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  margin-top: -2rem;
  padding-inline: 1.8rem;
}
.style03-item__img {
  position: relative;
  width: 18.5rem;
}
.style03-item__img::before {
  content: "";
  background-color: var(--color-primary);
  width: 0.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.4rem;
  z-index: 1;
}

.style04 {
  overflow: hidden;
  margin-bottom: 11.8rem;
  padding-top: 0.8rem;
}
.style04-article {
  margin-bottom: 6.1rem;
  position: relative;
}
.style04-article__head {
  position: absolute;
  left: 1.2rem;
  top: 1.9rem;
  width: 7.5rem;
  z-index: 1;
}
.style04-article__gallery {
  display: flex;
  position: relative;
}
.style04-article__gallery::before, .style04-article__gallery::after {
  content: "";
  background-color: var(--color-primary);
  height: 0.8rem;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.style04-article__gallery::before {
  top: -0.4rem;
}
.style04-article__gallery::after {
  bottom: -0.4rem;
}
.style04-article__gallery .wrap {
  display: flex;
  flex-shrink: 0;
  animation: sliderRTL 10s linear infinite;
}
.style04-article__img {
  flex-shrink: 0;
  width: 27rem;
}
.style04-article__img img {
  aspect-ratio: 271/406;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.style04-article__txt {
  position: absolute;
  right: 0.8rem;
  bottom: -5.2rem;
  z-index: 2;
}
.style04-article__txt img {
  width: 20.6rem;
}
.style04-item {
  margin-bottom: 4.8rem;
  position: relative;
}
.style04-item:last-child {
  margin-bottom: 0;
}
.style04-item.style04-item--reverse {
  flex-direction: row-reverse;
}
.style04-item.style04-item--reverse .style04-item__main {
  flex-direction: row-reverse;
}
.style04-item.style04-item--reverse .style04-item__media::before {
  left: auto;
  right: 0;
}
.style04-item.style04-item--reverse .style-info {
  padding-left: 16.3rem;
}
.style04-item__label {
  position: absolute;
  top: 4.1rem;
  right: 3.4rem;
  width: 9.2rem;
}
.style04-item__main {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.4rem;
}
.style04-item__media {
  position: relative;
  width: 22.7rem;
}
.style04-item__media::before {
  content: "";
  background-color: var(--color-primary);
  width: 0.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.style04-item__img {
  margin-bottom: -5.7rem;
  width: 15.6rem;
}
.style04-item .style-info {
  padding-inline: 1.5rem;
}
.style04-btn {
  display: block;
  margin: 8.8rem auto 0;
  width: 18.2rem;
}
.style04-btn img {
  width: 100%;
}

.p-movie {
  padding-inline: 1.5rem;
}
.p-movie__head {
  margin-bottom: 1.5rem;
  text-align: center;
}
.p-movie__ttl {
  margin-bottom: 1.4rem;
}
.p-movie__ttl img {
  width: 19.8rem;
}
.p-movie__txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-movie__media {
  position: relative;
}
.p-movie__media iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}
.p-movie__btn {
  background: url("../images/icon_play.svg") no-repeat center/contain;
  cursor: pointer;
  position: absolute;
  height: 6.4rem;
  width: 6.4rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-footer {
  background: url("../images/footer_bg.webp") no-repeat center/cover;
  margin-top: 6rem;
  padding: 4rem 3rem 1.4rem;
  position: relative;
}
.p-footer::after {
  content: "";
  background-color: var(--color-primary);
  height: 0.8rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.p-footer__txt {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.667;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-footer__sns {
  display: flex;
  justify-content: center;
  gap: 1.7rem;
  margin-top: 3rem;
}
.p-footer .copyright {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 3.2rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */