@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #14A69A;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

.l-info {
  margin-top: 9.25rem;
}
@media screen and (min-width: 768px) {
  .l-info {
    margin-top: 14.375rem;
  }
}

.l-works {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-works {
    margin-top: 14.375rem;
  }
}

.p-header {
  position: absolute;
  top: 1rem;
  left: 1.125rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-header {
    top: 3.375rem;
    left: 3.6875rem;
  }
}

.p-header__title {
  width: 4.875rem;
  aspect-ratio: 78/52;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    width: 12rem;
  }
}

.p-header__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-info-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) {
  .p-info-list {
    gap: 3.75rem;
  }
}

.p-info-list__item a {
  display: block;
  height: 100%;
}

.p-info-list__item-img {
  width: 100%;
  padding: 0 0.875rem;
  aspect-ratio: 84/84;
}
@media screen and (min-width: 768px) {
  .p-info-list__item-img {
    padding: 0;
  }
}

.p-info-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.p-info-list__item-title {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
}
@media screen and (min-width: 768px) {
  .p-info-list__item-title {
    margin-top: 0.625rem;
    font-size: 1.1875rem;
  }
}

.p-info-list__item-text {
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .p-info-list__item-text {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-info {
  background-color: #fff;
  color: #000;
  padding: 1.875rem 0 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding: 3.25rem 0 4.6875rem;
  }
}

.p-info__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-info__inner {
    padding: 0 1.5625rem;
    max-width: 40.625rem;
  }
}

.p-info__title {
  margin: auto;
  text-align: center;
  font-size: 1.9375rem;
  text-transform: uppercase;
  color: #14A69A;
}
@media screen and (min-width: 768px) {
  .p-info__title {
    font-size: 3.1875rem;
    letter-spacing: 0.08em;
  }
}

.p-info__title img {
  margin: auto;
}

.p-info__list {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-info__list {
    margin-top: 3.75rem;
  }
}

.p-main {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-main {
    padding-bottom: 12.25rem;
  }
}

.p-mv__img-wrap {
  position: relative;
}

.p-mv__img {
  aspect-ratio: 375/512;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    aspect-ratio: 1440/911;
  }
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__text-wrap {
  position: absolute;
  bottom: -8.5333333333vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 39.375rem;
  padding: 0 0.9375rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-mv__text-wrap {
    bottom: -5vw;
    max-width: 85rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

.p-mv__title-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    width: 60.4166666667vw;
  }
}

.p-mv__title-text {
  display: block;
  width: 100%;
  aspect-ratio: 282/199;
}

.p-mv__title-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__ticket-wrap {
  margin-top: 17.0666666667vw;
  padding: 0 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__ticket-wrap {
    width: 29.4444444444vw;
    padding: 0;
    margin: 0 1.25rem 0.625rem 2.875rem;
  }
}

.p-mv__ticket-text {
  display: block;
  width: 100%;
  /* aspect-ratio: 424/338; */
}

.p-mv__ticket-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__ticket-text {
  animation: dokidoki 1.5s infinite;
}

@keyframes dokidoki {
  0% {
    transform: scale(1.05);
  }
  5% {
    transform: scale(1);
  }
  95% {
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
  }
}
.p-reverse {
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.25rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-reverse {
    left: initial;
    right: 0.625rem;
    transform: none;
    top: 0.625rem;
    bottom: initial;
    gap: 0;
  }
}

.p-reverse__img {
  width: 11.3125rem;
  aspect-ratio: 181/54;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-reverse__img {
    aspect-ratio: 1/1;
  }
}

.p-reverse__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-works-list__item {
    display: flex;
    align-items: flex-start;
  }
}

.p-works-list__item + .p-works-list__item {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__item + .p-works-list__item {
    margin-top: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works-list__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.p-works-list__item-img {
  position: relative;
  width: calc(100% + 2.3125rem);
  aspect-ratio: 342/258;
  aspect-ratio: 580/609;
  margin-left: calc(50% - 50vw + var(--scrollbar) / 2);
}
@media screen and (min-width: 768px) {
  .p-works-list__item-img {
    width: 36.25rem;
    max-width: 52.7272727273%;
    aspect-ratio: 580/609;
  }
}
@media screen and (min-width: 1450px) {
  .p-works-list__item-img {
    margin-left: -10.625rem;
  }
}

.p-works-list__item-img::before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 0;
  width: calc(100% + 0.875rem);
  height: 100%;
  background: #96926B;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-img::before {
    top: 1.5625rem;
    width: calc(100% + 1.5625rem);
  }
}

.p-works-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-list__item:nth-of-type(even) .p-works-list__item-img {
  margin-right: calc(50% - 50vw + var(--scrollbar) / 2);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-works-list__item:nth-of-type(even) .p-works-list__item-img {
    margin-left: 0;
  }
}
@media screen and (min-width: 1450px) {
  .p-works-list__item:nth-of-type(even) .p-works-list__item-img {
    margin-right: -10.625rem;
  }
}

