/***
    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: #383838;
  font-size: clamp(13px, 3.5vw, 17px);
  letter-spacing: 0.1em;
  background-color: #FDFDF2;
}

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

img {
  display: block;
}

body {
  font-family: "myriad-pro", sans-serif;
}

.l-credit {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 26vw, 200px);
}
@media screen and (min-width: 800px) {
  .l-credit {
    margin-top: clamp(100px, 26vw, 200px);
  }
}
.l-credit__blue, .l-credit__yellow {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 26vw, 200px);
}
.l-credit__green {
  position: relative;
}
.l-credit__green::before {
  content: "";
  display: block;
  background-color: #CADE93;
  position: absolute;
  z-index: -10;
  width: 80%;
  height: 116%;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  .l-credit__green::before {
    width: 80%;
    height: 70%;
    min-width: 1000px;
    max-width: 1200px;
    top: 10%;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
}
.l-credit__blue {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.l-credit__blue::before {
  content: "";
  display: block;
  background-color: #B2CDE3;
  position: absolute;
  z-index: -10;
  width: 90%;
  height: 108%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  .l-credit__blue::before {
    width: 70%;
    min-width: 700px;
    max-width: 1000px;
    height: 95%;
    top: 8%;
    transform: translateY(0);
  }
}
.l-credit__pink {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.l-credit__pink::before {
  content: "";
  display: block;
  background-color: #F4D7DE;
  position: absolute;
  z-index: -10;
  width: 80%;
  height: 100%;
  top: 15%;
  right: 0;
}
@media screen and (min-width: 800px) {
  .l-credit__pink::before {
    width: 65%;
    min-width: 700px;
    max-width: 900px;
    height: 90%;
    top: 20%;
  }
}
.l-credit__yellow {
  position: relative;
}
.l-credit__yellow::before {
  content: "";
  display: block;
  background-color: #FFF4D3;
  position: absolute;
  z-index: -10;
  width: 90%;
  height: 84%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 800px) {
  .l-credit__yellow::before {
    width: 80%;
    max-width: 1200px;
  }
}

.c-credit {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .c-credit {
    max-width: 800px;
    margin: 0 auto;
  }
}
.c-credit__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.c-credit__flex li {
  width: calc((100% - 10px) / 2);
}
.c-credit__plus {
  position: relative;
  z-index: 10;
}
.c-credit__plus span {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .c-credit__plus span {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}
.c-credit__plus span::before, .c-credit__plus span::after {
  width: 2px;
  height: 24px;
  content: "";
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
}
@media screen and (min-width: 800px) {
  .c-credit__plus span::before, .c-credit__plus span::after {
    width: 3px;
    height: 45px;
  }
}
.c-credit__plus span::before {
  transform: translate(-50%, -50%);
}
.c-credit__plus span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-credit__text {
  width: max(53%, 140px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 800px) {
  .c-credit__text {
    width: 33%;
    max-width: 264px;
  }
}
.c-credit__text li {
  display: flex;
  justify-content: space-between;
}
.c-credit__link {
  text-decoration: underline;
}

.c-modal {
  display: none;
  width: 100%;
  height: 100%;
  background: #f8f8e3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: scroll;
}
@media screen and (min-width: 800px) {
  .c-modal {
    height: 100vh;
  }
}
.c-modal__close {
  width: 45px;
  height: 45px;
  display: inline-block;
  opacity: 0.8;
  position: absolute;
  top: 17.5px;
  right: 5%;
  z-index: 110;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .c-modal__close {
    width: 70px;
    height: 70px;
    top: 5px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  width: 1px;
  height: 100%;
  content: "";
  display: inline-block;
  background-color: #383838;
  position: absolute;
  left: 50%;
  top: 50%;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__contents {
  margin: 80px 0;
  padding: 50px 0;
  background-color: #FDFDF2;
  position: relative;
}
@media screen and (min-width: 800px) {
  .c-modal__contents {
    height: calc(100vh - 160px);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.c-modal__inner {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .c-modal__inner {
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 800px) {
  .c-modal__slider {
    width: 50%;
  }
}
.c-modal__textBox {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .c-modal__textBox {
    gap: 90px;
  }
}
.c-modal__heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .c-modal__heading {
    gap: 50px;
  }
}
.c-modal__title {
  font-size: 34px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  .c-modal__title {
    font-size: 48px;
  }
}
.c-modal__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 800px) {
  .c-modal__text {
    gap: 20px;
  }
}
.c-modal__text li {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.c-modal__link {
  text-decoration: underline;
}
.c-modal__page {
  font-size: 12px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .c-modal__page {
    font-size: 16px;
  }
}

@media screen and (min-width: 800px) {
  .p-firstView {
    display: flex;
  }
}
@media screen and (min-width: 800px) {
  .p-firstView__slider {
    width: 50%;
  }
}
.p-firstView__textBox {
  padding: 80px 7vw 100px 7vw;
  background: linear-gradient(to bottom, #f8f8e3, #FDFDF2);
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 800px) {
  .p-firstView__textBox {
    width: 50%;
    padding: 0;
    justify-content: center;
    gap: 60px;
    background: #f8f8e3;
  }
}
.p-firstView__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-firstView__title {
  font-size: clamp(36px, 9.6vw, 58px);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.p-firstView__description {
  font-size: clamp(12px, 3.2vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

.p-footer {
  padding: 100px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .p-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 200px 0 100px;
  }
}
.p-footer__staff {
  width: 75%;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .p-footer__staff {
    width: 80%;
    max-width: 800px;
  }
}
.p-footer__allBtn {
  width: 60%;
  height: 45px;
  margin: 50px auto 0;
  transition: all 0.6s;
}
@media screen and (min-width: 800px) {
  .p-footer__allBtn {
    max-width: 420px;
    margin-top: 80px;
    height: unset;
  }
}
.p-footer__allLink {
  display: block;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 45px;
  letter-spacing: 0.2em;
  background-color: #9DAF10;
}
@media screen and (min-width: 800px) {
  .p-footer__allLink {
    padding: 20px 0;
    font-size: 20px;
  }
}
.p-footer__navi {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .p-footer__navi {
    margin-top: 120px;
  }
}
.p-footer__navi li {
  font-size: 11px;
}
@media screen and (min-width: 800px) {
  .p-footer__navi li {
    font-size: 16px;
  }
}
.p-footer__navi li:not(:last-of-type)::after {
  content: "/";
  margin: 0 8px 0 4px;
}
.p-footer__logoBtn {
  width: 25%;
  margin: 20px auto 0;
}
@media screen and (min-width: 800px) {
  .p-footer__logoBtn {
    width: 130px;
    margin-top: 30px;
  }
}
.p-footer__logoLink {
  display: block;
}
.p-footer__copy {
  margin-top: 40px;
  color: #787676;
  font-size: 7px;
}
@media screen and (min-width: 800px) {
  .p-footer__copy {
    margin-top: 75px;
    font-size: 10px;
  }
}
.p-footer__toTop {
  width: 2.5%;
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .p-footer__toTop {
    width: 1%;
  }
}

@media screen and (min-width: 800px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 799px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.u-imageGreen {
  width: calc((100% - 10px) / 2);
  margin-top: 10px;
}
@media screen and (min-width: 800px) {
  .u-imageGreen {
    margin: 30px 0 0 10%;
  }
}

.u-textGreen {
  width: 40%;
  position: absolute;
  right: 8%;
  bottom: 0;
}
@media screen and (min-width: 800px) {
  .u-textGreen {
    width: 30%;
    bottom: 0;
    left: 63%;
    right: unset;
  }
}

.u-flex {
  max-width: 1200px;
}
@media screen and (min-width: 800px) {
  .u-flex .c-credit__flex {
    flex-wrap: nowrap;
  }
  .u-flex .c-credit__flex li {
    width: calc((100% - 30px) / 4);
  }
}

.u-imageBlue {
  width: 60%;
  margin: 20px 0 0 5%;
}
@media screen and (min-width: 800px) {
  .u-imageBlue {
    margin-top: 50px;
  }
}

.u-textBlue {
  width: max(53%, 140px);
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .u-textBlue {
    width: 30%;
    position: absolute;
    bottom: 0;
    left: 68%;
  }
}

.u-imageLeft {
  width: 70%;
  margin: 20px auto 0 0;
}
@media screen and (min-width: 800px) {
  .u-imageLeft {
    width: 55%;
  }
}

.u-textRight {
  width: max(53%, 140px);
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .u-textRight {
    width: 30%;
    position: absolute;
    bottom: 0;
    left: 58%;
  }
}

.u-mini .c-credit__imageBox {
  width: 90%;
  margin: 0 auto;
}/*# sourceMappingURL=app.css.map */