@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
/* /src/styles.scssを移動*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@400,900;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@400,900;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@400,900;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@400,900;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@400,900;1,900&display=swap");
:root {
  --key-color1: #deff00;
  --key-color2: #231b3b;
  --key-color3: #241B3B;
  --key-color4: #8051FF;
  --key-color5: #ff7fe8;
}

/*@function nounit($value) {
  $_units:
  "%",                    // percentage
  em, ex, ch, rem,        // font
  vw, vh, vmin, vmax,     // viewport
  cm, mm, in, pt, pc, px, // absolute
  deg, grad, rad, trun,   // angle
  s, ms,                  // time
  Hz, kHz,                // frequency
  dpi, dpcm, dppx;        // resolution

  // 割る数のリスト
  $_divisors:
  1%,
  1em, 1ex, 1ch, 1rem,
  1vw, 1vh, 1vmin, 1vmax,
  1cm, 1mm, 1in, 1pt, 1pc, 1px,
  1deg, 1grad, 1rad, 1trun,
  1s, 1ms,
  1Hz, 1kHz,
  1dpi, 1dpcm, 1dppx;

  // 単位取得
  $_unit: unit($value);
  // 単位のインデックス番号を取得
  $_index-num: index($_units, $_unit);
  // 割る数を取得
  $_divisor: nth($_divisors, $_index-num);

  @return $value / $_divisor;
}*/
html {
  width: 100%;
  height: 100%;
  background-color: var(--key-color1);
  font-size: 62.5%;
  line-height: 1.8;
  letter-spacing: 0.16rem;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--key-color2);
  word-wrap: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
  /*@include mqRangeL {
    min-width: 960px;
  }*/
}
@media (max-width: 480px) {
  body {
    overflow: hidden;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
}

ol, ul {
  list-style: none;
  padding: 0;
}

li {
  list-style-type: none;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 480px) {
  li {
    font-size: 3.72627vw;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  text-decoration: none;
}

button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}
@media (max-width: 480px) {
  p {
    font-size: 3.72627vw;
  }
}

@media (max-width: 480px) {
  .is_pc {
    display: none !important;
  }
}
@media (min-width: 481px) and (max-width: 834px) {
  .is_pc {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .is_ta {
    display: none !important;
  }
}
@media (min-width: 835px) {
  .is_ta {
    display: none !important;
  }
}

@media (min-width: 481px) and (max-width: 834px) {
  .is_sp {
    display: none !important;
  }
}
@media (min-width: 835px) {
  .is_sp {
    display: none !important;
  }
}

@media (min-width: 835px) {
  .is_sp_ta {
    display: none !important;
  }
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

:root {
  --key-color1: #deff00;
  --key-color2: #231b3b;
  --key-color3: #241B3B;
  --key-color4: #8051FF;
  --key-color5: #ff7fe8;
}

/*@function nounit($value) {
  $_units:
  "%",                    // percentage
  em, ex, ch, rem,        // font
  vw, vh, vmin, vmax,     // viewport
  cm, mm, in, pt, pc, px, // absolute
  deg, grad, rad, trun,   // angle
  s, ms,                  // time
  Hz, kHz,                // frequency
  dpi, dpcm, dppx;        // resolution

  // 割る数のリスト
  $_divisors:
  1%,
  1em, 1ex, 1ch, 1rem,
  1vw, 1vh, 1vmin, 1vmax,
  1cm, 1mm, 1in, 1pt, 1pc, 1px,
  1deg, 1grad, 1rad, 1trun,
  1s, 1ms,
  1Hz, 1kHz,
  1dpi, 1dpcm, 1dppx;

  // 単位取得
  $_unit: unit($value);
  // 単位のインデックス番号を取得
  $_index-num: index($_units, $_unit);
  // 割る数を取得
  $_divisor: nth($_divisors, $_index-num);

  @return $value / $_divisor;
}*/
/* layout
-------------------------------------------------- */
.c-l-container {
  width: 100%;
  max-width: min(75vw, 1440px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 481px) and (max-width: 834px) {
  .c-l-container {
    max-width: 90vw;
    padding-right: 6.25%;
    padding-left: 6.25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .c-l-container {
    max-width: 100vw;
    padding-right: 8vw;
    padding-left: 8vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.c-m-container {
  width: 100%;
  max-width: min(72vw, 1280px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 481px) and (max-width: 834px) {
  .c-m-container {
    max-width: 100vw;
    padding-right: 6.25%;
    padding-left: 6.25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .c-m-container {
    max-width: 100vw;
    padding-right: 8vw;
    padding-left: 8vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.c-s-container {
  width: 100%;
  max-width: min(67.5vw, 1080px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 481px) and (max-width: 834px) {
  .c-s-container {
    max-width: 100vw;
    padding-right: 6.25%;
    padding-left: 6.25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .c-s-container {
    max-width: 100vw;
    padding-right: 8vw;
    padding-left: 8vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contents-l-spacing {
  padding-top: 13.889vw; /* 200px */
}
@media (min-width: 481px) and (max-width: 834px) {
  .contents-l-spacing {
    padding-top: 23.438vw;
  }
}
@media (max-width: 480px) {
  .contents-l-spacing {
    padding-top: 37.333vw;
  }
}

.contents-m-spacing {
  padding-top: 10.417vw; /* 150px */
}
@media (min-width: 481px) and (max-width: 834px) {
  .contents-m-spacing {
    padding-top: 17.708vw;
  }
}
@media (max-width: 480px) {
  .contents-m-spacing {
    padding-top: 29.333vw;
  }
}

.contents-s-spacing {
  padding-top: 8.333vw; /* 120px */
}
@media (min-width: 481px) and (max-width: 834px) {
  .contents-s-spacing {
    padding-top: 13.021vw;
  }
}
@media (max-width: 480px) {
  .contents-s-spacing {
    padding-top: 22.667vw;
  }
}

/* common pages
-------------------------------------------------- */
.main-container {
  padding-top: 12rem;
}
@media (max-width: 480px) {
  .main-container {
    padding-top: 18.63246vw;
  }
}

@media (min-width: 835px) {
  .l-page {
    padding-top: 10rem;
  }
}
@media (min-width: 481px) and (max-width: 834px) {
  .l-page {
    padding-top: 5.32356vw;
  }
}
.l-page__inner {
  margin-left: 11rem;
  margin-bottom: 150px;
}
@media (min-width: 481px) and (max-width: 834px) {
  .l-page__inner {
    margin-left: 5rem;
    margin-bottom: 23.95602vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .l-page__inner {
    margin-left: 0;
    margin-bottom: 23.95602vw;
  }
}

.p-body {
  padding-bottom: 15rem;
}
@media (min-width: 481px) and (max-width: 834px) {
  .p-body {
    padding-bottom: 10rem;
  }
}
@media (max-width: 480px) {
  .p-body {
    padding-bottom: 21.333vw;
  }
}

/* page-contents
-------------------------------------------------- */
.c-l-page {
  background-color: #fff;
  border-radius: 80px 0 0 80px;
  padding: 10% 10% 10%;
}
@media (min-width: 481px) and (max-width: 834px) {
  .c-l-page {
    border-radius: 10.64712vw 0 0 10.64712vw;
    padding: 12vw 9vw 12vw;
  }
}
@media (max-width: 480px) {
  .c-l-page {
    border-radius: 10.64712vw 0 0 10.64712vw;
    padding: 16vw 9vw 16vw;
  }
}
.c-l-page h3 {
  font-size: 2rem;
  padding-top: 9rem;
  padding-bottom: 3rem;
}
@media (max-width: 480px) {
  .c-l-page h3 {
    font-size: 4.79076vw;
    padding-top: 14.37339vw;
    padding-bottom: 4.79076vw;
  }
}
.c-l-page h3:first-child {
  padding-top: 0;
}

/* works
-------------------------------------------------- */
.p-works {
  background-color: var(--key-color3);
  margin-top: 8.2rem;
}
@media (max-width: 480px) {
  .p-works {
    margin-top: 18.63246vw;
  }
}
.p-works__inner {
  padding-top: 8rem;
  padding-inline: 4rem;
  padding-bottom: 3.6rem;
}
@media (max-width: 480px) {
  .p-works__inner {
    padding-top: 6.65445vw;
    padding-inline: 6.38805vw;
    padding-bottom: 6.65445vw;
  }
}
.p-works__inner .l-works__archives {
  padding-top: 7.2rem;
}
@media (max-width: 480px) {
  .p-works__inner .l-works__archives {
    padding-top: 10.64712vw;
  }
}
.p-works__title h3 {
  font-size: 4.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--key-color1);
  text-align: center;
}
@media (max-width: 480px) {
  .p-works__title h3 {
    font-size: 6.65445vw;
  }
}
.p-works__title p {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  padding-top: 1rem;
}
@media (max-width: 480px) {
  .p-works__title p {
    font-size: 3.72627vw;
    text-align: justify;
  }
}
.p-works__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 4rem;
}
@media (max-width: 480px) {
  .p-works__heading {
    gap: 5.32356vw;
  }
}
.p-works__heading .title {
  width: calc(50% - 2rem);
}
@media (max-width: 480px) {
  .p-works__heading .title {
    width: 100%;
  }
}
.p-works__heading .title h3 {
  font-size: 3.2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 480px) {
  .p-works__heading .title h3 {
    font-size: 6.65445vw;
    line-height: 1.4;
  }
}
.p-works__heading .lead {
  width: calc(50% - 2rem);
}
@media (max-width: 480px) {
  .p-works__heading .lead {
    width: 100%;
  }
}
.p-works__heading .lead p {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: var(--key-color4);
}
@media (max-width: 480px) {
  .p-works__heading .lead p {
    font-size: 3.99267vw;
  }
}
.p-works__archives {
  padding-top: 7rem;
}
@media (max-width: 480px) {
  .p-works__archives {
    padding-top: 10.64712vw;
  }
}
.p-works__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4rem;
  padding-top: 6rem;
}
@media (max-width: 480px) {
  .p-works__images {
    gap: 0;
    padding-top: 7.98534vw;
  }
}
.p-works__images img {
  width: calc(50% - 2rem);
}
@media (max-width: 480px) {
  .p-works__images img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-works__images .lazyloaded:nth-child(n+2) {
    margin-top: 5.85525vw;
  }
}
.p-works__nav .post-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1rem;
}
@media (max-width: 480px) {
  .p-works__nav .post-nav {
    padding-top: 6.65445vw;
  }
}
.p-works__nav .post-nav .prev a,
.p-works__nav .post-nav .next a {
  display: block;
}
.p-works__nav .post-nav .prev a span,
.p-works__nav .post-nav .next a span {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.06rem;
  position: relative;
}
@media (max-width: 480px) {
  .p-works__nav .post-nav .prev a span,
  .p-works__nav .post-nav .next a span {
    font-size: 3.72627vw;
    letter-spacing: 0.03rem;
  }
}
.p-works__link {
  padding-top: 4.2rem;
}
@media (max-width: 480px) {
  .p-works__link {
    padding-top: 6.65445vw;
  }
}
.p-works__link a {
  display: block;
  text-align: center;
}
.p-works__link a span {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.06rem;
  position: relative;
}
@media (max-width: 480px) {
  .p-works__link a span {
    font-size: 3.72627vw;
    letter-spacing: 0.03rem;
  }
}

/* about
-------------------------------------------------- */
.p-about {
  background-color: var(--key-color3);
  margin-top: 8.2rem;
}
@media (max-width: 480px) {
  .p-about {
    margin-top: 18.63246vw;
  }
}
.p-about__inner {
  padding-top: 10rem;
  padding-inline: 4%;
  padding-bottom: 6rem;
}
@media (max-width: 480px) {
  .p-about__inner {
    padding-top: 7.98534vw;
    padding-inline: 6.38805vw;
    padding-bottom: 6.65445vw;
  }
}
.p-about__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding-inline: 4%;
}
@media (max-width: 480px) {
  .p-about__heading {
    padding-inline: 0;
  }
}
.p-about__heading .title {
  width: 30%;
}
@media (max-width: 480px) {
  .p-about__heading .title {
    width: 100%;
  }
}
.p-about__heading .title h3 {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 480px) {
  .p-about__heading .title h3 {
    font-size: 6.65445vw;
  }
}
.p-about__heading .lead {
  width: 70%;
}
@media (max-width: 480px) {
  .p-about__heading .lead {
    width: 100%;
    padding-top: 4.79076vw;
  }
}
.p-about__heading .lead-inner {
  max-width: 680px;
  margin-right: auto;
}
.p-about__heading .lead h4 {
  font-size: 2rem;
  line-height: 2;
  color: #fff;
}
@media (max-width: 480px) {
  .p-about__heading .lead h4 {
    font-size: 4.79076vw;
  }
}
.p-about__heading .lead p {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  color: #fff;
}
.p-about__heading .lead p:nth-child(n+2) {
  padding-top: 2.5rem;
}
@media (max-width: 480px) {
  .p-about__heading .lead p {
    font-size: 3.72627vw;
  }
}
.p-about__heading .lead .name {
  padding-top: 1.6rem;
}
@media (max-width: 480px) {
  .p-about__heading .lead .name {
    padding-top: 3.72627vw;
  }
}
.p-about__heading .lead .name p {
  text-align: right;
}
.p-about__contact {
  background-color: var(--key-color4);
  padding-block: 7rem;
  padding-inline: 4%;
  margin-top: 12rem;
}
@media (max-width: 480px) {
  .p-about__contact {
    padding-block: 9.58263vw;
    margin-top: 15.97068vw;
  }
}
.p-about__contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media (min-width: 481px) and (max-width: 834px) {
  .p-about__contact__inner {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .p-about__contact__inner {
    gap: 2rem;
  }
}
.p-about__contact__inner .title {
  width: 30%;
}
@media (min-width: 835px) {
  .p-about__contact__inner .title {
    padding-right: 2rem;
  }
}
@media (min-width: 481px) and (max-width: 834px) {
  .p-about__contact__inner .title {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-about__contact__inner .title {
    width: 100%;
  }
}
.p-about__contact__inner .title h3 {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 480px) {
  .p-about__contact__inner .title h3 {
    font-size: 6.65445vw;
  }
}
.p-about__contact__inner .form-area {
  width: 70%;
  max-width: 420px;
  margin-left: auto;
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area {
    width: 100%;
  }
}
.p-about__contact__inner .form-area .l-contact__section {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__section {
    margin-bottom: 5.32356vw;
  }
}
.p-about__contact__inner .form-area .l-contact__section dt p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: #fff;
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__section dt p {
    font-size: 3.45987vw;
  }
}
.p-about__contact__inner .form-area .l-contact__section dt p span {
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__section dt p span {
    font-size: 3.19347vw;
  }
}
.p-about__contact__inner .form-area .l-contact__section dd .wpcf7-text {
  width: 100%;
  height: 50px;
  padding-inline: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
@media (min-width: 481px) and (max-width: 834px) {
  .p-about__contact__inner .form-area .l-contact__section dd .wpcf7-text {
    height: 10.64712vw;
    font-size: 3.72627vw;
    padding-inline: 3.72627vw;
  }
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__section dd .wpcf7-text {
    height: 10.64712vw;
    font-size: 3.72627vw;
    padding-inline: 3.72627vw;
  }
}
.p-about__contact__inner .form-area .l-contact__section dd textarea {
  width: 100%;
  height: 150px;
  padding: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__section dd textarea {
    height: 26.6178vw;
    font-size: 3.72627vw;
    padding: 3.72627vw;
  }
}
.p-about__contact__inner .form-area .l-contact__submit .button {
  width: 240px;
  margin: 0 auto;
  background-color: var(--key-color1);
  border-radius: 30px;
  font-size: 1.5rem;
  color: var(--key-color2);
  text-align: center;
  padding-block: 1rem;
  position: relative;
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-about__contact__inner .form-area .l-contact__submit .button:hover {
  background-color: var(--key-color2);
  color: var(--key-color1);
}
@media (max-width: 480px) {
  .p-about__contact__inner .form-area .l-contact__submit .button {
    width: 58.56027vw;
    font-size: 3.72627vw;
    padding-block: 2.12898vw;
  }
}
.p-about__contact__inner .form-area .l-contact__submit .wpcf7-spinner {
  display: none;
}

/* blogs
-------------------------------------------------- */
.p-blog {
  margin-top: 8.2rem;
  padding-inline: 4%;
  padding-bottom: 6rem;
}
@media (max-width: 480px) {
  .p-blog {
    margin-top: 18.63246vw;
    padding-inline: 6.38805vw;
    padding-bottom: 5.32356vw;
  }
}
.p-blog__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 3rem;
}
@media (max-width: 480px) {
  .p-blog__contents {
    gap: 7.98534vw;
  }
}

.c-blog {
  width: calc(25% - 2.25rem);
}
@media (max-width: 480px) {
  .c-blog {
    width: 100%;
  }
}
.c-blog__post a {
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.c-blog__post a:hover .l-blog__thum figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-blog__post a:hover .l-blog__date p {
  color: var(--key-color4);
}
.c-blog__post a:hover .l-blog__title h3 {
  color: var(--key-color4);
}
.c-blog__post a:hover .l-blog__title p {
  color: var(--key-color4);
}
.c-blog__inner .l-blog__thum {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 1;
}
.c-blog__inner .l-blog__thum figure {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-blog__inner .l-blog__thum figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.c-blog__inner .l-blog__date p {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 2.4rem;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (max-width: 480px) {
  .c-blog__inner .l-blog__date p {
    font-size: 3.19347vw;
    padding-top: 4.79076vw;
  }
}
.c-blog__inner .l-blog__title h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (max-width: 480px) {
  .c-blog__inner .l-blog__title h3 {
    font-size: 4.25796vw;
    padding-top: 2.12898vw;
  }
}
.c-blog__inner .l-blog__title p {
  font-size: 1.5rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding-top: 1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (max-width: 480px) {
  .c-blog__inner .l-blog__title p {
    font-size: 3.45987vw;
    padding-top: 1.33089vw;
  }
}

.c-news-pagenavi {
  margin-left: auto;
  width: 100%;
}
.c-news-pagenavi .wp-pagenavi {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 480px) {
  .c-news-pagenavi .wp-pagenavi {
    font-size: 3.19347vw;
    gap: 2.12898vw;
  }
}
.c-news-pagenavi .wp-pagenavi a,
.c-news-pagenavi .wp-pagenavi span {
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
  color: var(--key-color2);
  text-align: center;
  line-height: 2.55;
}
@media (max-width: 480px) {
  .c-news-pagenavi .wp-pagenavi a,
  .c-news-pagenavi .wp-pagenavi span {
    width: 7.98534vw;
    height: 7.98534vw;
  }
}
.c-news-pagenavi .wp-pagenavi .current {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background-color: var(--key-color4);
  color: var(--key-color1);
}
/* blogs single
-------------------------------------------------- */
.p-blog__post {
  max-width: 740px;
  margin-inline: auto;
  padding-top: 5rem;
}
@media (max-width: 480px) {
  .p-blog__post {
    padding-top: 7.98534vw;
  }
}

.p-article__title h3 {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .p-article__title h3 {
    font-size: 6.65445vw;
  }
}
.p-article__date {
  margin-bottom: 1.5rem;
}
.p-article__date .day {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.p-article__contents p {
  padding-top: 2rem;
}
@media (max-width: 480px) {
  .p-article__contents p {
    padding-top: 4.25796vw;
  }
}
.p-article__contents .wp-block-separator {
  border-top: 1px solid;
}
.p-article__link {
  padding-top: 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 6rem;
}
@media (max-width: 480px) {
  .p-article__link {
    padding-top: 7.98534vw;
    margin-top: 7.98534vw;
  }
}
.p-article__link .post-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-article__link .post-nav__inner .prev a,
.p-article__link .post-nav__inner .archives a,
.p-article__link .post-nav__inner .next a {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05rem;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (max-width: 480px) {
  .p-article__link .post-nav__inner .prev a,
  .p-article__link .post-nav__inner .archives a,
  .p-article__link .post-nav__inner .next a {
    font-size: 3.72627vw;
  }
}
.p-article__link .post-nav__inner .prev a:hover,
.p-article__link .post-nav__inner .archives a:hover,
.p-article__link .post-nav__inner .next a:hover {
  color: var(--key-color4);
}

/* scroll animation fade
-------------------------------------------------- */
.is-fade {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.18, 0.06, 0.23, 1) 0.1s, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.6s cubic-bezier(0.18, 0.06, 0.23, 1) 0.1s, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1), opacity 0.6s cubic-bezier(0.18, 0.06, 0.23, 1) 0.1s;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1), opacity 0.6s cubic-bezier(0.18, 0.06, 0.23, 1) 0.1s, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transform: translateY(3vh);
          transform: translateY(3vh);
  will-change: transform, opacity;
}

.is-fade.is-action {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

:root {
  --key-color1: #deff00;
  --key-color2: #231b3b;
  --key-color3: #241B3B;
  --key-color4: #8051FF;
  --key-color5: #ff7fe8;
}

/*@function nounit($value) {
  $_units:
  "%",                    // percentage
  em, ex, ch, rem,        // font
  vw, vh, vmin, vmax,     // viewport
  cm, mm, in, pt, pc, px, // absolute
  deg, grad, rad, trun,   // angle
  s, ms,                  // time
  Hz, kHz,                // frequency
  dpi, dpcm, dppx;        // resolution

  // 割る数のリスト
  $_divisors:
  1%,
  1em, 1ex, 1ch, 1rem,
  1vw, 1vh, 1vmin, 1vmax,
  1cm, 1mm, 1in, 1pt, 1pc, 1px,
  1deg, 1grad, 1rad, 1trun,
  1s, 1ms,
  1Hz, 1kHz,
  1dpi, 1dpcm, 1dppx;

  // 単位取得
  $_unit: unit($value);
  // 単位のインデックス番号を取得
  $_index-num: index($_units, $_unit);
  // 割る数を取得
  $_divisor: nth($_divisors, $_index-num);

  @return $value / $_divisor;
}*/
html.fixed {
  height: 100%;
  overflow: hidden;
}

/* header
-------------------------------------------------- */
.l-header {
  position: relative;
}
.l-header__inner {
  padding-top: 3rem;
}
.l-header__inner .header-intro p {
  text-align: center;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 480px) {
  .l-header__inner .header-intro p {
    text-align: left;
  }
}
.l-header__inner .header-nav {
  margin-top: 2.5rem;
}
.l-header__inner .header-nav nav {
  border-top: 1px solid var(--key-color2);
  border-bottom: 1px solid var(--key-color2);
  padding-block: 1.2rem;
}
.l-header__inner .header-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
.l-header__inner .header-nav nav ul li {
  font-size: 1.7rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.l-header__inner .header-nav nav ul li a {
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.l-header__inner .header-nav nav ul li a:hover {
  color: var(--key-color5);
}
.l-header__inner .header-logo {
  padding-top: 4rem;
}
.l-header__inner .header-logo__inner {
  max-width: 1080px;
  padding-inline: 5%;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .l-header__inner .header-logo__inner {
    padding-inline: 7.45254vw;
  }
}
.l-header__inner .header-logo__contents {
  position: relative;
}
.l-header__inner .header-logo .logo-area {
  width: 100%;
  max-width: 825px;
  margin-inline: auto;
}
.l-header__inner .header-logo .logo-area a {
  display: block;
}
.l-header__inner .header-logo__visual1 {
  position: absolute;
  top: -32px;
  left: -6px;
}
@media (max-width: 480px) {
  .l-header__inner .header-logo__visual1 {
    top: -8.51814vw;
    left: 2.12898vw;
  }
}
.l-header__inner .header-logo__visual1__image {
  width: 100px;
  max-width: 100px;
}
@media (max-width: 480px) {
  .l-header__inner .header-logo__visual1__image {
    width: 15.97068vw;
  }
}
.l-header__inner .header-logo__visual1__image img {
  width: 100%;
}
.l-header__inner .header-logo__visual2 {
  position: absolute;
  bottom: -114%;
  right: 14px;
  z-index: 2;
}
@media (max-width: 480px) {
  .l-header__inner .header-logo__visual2 {
    bottom: -27.9498vw;
    right: -13.31001vw;
    z-index: 0;
  }
}
.l-header__inner .header-logo__visual2__image {
  width: 19vw;
  max-width: 190px;
}
@media (max-width: 480px) {
  .l-header__inner .header-logo__visual2__image {
    width: 25.55331vw;
  }
}
.l-header__inner .header-logo__visual2__image svg {
  width: 100%;
}

.is-rotate {
  -webkit-animation-name: rotate-and-step;
          animation-name: rotate-and-step;
  -webkit-animation-duration: 4s;
          animation-duration: 4s; /* 1回の再生時間 */
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* 無限ループ */
  -webkit-animation-timing-function: steps(10);
          animation-timing-function: steps(10); /* または steps() など */
}

@-webkit-keyframes rotate-and-step {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-and-step {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.header-sp {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  width: 60px;
  height: 60px;
  background-color: var(--key-color1);
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 480px) {
  .header-sp {
    width: 11.97801vw;
    height: 11.97801vw;
  }
}
.header-sp .header_drawerMenu {
  width: 30px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu {
    width: 7.98534vw;
    height: 3.19347vw;
  }
}
.header-sp .header_drawerMenu .drawer_button {
  width: 100%;
  height: 100%;
  padding: 0;
  position: absolute;
  cursor: pointer;
  z-index: 20;
}
.header-sp .header_drawerMenu .drawer_button .drawer_button_line {
  position: absolute;
  left: calc(50% - 15px);
  width: 30px;
  height: 1px;
  background: var(--key-color2);
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 481px) and (max-width: 834px) {
  .header-sp .header_drawerMenu .drawer_button .drawer_button_line {
    left: calc(50% - 1.953vw);
    width: 3.906vw;
  }
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu .drawer_button .drawer_button_line {
    left: calc(50% - 3.35vw);
    width: 6.763vw;
  }
}
.header-sp .header_drawerMenu .drawer_button .button_line_top {
  top: 0;
}
.header-sp .header_drawerMenu .drawer_button .button_line_mid {
  top: 5px;
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu .drawer_button .button_line_mid {
    top: 1.33089vw;
  }
}
.header-sp .header_drawerMenu .drawer_button .button_line_btm {
  top: 10px;
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu .drawer_button .button_line_btm {
    top: 2.66178vw;
  }
}
.header-sp .header_drawerMenu .drawer_button.active .button_line_top {
  -webkit-transform: translate(0) rotate(45deg);
          transform: translate(0) rotate(45deg);
  top: 5px;
  background: var(--key-color2) !important;
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu .drawer_button.active .button_line_top {
    top: 1.33089vw;
  }
}
.header-sp .header_drawerMenu .drawer_button.active .button_line_mid {
  opacity: 0;
}
.header-sp .header_drawerMenu .drawer_button.active .button_line_btm {
  -webkit-transform: translate(0) rotate(-45deg);
          transform: translate(0) rotate(-45deg);
  top: 5px;
  background: var(--key-color2) !important;
}
@media (max-width: 480px) {
  .header-sp .header_drawerMenu .drawer_button.active .button_line_btm {
    top: 1.33089vw;
  }
}
.header-sp .gmenu-nav {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1) opacity, -webkit-transform;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1) opacity, -webkit-transform;
  transition: transform, 0.3s cubic-bezier(0.19, 1, 0.22, 1) opacity;
  transition: transform, 0.3s cubic-bezier(0.19, 1, 0.22, 1) opacity, -webkit-transform;
  position: absolute;
  z-index: 9998;
}
.header-sp .gmenu-nav.active {
  opacity: 1;
  pointer-events: auto;
}
.header-sp .gmenu-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: var(--key-color1);
  overflow-y: scroll;
}
.header-sp .gmenu-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 14vw 12vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-sp .gmenu-inner::-webkit-scrollbar {
  display: none;
}

.header-sp.is-scrolled {
  background-color: var(--key-color1);
}
.header-sp.is-scrolled .header_drawerMenu .drawer_button .drawer_button_line {
  background: var(--key-color2);
}

.sp-menu {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.sp-menu__list ul li {
  font-size: 1.6rem;
  text-align: center;
}
.sp-menu__list ul li:nth-child(n+2) {
  margin-top: 1.5rem;
}
.sp-menu__footer {
  border-top: 1px solid #000;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}
.sp-menu__footer .contact {
  padding-bottom: 2rem;
}
.sp-menu__footer .contact p {
  font-size: 1.4rem;
  text-align: center;
}
.sp-menu__footer .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.66178vw;
}
.sp-menu__footer .links li {
  font-size: 1.3rem;
}
.sp-menu__footer .links li a {
  text-decoration: underline;
}
.sp-menu__copy {
  border-top: 1px solid #000;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}
.sp-menu__copy p {
  font-size: 3.19347vw;
  line-height: 1.8;
  text-align: center;
}

:root {
  --key-color1: #deff00;
  --key-color2: #231b3b;
  --key-color3: #241B3B;
  --key-color4: #8051FF;
  --key-color5: #ff7fe8;
}

/*@function nounit($value) {
  $_units:
  "%",                    // percentage
  em, ex, ch, rem,        // font
  vw, vh, vmin, vmax,     // viewport
  cm, mm, in, pt, pc, px, // absolute
  deg, grad, rad, trun,   // angle
  s, ms,                  // time
  Hz, kHz,                // frequency
  dpi, dpcm, dppx;        // resolution

  // 割る数のリスト
  $_divisors:
  1%,
  1em, 1ex, 1ch, 1rem,
  1vw, 1vh, 1vmin, 1vmax,
  1cm, 1mm, 1in, 1pt, 1pc, 1px,
  1deg, 1grad, 1rad, 1trun,
  1s, 1ms,
  1Hz, 1kHz,
  1dpi, 1dpcm, 1dppx;

  // 単位取得
  $_unit: unit($value);
  // 単位のインデックス番号を取得
  $_index-num: index($_units, $_unit);
  // 割る数を取得
  $_divisor: nth($_divisors, $_index-num);

  @return $value / $_divisor;
}*/
/* footer
-------------------------------------------------- */
.l-footer {
  width: 100%;
  margin-top: 8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 480px) {
  .l-footer {
    margin-top: 13.3089vw;
  }
}
.l-footer__wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 480px) {
  .l-footer__wrap {
    border-bottom: none;
  }
}
.l-footer__wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__wrap__inner .foot-left {
  width: 25%;
  padding-left: 3.6%;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-left {
    width: 100%;
    padding-inline: 5.32356vw;
    padding-block: 6.38805vw;
  }
}
.l-footer__wrap__inner .foot-left p {
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-left p {
    text-align: center;
  }
}
.l-footer__wrap__inner .foot-center {
  width: 40%;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding-left: 3%;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-center {
    width: 100%;
    border-left: none;
    border-top: 1px solid #000;
    border-right: none;
    padding-left: 0;
  }
}
.l-footer__wrap__inner .foot-center__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 3.2rem;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-center__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 5.32356vw;
    gap: 7.45254vw;
  }
}
.l-footer__wrap__inner .foot-center__inner .stone {
  width: 180px;
  position: relative;
}
.l-footer__wrap__inner .foot-center__inner .stone a {
  display: block;
}
.l-footer__wrap__inner .foot-center__inner .stone-video img {
  width: 100%;
}
.l-footer__wrap__inner .foot-center__inner .stone p {
  font-size: 1rem;
  text-decoration: underline;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-footer__wrap__inner .foot-center__inner .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-center__inner .description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.45254vw;
  }
}
.l-footer__wrap__inner .foot-center__inner .description .arrow {
  width: 60px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-center__inner .description .arrow {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
.l-footer__wrap__inner .foot-center__inner .description .arrow svg {
  width: 100%;
  fill: var(--key-color5);
}
.l-footer__wrap__inner .foot-center__inner .description p {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--key-color5);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-center__inner .description p {
    font-size: 3.19347vw;
    text-align: center;
  }
}
.l-footer__wrap__inner .foot-right {
  width: 35%;
  padding-left: 3.6%;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-right {
    width: 100%;
  }
}
.l-footer__wrap__inner .foot-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .l-footer__wrap__inner .foot-right ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.66178vw;
  }
}
.l-footer__wrap__inner .foot-right ul li {
  font-size: 1.3rem;
}
.l-footer__wrap__inner .foot-right ul li a {
  text-decoration: underline;
}
.l-footer__copy {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .l-footer__copy {
    padding-top: 6.65445vw;
    padding-inline: 6.38805vw;
    padding-bottom: 6.65445vw;
  }
}
.l-footer__copy p {
  font-size: 1.3rem;
  text-align: center;
}
@media (max-width: 480px) {
  .l-footer__copy p {
    font-size: 3.19347vw;
    line-height: 1.8;
  }
}

:root {
  --key-color1: #deff00;
  --key-color2: #231b3b;
  --key-color3: #241B3B;
  --key-color4: #8051FF;
  --key-color5: #ff7fe8;
}

/*@function nounit($value) {
  $_units:
  "%",                    // percentage
  em, ex, ch, rem,        // font
  vw, vh, vmin, vmax,     // viewport
  cm, mm, in, pt, pc, px, // absolute
  deg, grad, rad, trun,   // angle
  s, ms,                  // time
  Hz, kHz,                // frequency
  dpi, dpcm, dppx;        // resolution

  // 割る数のリスト
  $_divisors:
  1%,
  1em, 1ex, 1ch, 1rem,
  1vw, 1vh, 1vmin, 1vmax,
  1cm, 1mm, 1in, 1pt, 1pc, 1px,
  1deg, 1grad, 1rad, 1trun,
  1s, 1ms,
  1Hz, 1kHz,
  1dpi, 1dpcm, 1dppx;

  // 単位取得
  $_unit: unit($value);
  // 単位のインデックス番号を取得
  $_index-num: index($_units, $_unit);
  // 割る数を取得
  $_divisor: nth($_divisors, $_index-num);

  @return $value / $_divisor;
}*/
/* animation */
/* works */
.l-works__archives {
  padding-inline: 3.6%;
}
@media (max-width: 480px) {
  .l-works__archives {
    padding-inline: 6.38805vw;
  }
}
.l-works__archives__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 4rem;
}
@media (max-width: 480px) {
  .l-works__archives__inner {
    gap: 5.85525vw;
  }
}
.l-works__archives__inner .works-thum {
  width: calc(33.3333% - 2.6666666667rem);
}
@media (max-width: 480px) {
  .l-works__archives__inner .works-thum {
    width: 100%;
  }
}
.l-works__archives__inner .works-thum__inner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.2;
  z-index: 1;
  border-radius: 0.5rem;
}
.l-works__archives__inner .works-thum a {
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.l-works__archives__inner .works-thum a figure {
  width: 100%;
  height: 100%;
  position: relative;
}
.l-works__archives__inner .works-thum a figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  border-radius: 0.5rem;
}
.l-works__archives__inner .works-thum a .works-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 80%;
  height: 80%;
  padding: 7.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background-color: #8051ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0.5rem;
  opacity: 0;
}
.l-works__archives__inner .works-thum a .works-title-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-works__archives__inner .works-thum a .works-title .works-category {
  margin-bottom: 1rem;
}
.l-works__archives__inner .works-thum a .works-title .works-category span {
  color: #fff;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  letter-spacing: 0.05rem;
}
.l-works__archives__inner .works-thum a .works-title .works-category span:nth-child(n+2) {
  margin-left: 0.5rem;
}
.l-works__archives__inner .works-thum a .works-title p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .l-works__archives__inner .works-thum a .works-title p {
    font-size: 3.45987vw;
  }
}
.l-works__archives__inner .works-thum a:hover figure::before {
  content: "";
  position: absolute;
  opacity: 1;
}
.l-works__archives__inner .works-thum a:hover figure img {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.l-works__archives__inner .works-thum a:hover .works-title {
  opacity: 1;
}