.p-works-list__item:nth-of-type(even) .p-works-list__item-img::before {
  left: -0.875rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__item:nth-of-type(even) .p-works-list__item-img::before {
    left: 1.5625rem;
    top: 1.5625rem;
    width: calc(100% - 1.5625rem);
  }
}
@media screen and (min-width: 1450px) {
  .p-works-list__item:nth-of-type(even) .p-works-list__item-img::before {
    width: calc(100% + 1.5625rem);
    left: -1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works-list__item:nth-of-type(even) .p-works-list__item-content {
    margin-right: 3.3125rem;
    margin-left: 0;
  }
}

.p-works-list__item-content {
  margin-top: 2.4375rem;
  max-width: 38.4375rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-content {
    max-width: 57.2727272727%;
    margin-top: 0;
    margin-left: 4.8125rem;
    padding: 0.4375rem 0rem 2.1875rem;
  }
}

.p-works-list__item-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.1875rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.55;
  min-height: 6.125rem;
  border-top: 0.1875rem solid #fff;
  border-bottom: 0.1875rem solid #fff;
  padding: 1.125rem 0;
}

.p-works-list__item-title span{
  display: contents;
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-works-list__item-title {
    padding: 1.875rem 0;
    margin-right: 1.5rem;
    font-size: 2.125rem;
    min-height: 11.625rem;
    border-top: 0.3125rem solid #fff;
    border-bottom: 0.3125rem solid #fff;
  }
}
@media screen and (min-width: 1400px) {
  .p-works-list__item-title {
    font-size: 2.375rem;
  }
}

.p-works-list__item-title::before {
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -3.75rem;
  right: -2.1875rem;
  width: 5.75rem;
  aspect-ratio: 92/104;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-title::before {
    top: -64.8054145516%;
    right: -15.7360406091%;
    width: 29.10321489%;
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__item-title::before {
    top: -58.0372250423%;
    right: -15.7360406091%;
    width: 29.10321489%;
  }
}

@media screen and (min-width: 768px) {
  .p-works-list__item:nth-child(even) .p-works-list__item-title::before {
    right: -6.7681895093%;
  }
}

.p-works-list__item:nth-child(1) .p-works-list__item-title::before {
  background-image: url(../images/common/img-01.svg);
}

.p-works-list__item:nth-child(2) .p-works-list__item-title::before {
  background-image: url(../images/common/img-02.svg);
}

.p-works-list__item:nth-child(3) .p-works-list__item-title::before {
  background-image: url(../images/common/img-03.svg);
}

.p-works-list__item:nth-child(4) .p-works-list__item-title::before {
  background-image: url(../images/common/img-04.svg);
}

.p-works-list__item-text {
  margin-top: 1.6875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-text {
    margin-top: 3.25rem;
    font-size: 1.375rem;
  }
}

.p-works-list__item-btn-wrap {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-top: 3rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-btn-wrap {
    /* margin-top: 7.25rem; */
    margin-right: 1.5rem;
    text-align: right;
  }
}

.p-works-list__item-btn {
  padding: 0.375rem 0;
  text-align: center;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 2;
  text-transform: uppercase;
  border: 2px solid #fff;
  background-color: transparent;
  transition: 0.3s;
  width: 11.0625rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-btn {
    width: 18.5625rem;
    padding: 0.5625rem 0;
    font-size: 1.375rem;
  }
}

.p-works-list__item-btn + .p-works-list__item-btn {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-btn + .p-works-list__item-btn {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works-list__item-btn:hover {
    color: #14A69A;
    background-color: #fff;
    opacity: 1;
  }
}

.p-works-list__banner {
  margin-top: 1.875rem;
  aspect-ratio: 313/64;
}
@media screen and (min-width: 768px) {
  .p-works-list__banner {
    margin-top: 3.5rem;
    aspect-ratio: 591/120;
  }
}

.p-works-list__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-works {
  color: #fff;
}

.p-works__inner {
  margin: auto;
  padding: 0 2.1875rem;
  max-width: 41.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-works__inner {
    padding: 0 6.25rem;
    max-width: 81.625rem;
  }
}

.js-scroll-to-top.active,
.js-scroll-to-top--delay.active {
  transform: translateY(0px) scale(1);
  opacity: 1;
}

.js-scroll-to-top,
.js-scroll-to-top--delay {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  will-change: auto;
  transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-property: opacity, transform;
}

.slick-list {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

.p-mv, body, html {
  height: 100%;
  /*高さを100%にして描画エリアをとる*/
}

#particles-js {
  position: fixed; /*描画固定*/
  position: absolute;
  /*描画固定*/
  z-index: 2; /*描画を一番下に*/
  width: 100%;
  height: 100%;
}

#wrapper {
  position: relative; /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 1; /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */


/* ページトップボタンリンク非表示、クリックでテキスト表示　20251014 */
.p-reverse__img {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.p-reverse__img .reserve-text {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
  display: none;
}

