@charset "UTF-8";
/*------------------------------------------------------
　Foundation
------------------------------------------------------*/
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.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
 */
*: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;
}

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

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  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;
  -moz-appearance: revert;
       appearance: revert;
}

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

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

/* remove default dot (•) sign */
::marker {
  content: initial;
}

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

/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数管理
------------------------------------------------------*/
/*------------------------------------------------------
　変数管理
------------------------------------------------------*/
/*------------------------------------------------------
　common
------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  font-size: calc(10px * 1);
}
html body {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  overflow: hidden;
  cursor: none;
  color: #000000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  background: #ffffff;
  transition: background-color 1s ease;
}
html body img {
  width: 100%;
  vertical-align: bottom;
}
html body a {
  cursor: none;
}

@media (max-width: 767px) {
  html body {
    min-width: 375px;
    max-width: 767px;
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
/*------------------------------------------------------
　Layout
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　header
------------------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 1010;
  width: 100%;
  color: #ffffff;
  background-color: #ffffff;
  transition: background-color 1s ease;
  transition: top 1s ease, background-color 1s ease; /* トランジションをtopにも適用 */
}
.l-header__inner {
  max-width: 1344px;
  height: 8rem;
  margin: auto;
  padding: 0 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__inner .l-header__logo {
  width: 11.2rem;
}
.l-header__inner .l-g-nav {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.l-header__inner .l-g-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
}
.l-header__inner .l-g-nav__list .l-g-nav__item a {
  padding: 0.8rem 0.4rem;
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  transition: all 0.2s ease;
}
.l-header__inner .l-g-nav__list .l-g-nav__item a:hover {
  opacity: 0.5;
}
.l-header__inner .l-g-nav__hamburger {
  position: relative;
  display: flex;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
}
.l-header__inner .l-g-nav__hamburger .hamburger-circle {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000000;
  transition: all 0.2s ease;
}
.l-header__inner .l-g-nav__hamburger .hamburger-circle:nth-child(1) {
  left: 0;
}
.l-header__inner .l-g-nav__hamburger .hamburger-circle:nth-child(2) {
  left: calc(50% - 0.25rem);
}
.l-header__inner .l-g-nav__hamburger .hamburger-circle:nth-child(3) {
  right: 0;
}
.l-header__inner .l-g-nav__hamburger:hover .hamburger-circle {
  transition: all 0.2s ease;
}
.l-header__inner .l-g-nav__hamburger:hover .hamburger-circle:nth-child(2) {
  left: calc(50% - 1.4rem);
  width: 2.8rem;
  height: 2.8rem;
}
.l-header__inner .l-g-nav__hamburger:hover .hamburger-circle:nth-child(1), .l-header__inner .l-g-nav__hamburger:hover .hamburger-circle:nth-child(3) {
  left: calc(50% - 0.25rem);
}

.l-g-nav__hamburger--open {
  position: fixed;
  z-index: 1020;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(160%) rotate(-20deg) scale(1.025, 1.025);
  background: #ffffff;
  color: #000000;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.l-g-nav__hamburger--open .l-g-nav__close-btn {
  position: absolute;
  z-index: 1030;
  top: 0;
  right: 0;
  transition: all 0.2s ease;
}
.l-g-nav__hamburger--open .l-g-nav__close-btn .l-g-nav__close-inner {
  display: flex;
  align-items: center;
  padding: 3.2rem;
}
.l-g-nav__hamburger--open .l-g-nav__close-btn .l-g-nav__close-inner .hamburger-close-circle {
  display: inline-block;
  margin-right: 1.6rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #000000;
  border-radius: 50%;
  border-radius: 100vw;
  transition: all 0.2s ease;
}
.l-g-nav__hamburger--open .l-g-nav__close-btn .l-g-nav__close-inner:hover .hamburger-close-circle {
  width: 0.3rem;
  height: 2rem;
  transform: rotate(-45deg);
  transition: all 0.2s ease;
}
.l-g-nav__hamburger--open.panelactive {
  transform: translateX(0%) rotate(0deg) scale(1);
}
.l-g-nav__hamburger--open.panelactive .l-g-nav__hamburger-wrapper--open {
  position: fixed;
  z-index: 1020;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open {
  display: flex;
  justify-content: space-between;
  padding: 11.2rem 16rem 9.6rem 9.6rem;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-logo--open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-logo--open .l-g-nav__hamburger-logo {
  width: 50%;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 50%;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open {
  display: flex;
  align-items: center;
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  font-size: 4rem;
  font-weight: 700;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 0;
  height: 2px;
  background: #000000;
  transition: all 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open:hover::before {
  width: 8rem;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open a {
  display: inline-block;
}
.l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open span {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #9d9d9d;
}

@media (max-width: 767px) {
  .l-header__inner {
    max-width: 737px;
    height: auto;
    padding: 1.6rem 1.5rem;
  }
  .l-header__inner .l-g-nav {
    justify-content: space-around;
  }
  .l-g-nav__hamburger--open .l-g-nav__close-btn .l-g-nav__close-inner:hover .hamburger-close-circle {
    width: 1.2rem;
    height: 1.2rem;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open {
    flex-direction: column;
    gap: 4.8rem;
    padding: 3.2rem 1.5rem 9.6rem 1.5rem;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-logo--open {
    justify-content: flex-start;
    width: 100%;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-logo--open .l-g-nav__hamburger-logo {
    width: 16rem;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open {
    width: 100%;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open {
    font-size: 3.2rem;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open span {
    font-size: 1.2rem;
  }
  .l-g-nav__hamburger--open .l-g-nav__hamburger-wrapper--open .l-g-nav__hamburger-list--open .l-g-nav__hamburger-item--open:hover::before {
    width: 0;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　footer
------------------------------------------------------*/
.l-footer__inner {
  max-width: 1344px;
  margin: auto;
}
.l-footer__inner .l-footer__copylight {
  padding-bottom: 1.2rem;
  text-align: center;
  font-size: 1.2rem;
}

.l-lower-footer__inner {
  padding-top: 0.8rem;
  border-top: 1px solid #d9d9d9;
}

@media (max-width: 767px) {
  .l-footer__inner {
    padding-top: 5.6rem;
  }
  .l-lower-footer__inner {
    padding-top: 0.8rem;
    border-top: 1px solid #d9d9d9;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Section
------------------------------------------------------*/
.l-section__inner {
  max-width: 1152px;
  margin: auto;
  padding: 6.4rem 4rem 9.6rem 4rem;
}

@media (max-width: 767px) {
  .l-section__inner {
    padding: 1.6rem 1.5rem 6.4rem 1.5rem;
  }
}
/*======================================================
　Object
======================================================*/
/*------------------------------------------------------
　Component
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Cursor
------------------------------------------------------*/
#cursor {
  mix-blend-mode: difference;
  background: #ffffff;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  z-index: 2000;
}

#stalker {
  background: #d9d9d9;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin: -30px 0 0 -30px;
  z-index: 1800;
}

#cursor, #stalker {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: transform 1.2s ease;
}

#cursor.active, #stalker.active {
  transform: scale(1.8);
  transition: transform 1.2s ease;
}

@media (max-width: 767px) {
  #cursor {
    display: none;
  }
  #stalker {
    display: none;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　H2 Title
------------------------------------------------------*/
.c-ttl__h2 {
  margin: 6.4rem 0 4rem 0;
}
.c-ttl__h2 .c-h2__inner .c-ttl__h2--en {
  position: relative;
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
}
.c-ttl__h2 .c-h2__inner .c-ttl__h2--jp {
  color: #9d9d9d;
  font-size: 1.6rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .c-ttl__h2 .c-h2__inner .c-ttl__h2--en {
    font-size: 4.5rem;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　H3 Title
------------------------------------------------------*/
.c-ttl__h3--jp {
  display: inline-block;
  margin-bottom: 3.2rem;
  font-size: min(3.4vw, 3.2rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-ttl__h3--jp {
    margin-bottom: 2.4rem;
    font-size: min(5.4vw, 2.8rem);
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Main Text 
------------------------------------------------------*/
.c-txt__main {
  line-height: 2;
}

@media (max-width: 767px) {
  .c-txt__main {
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Title S-size
------------------------------------------------------*/
.c-label--l {
  font-size: 1.5rem;
  font-weight: 500;
}

/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Btn
------------------------------------------------------*/
.c-btn {
  display: flex;
}
.c-btn .c-btn__link {
  position: relative;
  padding: 2.4rem 4rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.4em;
  transition: all 1000ms cubic-bezier(0.89, -0.17, 0.14, 1.225);
}
.c-btn .c-btn__link::before {
  position: absolute;
  content: "";
  margin-top: 1.2rem;
  left: -3.2rem;
  height: 1px;
  width: 6rem;
  background: #ffffff;
  transition: all 1000ms cubic-bezier(0.89, -0.17, 0.14, 1.225);
}
.c-btn .c-btn__link-top {
  position: relative;
  height: 1.2rem;
  top: 0;
  overflow: hidden;
  transition: all 300ms cubic-bezier(1, -0.055, 0.025, 1.04);
  transition-delay: 0.35s;
}
.c-btn .c-btn__link-bottom {
  position: relative;
  height: 1.2rem;
  bottom: 0;
  overflow: hidden;
  transition: all 300ms cubic-bezier(1, -0.055, 0.025, 1.04);
  transition-delay: 0.35s;
}
.c-btn .c-btn__link-bottom span {
  position: absolute;
  top: -1.2rem;
  left: 0;
}
.c-btn .c-btn__link:hover::before {
  width: 130%;
}
.c-btn .c-btn__link:hover .c-btn__link-top {
  top: -1rem;
  transition-delay: 0.35s;
}
.c-btn .c-btn__link:hover .c-btn__link-bottom {
  bottom: -1rem;
  transition-delay: 0.35s;
}
.c-btn .c-btn__link:hover, .c-btn .c-btn__link:focus, .c-btn .c-btn__link:active {
  margin-right: 1.6rem;
}

@media (max-width: 767px) {
  .c-btn .c-btn__link {
    padding: 1.6rem 4rem;
    font-size: 1.6rem;
  }
  .c-btn .c-btn__link::before {
    margin-top: 1rem;
  }
  .c-btn .c-btn__link-top {
    height: 1rem;
    top: 0.2rem;
  }
  .c-btn .c-btn__link-bottom {
    height: 1rem;
  }
  .c-btn .c-btn__link-bottom span {
    top: -0.8rem;
  }
  .c-btn .c-btn__link:hover .c-btn__link-top {
    top: -0.8rem;
  }
  .c-btn .c-btn__link:hover .c-btn__link-bottom {
    bottom: -1rem;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Btn
------------------------------------------------------*/
.c-modal__item {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(160%) rotate(-10deg) scale(1.2, 1.2);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.c-modal__item-inner {
  position: relative;
}
.c-modal__item-inner .c-modal-btn__cover {
  display: flex;
  justify-content: flex-end;
}
.c-modal__item-inner .c-modal-btn__cover a {
  margin-right: 6.4rem;
}
.c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn {
  position: fixed;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: all 0.2s ease-in;
}
.c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn .c-modal__close-border {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 0.2rem;
  border-radius: 100vw;
  background: #ffffff;
}
.c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn .c-modal__close-border:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn .c-modal__close-border:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn:hover {
  opacity: 0.5;
  transform: rotate(180deg);
  transition: all 0.2s ease-in;
}
.c-modal__item-inner .c-modal__top-img {
  margin: auto;
  width: 80%;
}
.c-modal__item-inner .c-modal__credit {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 8rem;
}
.c-modal__item-inner .c-modal__credit-line {
  display: flex;
  opacity: 0;
}
.c-modal__item-inner .c-modal__credit-line .c-modal__credit-dt {
  width: 20%;
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 2;
}
.c-modal__item-inner .c-modal__credit-line .c-modal__credit-dd {
  width: 80%;
}
.c-modal__item-inner .c-modal__credit-line .c-modal__credit-dd .c-modal__credit-link {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ffffff;
  word-wrap: break-word;
  transition: all 0.2s ease-in;
}
.c-modal__item-inner .c-modal__credit-line .c-modal__credit-dd .c-modal__credit-link:hover {
  opacity: 0.5;
  transition: all 0.2s ease-in;
}
.c-modal__item-inner .c-modal__screen-img {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 8rem;
}
.c-modal__item-inner .c-modal__btn {
  display: flex;
  justify-content: space-between;
  margin-top: 4.8rem;
}
.c-modal__item-inner .c-modal__btn-back .c-btn__link::before {
  left: initial;
  right: -3.2rem;
}
.c-modal__item-inner .c-modal__btn-back .c-btn__link:hover, .c-modal__item-inner .c-modal__btn-back .c-btn__link:focus, .c-modal__item-inner .c-modal__btn-back .c-btn__link:active {
  margin-left: 1.6rem;
  margin-right: 0;
}
.c-modal__item-inner .c-modal__btn-back .c-btn__link, .c-modal__item-inner .c-modal__btn-next .c-btn__link {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

@media (max-width: 767px) {
  .c-modal__item-inner .c-modal-btn__cover a {
    margin-right: 4.8rem;
  }
  .c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn {
    margin-top: 1.5rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .c-modal__item-inner .c-modal-btn__cover a .c-modal__close-btn .c-modal__close-border {
    width: 1.4rem;
  }
  .c-modal__item-inner .c-modal__top-img {
    width: 90%;
  }
  .c-modal__item-inner .c-modal__credit {
    margin-top: 6.4rem;
  }
  .c-modal__item-inner .c-modal__credit-line .c-modal__credit-dt {
    width: 34%;
  }
  .c-modal__item-inner .c-modal__credit-line .c-modal__credit-dd {
    width: 66%;
  }
  .c-modal__item-inner .c-modal__credit-line .c-modal__credit-dd .c-modal__credit-link:hover {
    opacity: 1;
  }
  .c-modal__item-inner .c-modal__screen-img {
    gap: 2.4rem;
    margin-top: 6.4rem;
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Form
------------------------------------------------------*/
.c-form__inner form .c-form__horizontal {
  margin-bottom: 5.6rem;
}
.c-form__inner form .c-form__horizontal .c-form__list {
  display: flex;
  margin-bottom: 4rem;
  align-items: center;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__label {
  display: inline-block;
  width: 25%;
  font-size: 1.4rem;
  font-weight: 500;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__label span {
  border-radius: 50vw;
  padding: 0.2rem 0.8rem;
  background: #6A6A6A;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 300;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__input {
  color: #000000;
  display: inline-block;
  width: 74%;
  padding: 1.2rem 1.6rem 1.2rem 1.6rem;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  font-size: 1.4rem;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__input::-moz-placeholder {
  color: #9d9d9d;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__input::placeholder {
  color: #9d9d9d;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__text {
  height: 20rem;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__select:invalid {
  color: #9d9d9d;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__select option {
  color: #000000;
}
.c-form__inner form .c-form__horizontal .c-form__list .c-form__select option:first-child {
  color: #9d9d9d;
}
.c-form__inner form .c-form__horizontal .c-form__list:last-child {
  margin-bottom: 0;
  align-items: flex-start;
}
.c-form__inner form .c-form__horizontal .c-form__list-select {
  position: relative;
}
.c-form__inner form .c-form__horizontal .c-form__list-select::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 38%;
  right: 3.2rem;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}
.c-form__inner form .c-form__check {
  margin-bottom: 3.2rem;
  text-align: center;
}
.c-form__inner form .c-form__check-outer input:checked + .c-form__check-box::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.6rem;
  top: 0.9rem;
  left: 0.5rem;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff;
  transform: rotate(135deg);
}
.c-form__inner form .c-form__check-outer input:checked + .c-form__check-box::before {
  background: #000000;
}
.c-form__inner form .c-form__check-outer .c-form__check-box {
  position: relative;
  padding-left: 3.2rem;
}
.c-form__inner form .c-form__check-outer .c-form__check-box::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  top: 0.3rem;
  left: 0;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.2rem;
  transition: all 0.6s;
}
.c-form__inner form .c-form__check-outer .c-form__check-box a {
  border-bottom: 1px solid #ffffff;
}
.c-form__inner form .c-form__check-outer .c-form__check-box a:hover {
  opacity: 0.5;
}
.c-form__inner form .c-form__btn {
  display: flex;
  margin: auto;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
}
.c-form__inner form .c-form__btn #js-submit-btn {
  padding: 1.6rem 4rem;
  color: #ffffff;
  width: 34.5rem;
  text-align: center;
  background: #d9d9d9;
  border-radius: 50vw;
  transition: all 0.2s ease-in-out;
}
.c-form__inner form .c-form__btn #js-submit-btn.active {
  background: #000000;
  border: 1px solid #ffffff;
}
.c-form__inner form .c-form__btn #js-submit-btn.active:hover {
  opacity: 0.6;
}
.c-form__inner form .c-form__btn .c-form__btn-confirm {
  padding: 1.6rem 4rem;
  width: 34.5rem;
  text-align: center;
  background: #d9d9d9;
  border-radius: 50vw;
}
.c-form__inner form .c-form__btn .c-form__btn-confirm:hover {
  opacity: 0.6;
}
.c-form__inner form .c-form__back {
  margin-top: 3.2rem;
  text-align: center;
}
.c-form__inner form .c-form__back button:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .c-form {
    margin-top: 6.4rem;
  }
  .c-form__inner form .c-form__horizontal {
    margin-bottom: 4.8rem;
  }
  .c-form__inner form .c-form__horizontal .c-form__list {
    margin-bottom: 2.4rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .c-form__inner form .c-form__horizontal .c-form__list .c-form__label {
    padding-bottom: 0.8rem;
    width: 100%;
  }
  .c-form__inner form .c-form__horizontal .c-form__list .c-form__label span {
    display: inline-block;
  }
  .c-form__inner form .c-form__horizontal .c-form__list .c-form__input {
    width: 100%;
  }
  .c-form__inner form .c-form__horizontal .c-form__list .c-form__text {
    height: 16rem;
  }
  .c-form__inner form .c-form__horizontal .c-form__list-select::after {
    top: 60%;
    right: 2.4rem;
  }
  .c-form__inner form .c-form__btn #js-submit-btn {
    width: 100%;
    max-width: 34.5rem;
  }
  .c-form__inner form .c-form__btn #js-submit-btn.active:hover {
    opacity: 1;
  }
  .c-form__inner form .c-form__back button:hover {
    opacity: 1;
  }
}
/*------------------------------------------------------
　Project
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　PP
------------------------------------------------------*/
body {
  overflow-y: scroll !important;
}

#pp .p-pp__inner .p-pp__lead {
  margin-bottom: 4rem;
}
#pp .p-pp__inner .p-pp__dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line {
  display: flex;
  gap: 2.4rem;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dt {
  width: 20%;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dd {
  width: 80%;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dd .p-pp__dd-list {
  padding-left: 3.2rem;
  list-style-type: decimal;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dd .p-pp__dd-list .p-pp__dd-list-sub {
  padding-left: 3.2rem;
  list-style-type: lower-latin;
}
#pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dd .p-pp__dd-list .p-pp__dd-list-sub .p-pp__dd-list-sub2 {
  padding-left: 3.2rem;
  list-style-type: lower-roman;
}

@media (max-width: 767px) {
  #pp .p-pp__inner .p-pp__dl .p-pp__line {
    flex-direction: column;
    gap: 0.8rem;
  }
  #pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dt {
    width: 100%;
  }
  #pp .p-pp__inner .p-pp__dl .p-pp__line .p-pp__dd {
    width: 100%;
  }
}
/*------------------------------------------------------
　Utility
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Main Text 
------------------------------------------------------*/
.u-txt--white {
  color: #ffffff;
}

/*------------------------------------------------------
　JS
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Particle Animation 
------------------------------------------------------*/
#js-particle__scroll {
  background-image: radial-gradient(#b1b1b1, #ffffff);
  height: 100vh;
  position: relative;
  touch-action: none;
}
#js-particle__scroll .js-particle__navi {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#js-particle__scroll .js-particle__navi .icon-scrolldown {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__txt {
  font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc {
  margin: auto;
  width: 3rem;
  height: 5rem;
  border: 1px solid #ffffff;
  border-radius: 100vw;
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc::before {
  position: absolute;
  content: "";
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #ffffff;
  border-radius: 100vw;
  animation: scrolldown-pc 2s infinite;
}
@keyframes scrolldown-pc {
  0% {
    opacity: 0;
    height: 0.6rem;
  }
  40% {
    opacity: 1;
    height: 0.9rem;
  }
  80% {
    bottom: 1.2rem;
    height: 0.9rem;
    opacity: 0;
  }
  100% {
    height: 0.3rem;
    opacity: 0;
  }
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc .icon-scrolldown__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.6rem;
  margin-left: -0.15rem;
  margin-top: 4.8rem;
  width: 3rem;
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc .icon-scrolldown__arrow-down {
  position: relative;
  display: inline-block;
  margin-top: -0.6rem;
  border: solid #ffffff;
  border-width: 0 0.3rem 0.3rem 0;
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc .icon-scrolldown__arrow-down:nth-child(odd) {
  animation: scrolldown-arrow 500ms ease infinite alternate;
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__pc .icon-scrolldown__arrow-down:nth-child(even) {
  animation: scrolldown-arrow 500ms ease infinite alternate 250ms;
}
@keyframes scrolldown-arrow {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
#js-particle__scroll .js-particle__navi .icon-scrolldown__sp {
  display: none;
}

@keyframes backgroundFade {
  0% {
    background-image: radial-gradient(#b1b1b1, #ffffff);
  }
  100% {
    background-image: radial-gradient(#ffffff, #ffffff);
  }
}
.js-particle__contents {
  display: none;
}

@media (max-width: 767px) {
  #js-particle__scroll .js-particle__navi .icon-scrolldown__pc {
    display: none;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp {
    display: block;
    margin: auto;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp-cover {
    position: absolute;
    width: 3rem;
    height: 5rem;
    border: 1px solid #ffffff;
    border-radius: 0.4rem;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp-cover .icon-scrolldown__sp-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 0.4rem;
    background: #ffffff;
    border-radius: 0 0 10vw 10vw;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp-cover .icon-scrolldown__sp-bottom {
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 0.2rem;
    background: #ffffff;
    border-radius: 100vw;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp::before {
    position: absolute;
    content: "";
    top: 4.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.6rem;
    height: 0.6rem;
    background: #ffffff;
    border-radius: 100vw;
    animation: scrolldown-sp 2s infinite;
  }
  @keyframes scrolldown-sp {
    0% {
      opacity: 0;
      height: 0.6rem;
    }
    40% {
      opacity: 1;
      height: 0.9rem;
    }
    80% {
      top: 3.2rem;
      height: 0.9rem;
      opacity: 0;
    }
    100% {
      height: 0.3rem;
      opacity: 0;
    }
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp .icon-scrolldown__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.6rem;
    margin-left: -0.15rem;
    margin-top: 4.8rem;
    width: 3rem;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp .icon-scrolldown__arrow-down {
    position: relative;
    display: inline-block;
    margin-top: -0.6rem;
    border: solid #ffffff;
    border-width: 0 0.3rem 0.3rem 0;
    width: 1rem;
    height: 1rem;
    transform: rotate(45deg);
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp .icon-scrolldown__arrow-down:nth-child(odd) {
    animation: scrolldown-arrow 500ms ease infinite alternate;
  }
  #js-particle__scroll .js-particle__navi .icon-scrolldown__sp .icon-scrolldown__arrow-down:nth-child(even) {
    animation: scrolldown-arrow 500ms ease infinite alternate 250ms;
  }
  @keyframes scrolldown-arrow {
    from {
      opacity: 0;
    }
    to {
      opacity: 0.5;
    }
  }
}
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Color Reverse
------------------------------------------------------*/
.js-viewport-inside {
  background: #000000;
  color: #ffffff;
}

.hamburger-circle.js-viewport-inside {
  background: #ffffff !important;
}

/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　Main Text 
------------------------------------------------------*/
.js-scroll__container {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  scroll-snap-align: none; /* スナップを無効にする */
  overflow-x: hidden;
}
.js-scroll__container .js-scroll__snap-on {
  scroll-snap-type: y proximity;
}
.js-scroll__container .js-scroll__snap-point {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
}

/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　JS delay-Scloll 
------------------------------------------------------*/
.js-delay-scroll .js-box, .js-delay-scroll--2 .js-box, .js-delay-scroll--3 .js-box {
  opacity: 0;
}
.js-delay-scroll .fade-up, .js-delay-scroll--2 .fade-up, .js-delay-scroll--3 .fade-up {
  animation-name: fadeAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
}
@keyframes fadeAnime {
  from {
    opacity: 0;
    transform: translateY(4rem);
  }
  to {
    opacity: 1;
  }
}

/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　@mixin関数、変数呼び出し
------------------------------------------------------*/
/*------------------------------------------------------
　JS H2-Smooth 
------------------------------------------------------*/
.js-h2-smooth {
  display: block;
  overflow: hidden;
}
.js-h2-smooth-trigger, .js-h2-smooth-trigger--2 {
  display: block;
  transform: translate3d(0, 100%, 0) skewY(45deg);
  transform-origin: left;
  transition: 1.2s ease-in-out;
}
.js-h2-smooth-trigger.h2-appear, .js-h2-smooth-trigger--2.h2-appear {
  transform: translate3d(0, 0, 0) skewY(0);
}/*# sourceMappingURL=pp.css.map */