@charset "UTF-8";
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
- webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  color: #000;
  font-size: 2.4vw;
  line-height: 1;
  background-color: #FAF9F7;
  overflow-x: hidden;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 9px;
    background-color: #00562D;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}

img {
  display: block;
  width: 100%;
}

body {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
}

@media screen and (min-width: 751px) {
  .l-fixedLogo {
    width: max(10vw, 100px);
    position: fixed;
    top: 2.0833333333vw;
    left: 2.0833333333vw;
  }
}

.l-container {
  background-color: #FAF9F7;
}
@media screen and (min-width: 751px) {
  .l-container {
    width: 375px;
    margin-inline: auto;
  }
}

.p-firstView {
  width: 100%;
  height: 100svh;
}
.p-firstView__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-firstView__video * {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
}

.p-lead {
  padding: 8vw 0 18.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-lead {
    padding: 30px 0 70px;
  }
}
.p-lead__text {
  text-align: center;
  line-height: 2.78;
}

.p-contents__title {
  padding-bottom: 1vw;
  font-size: 8.2666666667vw;
  font-family: minerva-modern, sans-serif;
  text-align: center;
  line-height: 0.8;
  border-bottom: 0.5px solid #000;
}
@media screen and (min-width: 751px) {
  .p-contents__title {
    padding-bottom: 4px;
    font-size: 31px;
  }
}
.p-contents__list {
  margin-top: 13.3333333333vw;
  display: flex;
  flex-wrap: wrap;
  row-gap: 26.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-contents__list {
    margin-top: 50px;
    row-gap: 100px;
  }
}
.p-contents__list li {
  width: 50%;
}
.p-contents__slide {
  position: relative;
}
.p-contents__slideTitle {
  font-size: 11.2vw;
  font-family: lust, serif;
  text-align: center;
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 751px) {
  .p-contents__slideTitle {
    font-size: 42px;
  }
}
.p-contents__slideAnimation {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
.p-contents__slideAnimation li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
.p-contents__slideAnimation li:not(:nth-child(1)) {
  display: none;
}
.p-contents__flower {
  margin-top: 3.7333333333vw;
  color: #211815;
  font-size: 1.8666666667vw;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-contents__flower {
    margin-top: 14px;
    font-size: 7px;
  }
}
.p-contents__flower::after {
  content: "／";
  position: absolute;
  bottom: -200%;
  left: 50%;
  transform: translateX(-50%);
}
.p-contents__credit {
  width: 43.2vw;
  margin: 3.3333333333vw 0 auto 2.6666666667vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 751px) {
  .p-contents__credit {
    width: 162px;
    margin: 12.5px 0 auto 10px;
  }
}
.p-contents__word {
  color: #211815;
  font-size: 1.8666666667vw;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .p-contents__word {
    font-size: 7px;
  }
}
.p-contents__link {
  width: 11.6vw;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.0666666667vw;
  border-radius: 9999px;
}
@media screen and (min-width: 751px) {
  .p-contents__link {
    width: 43.5px;
    font-size: 11.5px;
  }
}
.p-contents__link:active {
  background-color: transparent;
}
@media screen and (min-width: 751px) {
  .p-contents__link:hover {
    background-color: transparent;
  }
}

.p-collabo {
  margin-top: 32vw;
}
@media screen and (min-width: 751px) {
  .p-collabo {
    margin-top: 120px;
  }
}
.p-collabo__title {
  padding-bottom: 4vw;
  font-size: 8.2666666667vw;
  font-family: minerva-modern, sans-serif;
  text-align: center;
  line-height: 0.8;
  border-bottom: 0.5px solid #000;
}
@media screen and (min-width: 751px) {
  .p-collabo__title {
    padding-bottom: 15px;
    font-size: 31px;
  }
}
.p-collabo__image {
  width: 80vw;
  margin: 8.4vw auto 0;
}
@media screen and (min-width: 751px) {
  .p-collabo__image {
    width: 300px;
    margin-top: 31.5px;
  }
}
.p-collabo__text {
  margin-top: 6.8vw;
  text-align: center;
  line-height: 2.8;
}
@media screen and (min-width: 751px) {
  .p-collabo__text {
    margin-top: 25.5px;
  }
}
.p-collabo__link {
  width: 30.1333333333vw;
  height: 9.6vw;
  margin: 8.8vw auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3.4666666667vw;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-collabo__link {
    width: 113px;
    height: 36px;
    margin-top: 33px;
    font-size: 13px;
  }
}
.p-collabo__link:active {
  color: #000;
  background-color: transparent;
}
@media screen and (min-width: 751px) {
  .p-collabo__link:hover {
    color: #000;
    background-color: transparent;
  }
}

.p-footer {
  margin-inline: auto;
  padding: 26.6666666667vw 10vw 10.6666666667vw;
  background-color: #FAF9F7;
}
@media screen and (min-width: 751px) {
  .p-footer {
    width: 375px;
    margin-inline: auto;
    padding: 100px 37.5px 40px;
  }
}
.p-footer__link {
  margin-top: 6.9333333333vw;
  display: flex;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-footer__link {
    margin-top: 26px;
    gap: 25px;
  }
}
.p-footer__link li a {
  display: flex;
  align-items: center;
  gap: 1.3333333333vw;
  font-size: 3.2vw;
  font-family: sofia-pro, sans-serif;
}
@media screen and (min-width: 751px) {
  .p-footer__link li a {
    gap: 5px;
    font-size: 12px;
  }
}
.p-footer__link li a:active {
  opacity: 0.6;
}
@media screen and (min-width: 751px) {
  .p-footer__link li a:hover {
    opacity: 0.6;
  }
}
.p-footer__arrow {
  width: 1.7333333333vw;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 751px) {
  .p-footer__arrow {
    width: 6.5px;
  }
}
.p-footer__copy {
  margin-top: 9.3333333333vw;
  display: inline-block;
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 751px) {
  .p-footer__copy {
    margin-top: 35px;
    font-size: 8px;
  }
}

@media screen and (min-width: 751px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.yellow {
  background-color: #FFE971;
  border: 1px solid #FFE971;
}

.green {
  background-color: #9ED4A4;
  border: 1px solid #9ED4A4;
}

.blue {
  background-color: #AFE7F0;
  border: 1px solid #AFE7F0;
}/*# sourceMappingURL=app.css.map */