@charset "UTF-8";
/*reset*/
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

html {
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none !important;
  color: inherit;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

dfn {
  font-weight: 400;
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-tab {
  display: none !important;
}

@media (max-width: 992px) {
  .hidden-tab {
    display: none !important;
  }
  .visible-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
.buttonShadow {
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.06);
}

@keyframes animBlob01 {
  0% {
    transform: translate(-30%, 40%) scale(1);
  }
  5% {
    transform: translate(20%, -30%) scale(0.8);
  }
  10% {
    transform: translate(50%, 10%) scale(0.9);
  }
  15% {
    transform: translate(0%, -50%) scale(1.1);
  }
  20% {
    transform: translate(-40%, -20%) scale(1.2);
  }
  25% {
    transform: translate(-10%, 30%) scale(0.9);
  }
  30% {
    transform: translate(30%, 50%) scale(0.7);
  }
  35% {
    transform: translate(50%, 0%) scale(0.8);
  }
  40% {
    transform: translate(20%, -40%) scale(1.1);
  }
  45% {
    transform: translate(-30%, -50%) scale(1.3);
  }
  50% {
    transform: translate(-50%, 0%) scale(1.2);
  }
  55% {
    transform: translate(-20%, 40%) scale(0.9);
  }
  60% {
    transform: translate(10%, 50%) scale(0.7);
  }
  65% {
    transform: translate(40%, 20%) scale(0.8);
  }
  70% {
    transform: translate(50%, -30%) scale(1);
  }
  75% {
    transform: translate(30%, -50%) scale(1.2);
  }
  80% {
    transform: translate(-10%, -40%) scale(1.1);
  }
  85% {
    transform: translate(-40%, -10%) scale(0.9);
  }
  90% {
    transform: translate(-50%, 30%) scale(0.8);
  }
  95% {
    transform: translate(-20%, 50%) scale(0.9);
  }
  100% {
    transform: translate(-30%, 40%) scale(1);
  }
}
@keyframes animBlob02 {
  0% {
    transform: translate(-40%, 30%) scale(0.8);
  }
  5% {
    transform: translate(30%, -40%) scale(1.1);
  }
  10% {
    transform: translate(50%, 20%) scale(1.3);
  }
  15% {
    transform: translate(10%, -50%) scale(1.2);
  }
  20% {
    transform: translate(-30%, -30%) scale(0.9);
  }
  25% {
    transform: translate(-50%, 10%) scale(0.7);
  }
  30% {
    transform: translate(-20%, 50%) scale(0.8);
  }
  35% {
    transform: translate(40%, 40%) scale(1);
  }
  40% {
    transform: translate(50%, -10%) scale(1.2);
  }
  45% {
    transform: translate(20%, -50%) scale(1.3);
  }
  50% {
    transform: translate(-40%, -40%) scale(1.1);
  }
  55% {
    transform: translate(-50%, -10%) scale(0.9);
  }
  60% {
    transform: translate(-30%, 30%) scale(0.7);
  }
  65% {
    transform: translate(10%, 50%) scale(0.8);
  }
  70% {
    transform: translate(40%, 20%) scale(1);
  }
  75% {
    transform: translate(50%, -30%) scale(1.2);
  }
  80% {
    transform: translate(30%, -50%) scale(1.1);
  }
  85% {
    transform: translate(-10%, -40%) scale(0.9);
  }
  90% {
    transform: translate(-50%, 0%) scale(0.8);
  }
  95% {
    transform: translate(-40%, 40%) scale(0.9);
  }
  100% {
    transform: translate(-40%, 30%) scale(0.8);
  }
}
@keyframes animBlob03 {
  0% {
    transform: translate(-20%, 20%) scale(1);
  }
  5% {
    transform: translate(10%, -30%) scale(0.9);
  }
  10% {
    transform: translate(30%, 0%) scale(0.8);
  }
  15% {
    transform: translate(40%, -20%) scale(0.9);
  }
  20% {
    transform: translate(30%, -40%) scale(1.1);
  }
  25% {
    transform: translate(0%, -30%) scale(1.2);
  }
  30% {
    transform: translate(-30%, -20%) scale(1.1);
  }
  35% {
    transform: translate(-40%, 0%) scale(1);
  }
  40% {
    transform: translate(-30%, 30%) scale(0.9);
  }
  45% {
    transform: translate(0%, 40%) scale(0.8);
  }
  50% {
    transform: translate(30%, 30%) scale(0.9);
  }
  55% {
    transform: translate(40%, 0%) scale(1);
  }
  60% {
    transform: translate(30%, -30%) scale(1.1);
  }
  65% {
    transform: translate(0%, -40%) scale(1.2);
  }
  70% {
    transform: translate(-30%, -30%) scale(1.1);
  }
  75% {
    transform: translate(-40%, 0%) scale(1);
  }
  80% {
    transform: translate(-30%, 30%) scale(0.9);
  }
  85% {
    transform: translate(0%, 40%) scale(0.8);
  }
  90% {
    transform: translate(30%, 30%) scale(0.9);
  }
  95% {
    transform: translate(20%, 0%) scale(1);
  }
  100% {
    transform: translate(-20%, 20%) scale(1);
  }
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  48% {
    transform: translateX(30px);
    opacity: 1;
  }
  49% {
    transform: translateX(30px);
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateX(-30px);
  }
  51% {
    opacity: 1;
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-tab {
  display: none !important;
}

@media (max-width: 992px) {
  .hidden-tab {
    display: none !important;
  }
  .visible-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
.buttonShadow {
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.06);
}

.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: linear-gradient(0deg, #dd3c14 0%, #ffa108 100%);
  filter: brightness(2);
  transition: 1.5s ease-in-out 0s;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .bg {
    height: 110vh;
  }
}
.bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #f0f2e6;
  opacity: 0;
  transition: 1.5s ease-in-out 0s;
}
.bg .noise {
  position: fixed;
  z-index: 3;
  opacity: 0.25;
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
}
.bg .filterLayer {
  position: fixed;
  z-index: 3;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.bg .symbol {
  position: fixed;
  z-index: 3;
  left: 50%;
  width: 130%;
  top: 180%;
  transform: translate(-50%, -50%);
  filter: brightness(3) blur(4vw);
  transition: 0.8s ease-in 0s;
}
@media only screen and (max-width: 991px) {
  .bg .symbol {
    top: 80%;
    width: 180%;
    filter: brightness(30) blur(14vw);
  }
}
.bg .symbol .symobolImg01 {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
  transition: 0.8s ease-in 0s;
}
.bg .symbol .symobolImg02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.8s ease-in 0s;
  -webkit-clip-path: inset(0 0 0 0%);
          clip-path: inset(0 0 0 0%);
}

.splashCopy {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24%;
  z-index: 10;
  transition: 0.95s ease-in-out 0s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media only screen and (max-width: 767px) {
  .splashCopy {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .splashCopy figure {
    width: 220px;
  }
}

html.is-splash01 .bg {
  filter: brightness(1);
}
html.is-splash01 .splashCopy {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
html.is-splash02 .bg .symbol {
  transition: 2s ease-in-out 0s;
}
html.is-splash02 .bg .symbol .symobolImg01 {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
html.is-splash02 .bg .symbol .symobolImg02 {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
html.is-splash03 .bg .symbol {
  width: 130%;
  top: 180%;
  filter: brightness(8) blur(8vw);
}
@media only screen and (max-width: 991px) {
  html.is-splash03 .bg .symbol {
    top: 80%;
    width: 160%;
    filter: brightness(30) blur(18vw);
  }
}
html.is-splash03 .bg .symbol .symobolImg01 {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
html.is-splash03 .bg .symbol .symobolImg02 {
  opacity: 0;
}
html.is-splash04 .splashCopy {
  -webkit-clip-path: inset(0 0% 0 100%);
          clip-path: inset(0 0% 0 100%);
}
html.is-splash05 header {
  opacity: 1;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  html.is-splash05 header {
    top: 25px;
  }
}
html.is-splash05 .gNav {
  opacity: 1;
  top: 30px;
}

header {
  position: fixed;
  width: 95vw;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  top: 10px;
  transition: 0.3s ease-in-out 0s;
}
header figure {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  header {
    left: 20px;
    transform: translateX(0);
  }
}

.gNav {
  opacity: 0;
  width: 28%;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  top: 10px;
  transition: 0.3s ease-in-out 0s;
}

html.is-splash02.is-splash03 .bg.fixedBg.is-intro::before {
  opacity: 1;
}
html.is-splash02.is-splash03 .bg.fixedBg.is-intro .symbol {
  opacity: 1;
  filter: brightness(8) blur(40px);
}

:root {
  --color-bg1: #dd3c14; /* 暗めの茶色がかった背景 */
  --color-bg2: #ffa108; /* 暖かみのある暗い背景 */
  --color1: 255, 170, 18; /* 明るいオレンジ */
  --color2: 255, 196, 74; /* 黄金色 */
  --color3: 255, 215, 100; /* 明るい黄色 */
  --color4: 220, 160, 50; /* アンバー */
  --color5: #ec3f00; /* ブラウン */
  --color-interactive: 240, 60, 20; /* インタラクティブ要素用の明るいオレンジ */
  --circle-size: 180%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
}
.gradient-bg .svgBlur {
  display: none;
}
.gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-tab {
  display: none !important;
}

@media (max-width: 992px) {
  .hidden-tab {
    display: none !important;
  }
  .visible-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
.buttonShadow {
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.06);
}

* {
  backface-visibility: hidden;
}

img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

::-webkit-scrollbar-track {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background-color: #f5f5f5;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html {
  /*overflow: hidden;*/
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
}
html.is-scroll {
  overflow-y: scroll;
}

body {
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  background: #f0f2e6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  margin: auto;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "palt";
}

a:hover {
  text-decoration: none;
}

/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-tab {
  display: none !important;
}

@media (max-width: 992px) {
  .hidden-tab {
    display: none !important;
  }
  .visible-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
.buttonShadow {
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.06);
}

footer {
  padding: 200px 100px 60px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
}
@media only screen and (max-width: 1024px) {
  footer {
    padding: 80px 24px;
  }
}
footer .sectionContainer {
  display: flex;
  flex-flow: row;
  gap: 24px;
}
@media only screen and (max-width: 1200px) {
  footer .sectionContainer {
    flex-wrap: wrap;
  }
}
footer .sectionContainer .col1 {
  width: 240px;
  position: sticky;
  top: 120px;
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  footer .sectionContainer .col1 {
    width: 100%;
    position: relative;
    top: 0;
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col1 {
    display: none;
  }
}
footer .sectionContainer .col1 .logo {
  width: 210px;
  position: sticky;
  top: 120px;
}
@media only screen and (max-width: 1200px) {
  footer .sectionContainer .col1 .logo {
    position: relative;
    top: 0;
  }
}
footer .sectionContainer .col2 {
  width: calc(100% - 240px);
}
@media only screen and (max-width: 1200px) {
  footer .sectionContainer .col2 {
    width: 100%;
  }
}
footer .sectionContainer .col2 > h2 {
  font-size: 18px;
  opacity: 0.7;
  line-height: 100%;
  margin-bottom: 16px;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 > h2 {
    font-size: 14px;
  }
}
footer .sectionContainer .col2 .naviWrap {
  position: relative;
  width: 100%;
  padding-top: 16px;
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .sectionContainer .col2 .naviWrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap {
    padding-top: 0;
  }
}
footer .sectionContainer .col2 .naviWrap ul {
  width: calc(50% - 4px);
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul {
    width: 100%;
  }
}
footer .sectionContainer .col2 .naviWrap ul li:nth-of-type(1) a::before {
  display: none;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li:nth-of-type(1) a::before {
    display: block;
  }
}
footer .sectionContainer .col2 .naviWrap ul li a {
  width: 100%;
  position: relative;
  padding: 16px 0;
  display: block;
}
footer .sectionContainer .col2 .naviWrap ul li a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li a {
    padding: 16px 0;
  }
}
footer .sectionContainer .col2 .naviWrap ul li a div {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
footer .sectionContainer .col2 .naviWrap ul li a div .num {
  width: 50px;
  font-size: 13px;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li a div .num {
    width: 40px;
    font-size: 14px;
  }
}
footer .sectionContainer .col2 .naviWrap ul li a div .linkName {
  display: flex;
  flex-flow: column;
  gap: 6px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li a div .linkName {
    gap: 4px;
  }
}
footer .sectionContainer .col2 .naviWrap ul li a div .linkName .en {
  font-size: 12px;
  line-height: 90%;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li a div .linkName .en {
    font-size: 11px;
  }
}
footer .sectionContainer .col2 .naviWrap ul li a div .linkName .jp {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .naviWrap ul li a div .linkName .jp {
    font-size: 14px;
    opacity: 0.7;
  }
}
footer .sectionContainer .col2 .CTAWrap {
  margin-top: 0px;
  position: relative;
  padding-top: 48px;
}
footer .sectionContainer .col2 .CTAWrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
@media only screen and (max-width: 1024px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap {
    flex-wrap: wrap;
    gap: 8px;
  }
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a {
  position: relative;
  width: 100%;
  padding: 48px 24px;
  overflow: hidden;
  align-items: center;
  border-radius: 16px;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.4);
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a:nth-of-type(2) .lead {
  color: #222 !important;
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a:nth-of-type(2) .arrowWrap figure {
  filter: brightness(0);
  opacity: 0.4;
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a:nth-of-type(2) .bigType {
  color: rgba(0, 0, 0, 0.1);
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a:nth-of-type(2)::before {
  display: none;
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  transition: 0.3s ease-in-out 0s;
  z-index: -1;
  filter: saturate(1);
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .lead {
  font-size: 16px;
  color: #fff;
  width: calc(100% - 60px);
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a .lead {
    font-size: 16px;
  }
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .bigType {
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  line-height: 0.9;
  z-index: -1;
  top: 10px;
  left: 10px;
  font-size: 80px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a .bigType {
    font-size: 64px;
  }
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .arrowWrap {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .arrowWrap .arrow {
  width: 16px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a .arrowWrap .arrow {
    width: 10px;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .buttonWrap a .arrowWrap {
    width: 30px;
    height: 30px;
  }
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .graphic {
  position: absolute;
  width: 420%;
  top: 30%;
  left: 200%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: -1;
  display: none;
}
footer .sectionContainer .col2 .CTAWrap .buttonWrap a .graphic.graphic2 {
  filter: brightness(0.4) blur(40px) grayscale(1);
}
footer .sectionContainer .col2 .CTAWrap .footWrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .footWrap {
    flex-wrap: wrap;
    gap: 8px;
  }
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink {
  padding: 48px 16px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink:nth-of-type(1) {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink {
    border-radius: 8px;
    width: 100%;
    padding: 24px 24px;
  }
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: 0.3s ease-in-out 0s;
  z-index: -1;
  filter: saturate(1);
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink p {
  width: calc(100% - 48px);
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink p {
    font-size: 13px;
    width: calc(100% - 48px);
  }
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink .arrowWrap {
  transition: 0.3s ease-in-out 0s;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
footer .sectionContainer .col2 .CTAWrap .footWrap .otherLink .arrowWrap .arrow {
  filter: grayscale(1);
  width: 10px;
}
footer .sectionContainer .col2 .CTAWrap .footWrap .copy {
  font-size: 10px;
  opacity: 0.7;
}
footer .sectionContainer .col2 .CTAWrap .snsWrap {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 42px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap {
    padding: 24px;
    border-radius: 12px;
    margin-top: 8px;
  }
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .line {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap .line {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap .line {
    border-radius: 8px;
  }
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .line .logo {
  width: 64px;
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .line .lead {
  font-size: 13px;
  line-height: 120%;
  width: -webkit-fill-available;
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .line .QR {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap .line .QR {
    display: none;
  }
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks {
  display: flex;
  gap: 8px;
  width: calc(50% - 8px);
}
@media only screen and (max-width: 1024px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks {
    width: 100%;
  }
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks a {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  width: calc(50% - 4px);
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks a {
    border-radius: 4px;
  }
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks a > figure {
  width: 24px;
}
footer .sectionContainer .col2 .CTAWrap .snsWrap .snsLinks a p {
  font-size: 16px;
}
footer .sectionContainer .col2 .CTAWrap .copyWrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  position: relative;
}
footer .sectionContainer .col2 .CTAWrap .copyWrap .devider {
  position: absolute;
  width: calc(100% - 100px);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  top: 50%;
  left: 0;
}
footer .sectionContainer .col2 .CTAWrap .copyWrap p {
  font-size: 10px;
}

/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-tab {
  display: none !important;
}

@media (max-width: 992px) {
  .hidden-tab {
    display: none !important;
  }
  .visible-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
.buttonShadow {
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.06);
}

header {
  position: fixed;
  top: 20px;
  z-index: 100;
}
header .sectionContainer {
  width: calc(100% - 60px);
  display: flex;
}
@media only screen and (max-width: 767px) {
  header .sectionContainer {
    width: calc(100% - 40px);
  }
}
header .sectionContainer .logo {
  width: 210px;
}
@media only screen and (max-width: 767px) {
  header .sectionContainer .logo {
    width: 160px;
  }
}

.headerNavi {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 32px;
  z-index: 100;
  flex-flow: row;
  transition: 0.3s ease-in-out 0s;
  opacity: 0;
  top: 15px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .headerNavi {
    display: none;
  }
}
.headerNavi h3 {
  font-size: 13px;
}
.headerNavi .row {
  display: flex;
  gap: 16px;
}
.headerNavi a {
  display: flex;
  gap: 2px;
  opacity: 0.7;
}
.headerNavi a .en {
  font-size: 12px;
  text-align: left;
}
.headerNavi a .jp {
  text-align: left;
  font-size: 12px;
  opacity: 0.7;
}

html.is-splash05 .headerNavi {
  opacity: 1;
  top: 30px;
}

/* menu toggle btn */
.menu-toggle {
  position: fixed;
  top: 24px;
  right: 19px;
  width: 48px;
  height: 48px;
  border-radius: 8em;
  transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: right;
  cursor: pointer;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    top: 16px;
    right: 24px;
  }
}

.menu-toggle.opened {
  width: 60px;
}
@media only screen and (max-width: 767px) {
  .menu-toggle.opened {
    width: 30px;
  }
}

@media only screen and (min-width: 1025px) {
  .menu-copy .menu-toggle:hover .menu-copy {
    left: 20px;
  }
}

.menu-toggle.opened .menu-copy {
  opacity: 0;
}

.menu-toggle-icon {
  position: absolute;
  right: 0;
  top: -5px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -webkit-clip-path: circle(35% at 50% 50%);
          clip-path: circle(35% at 50% 50%);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .menu-toggle-icon {
    width: 48px;
    height: 48px;
    top: -2px;
    right: -9px;
  }
}

@media only screen and (min-width: 1025px) {
  .menu-toggle:hover .menu-toggle-icon {
    -webkit-clip-path: circle(35% at 50% 50%);
            clip-path: circle(35% at 50% 50%);
  }
}

@media only screen and (min-width: 1025px) {
  .menu-toggle:hover .menu-copy {
    left: 10px;
  }
}

.menu-toggle.opened .menu-toggle-icon {
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  transform: scale(1.125);
}
@media only screen and (max-width: 767px) {
  .menu-toggle.opened .menu-toggle-icon {
    transform: scale(1);
    right: 1px;
  }
}

.hamburger {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  top: 50%;
  opacity: 1;
}

@media only screen and (min-width: 1025px) {
  .menu-toggle:hover .hamburger {
    top: 50%;
    opacity: 1;
  }
}

.menu-toggle.opened .hamburger {
  top: 50%;
  opacity: 1;
}

.menu-bar {
  position: absolute;
  width: 15px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.4);
  transition-property: transform;
  transition: all 250ms ease-out;
}

.menu-bar[data-position=top] {
  transform: translateY(-3px);
}

.menu-bar[data-position=bottom] {
  transform: translateY(3px);
}

.menu-toggle.opened .menu-bar[data-position=top] {
  transform: translateY(0) rotate(45deg) scaleX(1.05);
}

.menu-toggle.opened .menu-bar[data-position=bottom] {
  transform: translateY(0) rotate(-45deg) scaleX(1.05);
}

/* menu */
.menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  background: linear-gradient(180deg, #f0f2e6 0%, #f1cc97 100%);
  backdrop-filter: blur(240px);
  -webkit-backdrop-filter: blur(240px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1000px;
  z-index: 998;
  overflow-y: scroll;
}
.menu .bigType {
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14vw;
  opacity: 0.02;
  line-height: 90%;
}
@media only screen and (max-width: 767px) {
  .menu .bigType {
    font-size: 28vw;
    top: 10px;
    left: 10px;
  }
}
.menu .menuContainer {
  padding: 100px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}
.menu .menuContainer .col1 {
  width: 500px;
}
.menu .menuContainer .col2 {
  width: calc(100% - 520px);
  padding-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer .col2 {
    padding: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer {
    flex-wrap: wrap;
    padding: 84px 24px;
  }
  .menu .menuContainer .col1 {
    width: 100%;
  }
  .menu .menuContainer .col2 {
    width: 100%;
  }
}
.menu .menuContainer > h2 {
  font-size: 18px;
  opacity: 0.7;
  line-height: 100%;
  margin-bottom: 16px;
  margin-top: -2px;
}
.menu .menuContainer .naviWrap {
  position: relative;
  width: 100%;
  padding-top: 16px;
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap {
    padding-top: 8px;
  }
}
.menu .menuContainer .naviWrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.menu .menuContainer .naviWrap ul {
  width: calc(50% - 4px);
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul {
    width: 100%;
  }
}
.menu .menuContainer .naviWrap ul:nth-of-type(1) li:nth-of-type(1) ::before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul:nth-of-type(1) li:nth-of-type(1) ::before {
    display: none !important;
  }
}
.menu .menuContainer .naviWrap ul li:nth-of-type(1) a::before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li:nth-of-type(1) a::before {
    display: block;
  }
}
.menu .menuContainer .naviWrap ul li a {
  width: 100%;
  position: relative;
  padding: 32px 0;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer .naviWrap ul li a {
    padding: 12px 0;
  }
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li a {
    padding: 16px 0;
  }
}
.menu .menuContainer .naviWrap ul li a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
.menu .menuContainer .naviWrap ul li a div {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.menu .menuContainer .naviWrap ul li a div .num {
  width: 32px;
  font-size: 11px;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li a div .num {
    width: 40px;
  }
}
.menu .menuContainer .naviWrap ul li a div .linkName {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer .naviWrap ul li a div .linkName {
    gap: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li a div .linkName {
    gap: 2px;
  }
}
.menu .menuContainer .naviWrap ul li a div .linkName .en {
  font-size: 11px;
  line-height: 90%;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li a div .linkName .en {
    font-size: 11px;
  }
}
.menu .menuContainer .naviWrap ul li a div .linkName .jp {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .naviWrap ul li a div .linkName .jp {
    font-size: 14px;
  }
}
.menu .menuContainer .CTAWrap {
  position: relative;
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap {
    margin-top: 0;
    padding-top: 16px;
  }
}
.menu .menuContainer .CTAWrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.menu .menuContainer .CTAWrap .buttonWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .buttonWrap {
    gap: 4px;
  }
}
.menu .menuContainer .CTAWrap .buttonWrap a {
  position: relative;
  width: 100%;
  padding: 42px 16px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  .menu .menuContainer .CTAWrap .buttonWrap a {
    padding: 32px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .buttonWrap a {
    width: 100%;
    border-radius: 12px;
    padding: 24px 16px;
  }
}
.menu .menuContainer .CTAWrap .buttonWrap a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  transition: 0.3s ease-in-out 0s;
  z-index: -1;
  filter: saturate(1);
}
.menu .menuContainer .CTAWrap .buttonWrap a:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.4);
}
.menu .menuContainer .CTAWrap .buttonWrap a:nth-of-type(2)::before {
  display: none;
}
.menu .menuContainer .CTAWrap .buttonWrap a:nth-of-type(2) .lead {
  color: #222;
}
.menu .menuContainer .CTAWrap .buttonWrap a:nth-of-type(2) .arrowWrap figure {
  filter: brightness(0);
  opacity: 0.4;
}
.menu .menuContainer .CTAWrap .buttonWrap a:nth-of-type(2) .bigType {
  color: rgba(0, 0, 0, 0.08);
}
.menu .menuContainer .CTAWrap .buttonWrap a .lead {
  font-size: 24px;
  color: #fff;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  width: calc(100% - 60px);
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .buttonWrap a .lead {
    font-size: 16px;
    width: calc(100% - 50px);
  }
}
.menu .menuContainer .CTAWrap .buttonWrap a .bigType {
  top: 10px;
  left: 10px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.9;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .buttonWrap a .bigType {
    font-size: 42px;
  }
}
.menu .menuContainer .CTAWrap .buttonWrap a .arrowWrap {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .buttonWrap a .arrowWrap {
    right: 24px;
  }
}
.menu .menuContainer .CTAWrap .buttonWrap a .arrowWrap .arrow {
  width: 10px;
}
.menu .menuContainer .CTAWrap .buttonWrap a .graphic {
  position: absolute;
  display: none;
  width: 420%;
  top: 30%;
  left: 200%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: -1;
}
.menu .menuContainer .CTAWrap .buttonWrap a .graphic.graphic2 {
  filter: brightness(0.4) blur(40px) grayscale(1);
}
.menu .menuContainer .CTAWrap .footWrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .footWrap {
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
}
.menu .menuContainer .CTAWrap .footWrap .otherLink {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 12px;
  border-radius: 12px;
  justify-content: space-between;
  height: 100%;
  height: 64px;
}
.menu .menuContainer .CTAWrap .footWrap .otherLink:nth-of-type(1) {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .footWrap .otherLink {
    width: 100%;
    margin-top: 0;
    height: auto;
  }
}
.menu .menuContainer .CTAWrap .footWrap .otherLink .textLink {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu .menuContainer .CTAWrap .footWrap .otherLink p {
  font-size: 12px;
  width: 100%;
  letter-spacing: 0;
  text-align: center;
}
.menu .menuContainer .CTAWrap .footWrap .otherLink .arrowWrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.menu .menuContainer .CTAWrap .footWrap .otherLink .arrowWrap .arrow {
  width: 12px;
  filter: brightness(10);
}
.menu .menuContainer .CTAWrap .snsWrap {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer .CTAWrap .snsWrap {
    margin-bottom: 0;
    margin-top: 16px;
    padding-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .snsWrap {
    margin-top: 4px;
    padding-top: 0px;
  }
}
.menu .menuContainer .CTAWrap .snsWrap .line {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .menu .menuContainer .CTAWrap .snsWrap .line {
    justify-content: center;
    gap: 16px;
  }
}
.menu .menuContainer .CTAWrap .snsWrap .line .lineWrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu .menuContainer .CTAWrap .snsWrap .line .logo {
  width: 64px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .snsWrap .line .lead {
    font-size: 12px;
  }
}
.menu .menuContainer .CTAWrap .snsWrap .line .QR {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .menu .menuContainer .CTAWrap .snsWrap .line .QR {
    display: none;
  }
}
.menu .menuContainer .CTAWrap .snsWrap .snsLinks {
  display: flex;
  gap: 8px;
  width: 100%;
}
.menu .menuContainer .CTAWrap .snsWrap .snsLinks a {
  display: flex;
  gap: 8px;
  padding: 32px 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  width: calc(50% - 4px);
  justify-content: center;
}
.menu .menuContainer .CTAWrap .snsWrap .snsLinks a > figure {
  width: 24px;
}
.menu .menuContainer .CTAWrap .snsWrap .snsLinks a p {
  font-size: 16px;
}

.menu-toggle {
  opacity: 0;
}

html.is-splash05 .menu-toggle {
  opacity: 1;
}

* {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans CJK JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: rgb(42, 36, 27);
}
* img {
  width: 100%;
  height: auto;
  display: block;
}

.serifFont {
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}

main {
  position: relative;
  z-index: 4;
}

.Headanm {
  will-change: transform, opacity, filter;
}

.subHeadanm {
  will-change: transform, opacity, filter;
}

section {
  will-change: transform;
}

.sectionKv {
  overflow: hidden;
  height: 100dvh;
  z-index: 2;
  position: relative;
}
.sectionKv .textBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.sectionKv .textBlock .leadCopy {
  transition: 1.02s ease-in-out 0.4s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media only screen and (max-width: 767px) {
  .sectionKv .textBlock .leadCopy {
    transition: 0.5s ease-in-out 0.4s;
  }
}
.sectionKv .textBlock .leadCopy h1 {
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
  display: inline-block;
}
.sectionKv .textBlock .leadCopy p {
  font-size: 5vw;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.sectionKv .textBlock .leadCopy p.serifFont {
  margin-left: 4.5vw;
}
@media only screen and (max-width: 767px) {
  .sectionKv .textBlock .leadCopy p {
    font-size: 11vw;
    width: 36px;
  }
}
.sectionKv .textBlock .leadCopy p span {
  letter-spacing: -0.1em;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
.sectionKv .textBlock .leadCopy p span.kern01 {
  letter-spacing: -0.35em;
}
.sectionKv .textBlock .leadCopy p span.kern02 {
  letter-spacing: -0.08em;
}
.sectionKv .textBlock .leadCopy .scrollWrap {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  flex-flow: column;
  display: none;
}
@media only screen and (max-width: 767px) {
  .sectionKv .textBlock .leadCopy .scrollWrap {
    display: none;
  }
}
.sectionKv .textBlock .leadCopy .scrollWrap p {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .sectionKv .textBlock .leadCopy .scrollWrap p {
    font-size: 10px;
  }
}
.sectionKv .textBlock .leadCopy .scrollWrap .arrowWrap {
  width: 12px;
  transform: rotate(90deg);
  margin-top: 4px;
  margin-left: -2px;
}
.sectionKv .textBlock .leadCopy .scrollWrap .arrowWrap figure {
  width: 100%;
  filter: brightness(0);
  opacity: 0.6;
}

.kvImage {
  pointer-events: none;
  height: 100dvh;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: overlay;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
.kvImage::-webkit-scrollbar {
  display: none;
}
.kvImage .bgTypeKv {
  position: absolute;
  left: 30px;
  bottom: 30px;
  line-height: 86%;
  font-size: 13vw;
  opacity: 0.3;
  font-weight: 300 !important;
  z-index: 3;
  transform: scale(1.03);
  transition: 0.3s ease-in 0s;
  opacity: 0;
  color: rgb(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .kvImage .bgTypeKv {
    left: 20px;
    font-size: 21vw;
    opacity: 0.02;
  }
}

.kvHeight {
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .kvHeight {
    display: none;
  }
}
.kvHeight .scrollWrap {
  position: absolute;
  left: 20px;
  bottom: 0px;
  opacity: 0;
  z-index: 4;
}
.kvHeight .scrollWrap p {
  transform: rotate(90deg) translate(-16px, 3px);
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .kvHeight .scrollWrap p {
    font-size: 10px;
  }
}
.kvHeight .scrollWrap .arrowWrap {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .kvHeight .scrollWrap .arrowWrap {
    width: 24px;
    height: 24px;
  }
}
.kvHeight .scrollWrap .arrowWrap figure {
  width: 10px;
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .kvHeight .scrollWrap .arrowWrap figure {
    width: 6px;
  }
}

html.is-splash05 .kvImage .bgTypeKv {
  opacity: 0.3;
  transform: scale(1);
}
@media only screen and (max-width: 767px) {
  html.is-splash05 .kvImage .bgTypeKv {
    opacity: 0.1;
  }
}
html.is-splash05 .sectionKv .textBlock .leadCopy {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
html.is-splash05 .kvHeight .scrollWrap {
  bottom: 20px;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  html.is-splash05 .kvHeight .scrollWrap {
    display: none;
  }
}

.floatBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  opacity: 1;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1025px) {
  .floatBtn:hover {
    transform: scale(1.05);
  }
}
@media only screen and (max-width: 767px) {
  .floatBtn {
    opacity: 0;
    bottom: 20px;
    right: 20px;
  }
}
.floatBtn .floatBtnWrap {
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5e08 0%, #dd1414 100%);
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out 0s;
  pointer-events: all;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
}
.floatBtn .floatBtnWrap p {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .floatBtn .floatBtnWrap p {
    font-size: 12px;
  }
}
.floatBtn .floatBtnWrap .floatArrowWrap {
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floatBtn .floatBtnWrap .floatArrowWrap figure {
  width: 10px;
}

html.is-splash05 .floatBtn .floatBtnWrap {
  opacity: 1;
  transform: scale(1);
}

.sectionIntro {
  position: relative;
  z-index: 4;
  width: calc(100% - 210px);
  margin-left: auto;
  padding: 50vh 0;
  overflow: clip;
}
@media only screen and (max-width: 1024px) {
  .sectionIntro {
    width: calc(100% - 60px);
    padding: 60px 0 120px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionIntro {
    width: calc(100% - 30px);
    margin-left: auto;
    padding: 60px 0 240px;
  }
}
.sectionIntro h2 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .sectionIntro h2 {
    margin-bottom: 48px;
  }
}
.sectionIntro h2 span {
  font-size: 32px;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 1024px) {
  .sectionIntro h2 span {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionIntro h2 span {
    font-size: 16px;
  }
}
.sectionIntro .phrase {
  display: flex;
  flex-flow: column;
  gap: 30vh;
}
@media only screen and (max-width: 1024px) {
  .sectionIntro .phrase {
    gap: 30vh;
  }
}
@media only screen and (max-width: 767px) {
  .sectionIntro .phrase {
    gap: 180px;
  }
}
.sectionIntro .phrase .messageWrap {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-flow: column;
  gap: 1vh;
}
.sectionIntro .phrase .messageWrap h2 span {
  will-change: opacity, transform, filter;
}
.sectionIntro .phrase .messageWrap p {
  font-size: 32px;
  font-weight: 400;
  line-height: 200%;
}
.sectionIntro .phrase .messageWrap p span {
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  will-change: opacity, transform, filter;
}
@media only screen and (max-width: 1024px) {
  .sectionIntro .phrase .messageWrap p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionIntro .phrase .messageWrap p {
    font-size: 16px;
    line-height: 240%;
  }
}
.sectionIntro .phrase .logoCC {
  width: calc(100% - 200px);
}
@media only screen and (max-width: 767px) {
  .sectionIntro .phrase .logoCC {
    width: calc(100% - 60px);
  }
}

.bgBlobWrap {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bgBlobWrap .blob {
  filter: blur(40px) brightness(1);
  width: 10vw;
  height: 10vw;
  top: 85%;
  left: 45%;
  position: absolute;
  transition: 2.2s ease-in-out 0s;
  transform: scale(0);
  opacity: 0;
}
.bgBlobWrap .blob > div {
  background: linear-gradient(180deg, #ff5e08 0%, #dd1414 100%);
  border-radius: 999999px;
  width: 100%;
  height: 100%;
}
.bgBlobWrap .blob .blob03 {
  top: 20%;
  left: 6%;
}
.bgBlobWrap .blob .blob04 {
  top: 64%;
  left: 36%;
}
.bgBlobWrap .blob.blob01 div {
  animation: animBlob01 36s infinite;
}
.bgBlobWrap .blob.blob02 div {
  animation: animBlob02 42s infinite;
}
.bgBlobWrap .blob.blob03 div {
  animation: animBlob03 36s infinite;
}
.bgBlobWrap .blob.blob04 div {
  animation: animBlob02 42s infinite;
}
.bgBlobWrap.is-step01 .blob01 {
  opacity: 1;
  top: 65%;
  left: 43%;
  transform: scale(1.1);
}
.bgBlobWrap.is-step01 .blob02 {
  opacity: 1;
  top: 66%;
  left: 42%;
  transform: scale(1.1);
}
.bgBlobWrap.is-step01.is-step02 .blob01 {
  opacity: 1;
  top: 35%;
  left: 13%;
  transform: scale(3.2);
  filter: blur(24px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02 .blob02 {
  opacity: 1;
  top: 69%;
  left: 72%;
  transform: scale(1.85);
  filter: blur(24px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02 .blob03 {
  opacity: 0.3;
  top: 16%;
  left: 8%;
  transform: scale(2.15);
  filter: blur(40px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02 .blob04 {
  opacity: 0.2;
  top: 60%;
  left: 32%;
  transform: scale(1.9);
  filter: blur(16px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02.is-step03 .blob01 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(3.2);
  filter: blur(8px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02.is-step03 .blob02 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(1.85);
  filter: blur(216x) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02.is-step03 .blob03 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(2.15);
  filter: blur(40px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02.is-step03 .blob04 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(1.9);
  filter: blur(16px) brightness(1.2);
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04 .blob01 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(8.2);
  filter: blur(8px) brightness(1.8);
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04 .blob02 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(7.85);
  filter: blur(216x) brightness(1.7);
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04 .blob03 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(8.15);
  filter: blur(40px) brightness(1.8);
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04 .blob04 {
  opacity: 1;
  top: 45%;
  left: 45%;
  transform: scale(8.9);
  filter: blur(16px) brightness(1.4);
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04.is-step05 .blob01 {
  opacity: 0;
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04.is-step05 .blob02 {
  opacity: 0;
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04.is-step05 .blob03 {
  opacity: 0;
}
.bgBlobWrap.is-step01.is-step02.is-step03.is-step04.is-step05 .blob04 {
  opacity: 0;
}

.sectionVoice {
  position: relative;
  z-index: 6;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.25) 100%);
  padding: 15vw 5vw;
  overflow: clip;
}
@media only screen and (max-width: 1024px) {
  .sectionVoice {
    padding: 120px 24px;
  }
}
.sectionVoice .container ul {
  margin-top: 8vw;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.sectionVoice .container ul img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container ul {
    flex-wrap: wrap;
  }
}
.sectionVoice .container ul li {
  width: 32%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .sectionVoice .container ul li {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container ul li {
    width: 78%;
    margin-top: 96px;
  }
}
.sectionVoice .container ul li:nth-of-type(1) {
  margin-top: 4vw;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container ul li:nth-of-type(1) {
    margin-top: 96px;
    margin-left: auto;
  }
}
.sectionVoice .container ul li > figure {
  width: 20%;
}
.sectionVoice .container ul li .rightBox {
  width: 73%;
}
.sectionVoice .container ul li .rightBox .comment {
  font-size: 20px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container ul li .rightBox .comment {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.sectionVoice .container ul li .rightBox .name {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container ul li .rightBox .name {
    font-size: 11px;
  }
}
.sectionVoice .container ul li .rightBox .corpLogo {
  margin-top: 10%;
  overflow: hidden;
}
.sectionVoice .container ul li .rightBox .corpLogo img {
  opacity: 0;
  transform: scale(1.1);
}
.sectionVoice .container .gridLogoContainer {
  margin-top: 42px;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container .gridLogoContainer {
    margin-top: 32px;
  }
}
.sectionVoice .container .gridLogoWrap {
  display: grid;
  grid-template-columns: repeat(60, 1fr); /* 最小公倍数を使用 */
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .sectionVoice .container .gridLogoWrap {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container .gridLogoWrap {
    grid-template-columns: repeat(12, 1fr);
  }
}
.sectionVoice .container .gridLogoWrap > figure {
  transform: rotateY(90deg);
  will-change: transform, opacity;
}
.sectionVoice .container .gridLogoWrap > figure:nth-of-type(-n + 5) {
  grid-column: span 12; /* 60/6=10 */
}
.sectionVoice .container .gridLogoWrap > figure:nth-of-type(n + 6) {
  grid-column: span 10; /* 60/5=12 */
}
@media only screen and (max-width: 1024px) {
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(-n + 4) {
    grid-column: span 3; /* 12/4=3 */
  }
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(n + 5):nth-of-type(-n + 8) {
    grid-column: span 3;
  }
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(n + 9):nth-of-type(-n + 11) {
    grid-column: span 4;
  }
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(n + 7) {
    width: auto;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(-n + 8) {
    grid-column: span 6 !important;
  }
  .sectionVoice .container .gridLogoWrap > figure:nth-of-type(n + 9) {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 1024px) {
  .sectionVoice .container .gridLogoWrap > figure {
    transform: translate(5px, 5px);
    opacity: 0;
  }
}
.sectionVoice .philosophyWrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 64px;
}
.sectionVoice .philosophyWrap .textWrap {
  width: calc(40% - 16px);
}
.sectionVoice .philosophyWrap .textWrap h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
.sectionVoice .philosophyWrap .textWrap p {
  font-size: 16px;
  line-height: 200%;
  color: rgba(42, 36, 27, 0.95);
}
.sectionVoice .philosophyWrap figure {
  width: calc(60% - 16px);
}
.sectionVoice .voiceWrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .voiceWrap {
    margin-top: 140px;
  }
}
.sectionVoice .voiceWrap * {
  will-change: transform, opacity;
}
.sectionVoice .sprit {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 24vw;
  line-height: 0.9;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.1);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .sectionVoice .sprit {
    font-size: 240px;
    top: 48px;
  }
}
.sectionVoice .sprit span {
  letter-spacing: -0.08em;
  font-weight: 100;
}

.sectionCC {
  overflow: clip;
  position: relative;
  z-index: 6;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.25) 100%);
  padding: 15vw 5vw;
  overflow: clip;
}
@media only screen and (max-width: 1024px) {
  .sectionCC {
    padding: 120px 24px;
  }
}
.sectionCC .philosophyWrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 64px;
}
@media only screen and (max-width: 1024px) {
  .sectionCC .philosophyWrap {
    flex-flow: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .sectionCC .philosophyWrap {
    padding: 32px 24px;
    margin-top: 36px;
    gap: 12px;
  }
}
.sectionCC .philosophyWrap .textWrap {
  width: calc(40% - 16px);
}
@media only screen and (max-width: 1024px) {
  .sectionCC .philosophyWrap .textWrap {
    width: 100%;
  }
}
.sectionCC .philosophyWrap .textWrap h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .sectionCC .philosophyWrap .textWrap h3 {
    font-size: 21px;
    margin-bottom: 8px;
  }
}
.sectionCC .philosophyWrap .textWrap p {
  font-size: 16px;
  line-height: 200%;
  color: rgba(42, 36, 27, 0.95);
}
@media only screen and (max-width: 767px) {
  .sectionCC .philosophyWrap .textWrap p {
    font-size: 13px;
  }
}
.sectionCC .philosophyWrap figure {
  width: calc(60% - 16px);
}
@media only screen and (max-width: 1024px) {
  .sectionCC .philosophyWrap figure {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionCC .philosophyWrap figure {
    width: calc(100% + 20px);
    margin-left: 0px;
  }
}
.sectionCC .voiceWrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sectionCC .voiceWrap {
    margin-top: 140px;
  }
}
.sectionCC .voiceWrap * {
  will-change: transform, opacity;
}
.sectionCC .sprit {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 24vw;
  line-height: 0.9;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.1);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .sectionCC .sprit {
    font-size: 240px;
    top: 48px;
  }
}
.sectionCC .sprit span {
  letter-spacing: -0.08em;
  font-weight: 100;
}

.sectionMag {
  position: relative;
  z-index: 7;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: rgba(255, 255, 255, 0.25);
  padding: 15vw 5vw;
  overflow: clip;
}
@media only screen and (max-width: 1024px) {
  .sectionMag {
    padding: 120px 24px;
  }
}
.sectionMag .container .headWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .headWrap {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .headWrap {
    margin-bottom: 32px;
  }
}
.sectionMag .container .interviewWrap01 {
  position: sticky;
  top: 110px;
  z-index: 0;
  width: 85%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap01 {
    width: 100%;
  }
}
.sectionMag .container .interviewWrap01 a {
  transition: 0.2s ease-in 0s;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .sectionMag .container .interviewWrap01 a:hover img {
    transform: scale(1.05);
  }
}
.sectionMag .container .interviewWrap01 a > img {
  transition: 0.3s ease-in 0s;
  position: relative;
}
.sectionMag .container .interviewWrap01 a > figure {
  position: relative;
}
.sectionMag .container .interviewWrap01 a > figure img {
  transition: 0.3s ease-in 0s;
}
.sectionMag .container .interviewWrap01 a > figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a > figure::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  }
}
.sectionMag .container .interviewWrap01 a .arrowWrapDetail {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .arrowWrapDetail {
    width: 40px;
    height: 40px;
  }
}
.sectionMag .container .interviewWrap01 a .arrowWrapDetail > figure {
  width: 12px;
  filter: brightness(10);
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .arrowWrapDetail > figure {
    width: 12px;
  }
}
.sectionMag .container .interviewWrap01 a .titleWrap {
  position: absolute;
  top: 42px;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .titleWrap {
    top: 30px;
  }
}
.sectionMag .container .interviewWrap01 a .titleWrap .magazineCaption {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .titleWrap .magazineCaption {
    font-size: 12px;
  }
}
.sectionMag .container .interviewWrap01 a .titleWrap h2 {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 48px;
  line-height: 130%;
}
@media only screen and (max-width: 1440px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 {
    font-size: 32px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 {
    font-size: 28px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 {
    font-size: 21px;
  }
}
.sectionMag .container .interviewWrap01 a .titleWrap h2 span {
  text-align: center;
  color: #fff;
  font-size: 32px;
  line-height: 150%;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  display: inline-block;
}
@media only screen and (max-width: 1440px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 span {
    font-size: 21px;
    line-height: 160%;
  }
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 span {
    font-size: 18px;
    line-height: 160%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap01 a .titleWrap h2 span {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1025px) {
  .sectionMag .container .interviewWrap01 a:hover > img {
    transform: scale(1.02);
  }
}
.sectionMag .container .interviewThum01 {
  transform: scale(1);
  overflow: hidden;
  border-radius: 16px;
  position: sticky;
  top: 19%;
  z-index: 0;
  margin-bottom: 400px;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewThum01 {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewThum01 {
    border-radius: 8px;
    margin-bottom: 200px;
  }
}
.sectionMag .container .interviewWrap02 {
  position: sticky;
  top: 19%;
  z-index: 2;
  margin-bottom: 400px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap02 {
    margin-bottom: 0;
  }
}
.sectionMag .container .interviewWrap02 .interviewThum02 {
  transform: scale(1);
  overflow: hidden;
  border-radius: 16px;
  position: sticky;
  top: 19%;
  z-index: 3;
  margin-bottom: 400px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap02 .interviewThum02 {
    margin-bottom: 200px;
    border-radius: 8px;
  }
}
.sectionMag .container .interviewWrap03 {
  position: sticky;
  top: 19%;
  z-index: 3;
  margin-bottom: 400px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap03 {
    margin-bottom: 200px;
  }
}
.sectionMag .container .interviewWrap03 .interviewThum03 {
  transform: scale(1);
  overflow: hidden;
  border-radius: 16px;
  position: sticky;
  top: 120px;
  z-index: 3;
  margin-bottom: 400px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap03 .interviewThum03 {
    margin-bottom: 200px;
    border-radius: 8px;
  }
}
.sectionMag .container .interviewWrap04 {
  position: relative;
  top: 19%;
  z-index: 4;
  overflow: hidden;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap04 {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 {
    margin-top: 24px;
  }
}
.sectionMag .container .interviewWrap04 a:hover .arrowWrap {
  background: rgba(0, 0, 0, 0.6);
}
.sectionMag .container .interviewWrap04 a:hover .arrowWrap figure {
  filter: brightness(3);
}
.sectionMag .container .interviewWrap04 .interviewThum04 {
  transform: scale(1);
  overflow: hidden;
  border-radius: 64px;
  position: sticky;
  top: 19%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .interviewThum04 {
    border-radius: 8px;
  }
}
.sectionMag .container .interviewWrap04 .textWrap {
  padding: 200px 48px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap04 .textWrap {
    padding: 120px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .textWrap {
    padding: 140px 16px;
  }
}
.sectionMag .container .interviewWrap04 .textWrap .magazineCaption {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .textWrap .magazineCaption {
    font-size: 12px;
  }
}
.sectionMag .container .interviewWrap04 .textWrap h2 {
  font-size: 48px;
  line-height: 130%;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0px 0px 41px rgba(0, 0, 0, 0.49);
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap04 .textWrap h2 {
    font-size: 28px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .textWrap h2 {
    font-size: 21px;
  }
}
.sectionMag .container .interviewWrap04 .textWrap .body {
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  line-height: 200%;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .textWrap .body {
    font-size: 13px;
    margin-bottom: 0px;
  }
}
.sectionMag .container .interviewWrap04 .bgWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15.5deg);
  z-index: -1;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.sectionMag .container .interviewWrap04 .bgWrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  z-index: -1;
}
.sectionMag .container .interviewWrap04 .bgWrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: 0.8;
  z-index: 1;
  background: linear-gradient(180deg, #ffa108 0%, #dd3c14 100%);
}
.sectionMag .container .interviewWrap04 .bgWrap .bgList {
  display: flex;
  width: 200vw;
  gap: 4px;
  will-change: transform;
}
@media only screen and (max-width: 1024px) {
  .sectionMag .container .interviewWrap04 .bgWrap .bgList {
    width: 300vw;
  }
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .interviewWrap04 .bgWrap .bgList {
    width: 420vw;
  }
}
.sectionMag .container .interviewWrap04 .bgWrap .bgList figure {
  opacity: 1;
  filter: brightness(0.3) grayscale(0.9);
}
.sectionMag .container .magazineListBtn {
  position: relative;
  z-index: 10;
  margin-top: 60px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .magazineListBtn {
    margin-top: 40px;
  }
}
.sectionMag .container .magazineListBtn .buttonWrap {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.sectionMag .container .magazineListBtn .buttonWrap .arrowWrap {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .magazineListBtn .buttonWrap .arrowWrap {
    width: 40px;
    height: 40px;
  }
}
.sectionMag .container .magazineListBtn .buttonWrap .arrowWrap figure {
  width: 24px;
  transition: 0.3s ease-in-out 0s;
  filter: brightness(1) grayscale(0);
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .magazineListBtn .buttonWrap .arrowWrap figure {
    width: 12px;
  }
}
.sectionMag .container .magazineListBtn .buttonWrap .buttonText {
  font-size: 16px;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 767px) {
  .sectionMag .container .magazineListBtn .buttonWrap .buttonText {
    font-size: 13px;
  }
}

.sectionFlow {
  overflow: clip;
  position: relative;
  z-index: 7;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: rgba(255, 255, 255, 0.1);
  padding: 15vw 5vw;
}
@media only screen and (max-width: 1024px) {
  .sectionFlow {
    padding: 160px 24px 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .sectionFlow {
    padding: 120px 24px;
  }
}
.sectionFlow .container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .sectionFlow .container {
    flex-wrap: wrap;
    display: block;
  }
}
.sectionFlow .container .headWrap {
  width: 30%;
  position: sticky;
  top: 180px;
}
@media only screen and (max-width: 1024px) {
  .sectionFlow .container .headWrap {
    width: 100%;
    top: 0;
    position: relative;
  }
}
.sectionFlow .container .headWrap .flowList {
  margin-top: 36px;
  display: flex;
  flex-flow: column;
  gap: 16px;
  position: relative;
  padding-left: 16px;
}
@media only screen and (max-width: 1024px) {
  .sectionFlow .container .headWrap .flowList {
    display: none;
  }
}
.sectionFlow .container .headWrap .flowList::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.sectionFlow .container .headWrap .flowList::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 28px;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in-out 0s;
}
.sectionFlow .container .headWrap .flowList.is-step02::after {
  top: 36px;
}
.sectionFlow .container .headWrap .flowList.is-step03::after {
  top: 72px;
}
.sectionFlow .container .headWrap .flowList .step {
  font-size: 14px;
  position: relative;
}
.sectionFlow .container .headWrap .flowList .step a p {
  font-size: 14px;
  color: rgba(42, 36, 27, 0.7);
}
.sectionFlow .container .flowContent {
  width: calc(60% - 60px);
  margin-top: 240px;
  display: flex;
  flex-flow: column;
  gap: 160px;
}
@media only screen and (max-width: 1024px) {
  .sectionFlow .container .flowContent {
    width: 100%;
    gap: 48px;
    margin-top: 32px;
  }
}
.sectionFlow .container .flowContent .photo {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .sectionFlow .container .flowContent .photo {
    border-radius: 8px;
    margin-bottom: 12px;
  }
}
.sectionFlow .container .flowContent h3 {
  font-size: 24px;
  margin-bottom: 12px;
  margin-left: -8px;
}
@media only screen and (max-width: 767px) {
  .sectionFlow .container .flowContent h3 {
    margin-left: -4px;
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.sectionFlow .container .flowContent p {
  font-size: 16px;
  line-height: 200%;
  color: rgba(42, 36, 27, 0.75);
}
@media only screen and (max-width: 767px) {
  .sectionFlow .container .flowContent p {
    font-size: 13px;
  }
}

.profileArea {
  margin-top: 200px;
}
@media only screen and (max-width: 767px) {
  .profileArea {
    margin-top: 80px;
  }
}
.profileArea .container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container {
    flex-wrap: wrap;
    display: block;
  }
}
.profileArea .container .headWrap {
  width: 100%;
  position: sticky;
  top: 180px;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .headWrap {
    width: 100%;
    top: 0;
    position: relative;
  }
}
.profileArea .container .profileCardList {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 48px;
  margin-top: 32px;
}
.profileArea .container .profileCardList .profileCard {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.profileArea .container .profileCardList .profileCard:nth-of-type(1) {
  z-index: 1;
}
.profileArea .container .profileCardList .profileCard:nth-of-type(2) {
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard {
    top: 0;
    position: relative;
  }
}
.profileArea .container .profileCardList .profileCard .profThum {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .profThum {
    width: 100%;
  }
}
.profileArea .container .profileCardList .profileCard .profThum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .profThum img {
    height: 240px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea {
  width: 50%;
  padding: 64px;
  display: flex;
  flex-flow: column;
  gap: 42px;
  height: 100%;
  justify-content: center;
}
.profileArea .container .profileCardList .profileCard .textArea * {
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea {
    width: 100%;
    padding: 42px;
    gap: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea {
    padding: 32px 24px;
    gap: 24px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .head {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.profileArea .container .profileCardList .profileCard .textArea .body {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea .body {
    gap: 8px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .role {
  font-size: 14px;
  line-height: 100%;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea .role {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .textArea .role {
    font-size: 12px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .name {
  font-size: 21px;
  line-height: 100%;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea .name {
    font-size: 18px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .profLead {
  font-size: 32px;
  line-height: 130%;
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea .profLead {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .textArea .profLead {
    font-size: 21px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .discription {
  font-size: 16px;
  line-height: 190%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans CJK JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 400 !important;
  color: rgba(42, 36, 27, 0.75);
}
@media only screen and (max-width: 1024px) {
  .profileArea .container .profileCardList .profileCard .textArea .discription {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .textArea .discription {
    font-size: 12px;
  }
}
.profileArea .container .profileCardList .profileCard .textArea .profSNS {
  display: flex;
  gap: 6px;
}
.profileArea .container .profileCardList .profileCard .textArea .profSNS a {
  display: flex;
  width: 48px;
  height: 48px;
  background: rgba(42, 36, 27, 0.4);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .textArea .profSNS a {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 1025px) {
  .profileArea .container .profileCardList .profileCard .textArea .profSNS a:hover {
    background: rgba(255, 255, 255, 0.85);
  }
  .profileArea .container .profileCardList .profileCard .textArea .profSNS a:hover figure {
    filter: brightness(0.2);
  }
}
.profileArea .container .profileCardList .profileCard .textArea .profSNS a figure {
  width: 20px;
  filter: brightness(1);
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .profileArea .container .profileCardList .profileCard .textArea .profSNS a figure {
    width: 18px;
  }
}

.sectionContact {
  overflow: clip;
  position: relative;
  z-index: 8;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: rgba(255, 255, 255, 0.1);
  padding: 15vw 5vw;
}
@media only screen and (max-width: 1024px) {
  .sectionContact {
    padding: 120px 24px;
  }
}
.sectionContact .container .headWrap {
  width: 100%;
  position: sticky;
}
.sectionContact .container .CTAWrap.mainCTA {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap.mainCTA {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
.sectionContact .container .CTAWrap.mainCTA .buttonWrap.buttonWrapMain a {
  padding: 64px 36px;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1025px) {
  .sectionContact .container .CTAWrap.mainCTA .buttonWrap.buttonWrapMain a:hover {
    transform: scale(1.01);
  }
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap.mainCTA .buttonWrap.buttonWrapMain a {
    padding: 42px 32px;
  }
}
.sectionContact .container .CTAWrap.mainCTA .buttonWrap.buttonWrapMain a .arrowWrap {
  width: 60px;
  height: 60px;
  right: 36px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap.mainCTA .buttonWrap.buttonWrapMain a .arrowWrap {
    width: 40px;
    height: 40px;
  }
}
.sectionContact .container .flow {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  padding: 48px;
  border-radius: 24px;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
  margin-top: 32px;
}
@media only screen and (max-width: 1024px) {
  .sectionContact .container .flow {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow {
    padding: 24px;
    margin-top: 8px;
    border-radius: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .CTAWrap {
    margin-top: 8px;
    margin-bottom: 0;
  }
}
.sectionContact .container .flow .headText {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .headText {
    margin-bottom: 16px;
  }
}
.sectionContact .container .flow .headText .en {
  font-size: 64px;
  opacity: 0.1;
  line-height: 0.9;
  margin-bottom: -16px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .headText .en {
    font-size: 48px;
  }
}
.sectionContact .container .flow .headText .jp {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .headText .jp {
    font-size: 18px;
  }
}
.sectionContact .container .flow .useFlow {
  width: 100%;
  flex-flow: wrap;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .useFlow {
    gap: 8px;
  }
}
.sectionContact .container .flow .step {
  width: calc(50% - 1px);
  background: rgba(255, 255, 255, 0.25);
  padding: 24px 48px;
  border-radius: 12px;
}
.sectionContact .container .flow .step:nth-of-type(1) {
  -webkit-clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 0 51%, 0% 0%);
          clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 0 51%, 0% 0%);
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step:nth-of-type(1) {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
  }
}
.sectionContact .container .flow .step .row {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step .row {
    margin-bottom: 4px;
  }
}
.sectionContact .container .flow .step .row .num {
  font-size: 84px;
  font-weight: 400;
  letter-spacing: -0.05em;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  position: absolute;
  left: -36px;
  top: -24px;
  z-index: -1;
  line-height: 90%;
  color: rgba(42, 36, 27, 0.08);
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step .row .num {
    font-size: 42px;
    top: -10px;
    left: auto;
    right: 10px;
  }
}
.sectionContact .container .flow .step .row .lead {
  font-size: 18px;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step .row .lead {
    font-size: 16px;
  }
}
.sectionContact .container .flow .step .body {
  font-size: 14px;
  line-height: 190%;
  color: rgba(42, 36, 27, 0.75);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .step .body {
    font-size: 13px;
    line-height: 150%;
  }
}
.sectionContact .container .flow .step .body span {
  display: inline-block;
  font-size: 11px;
  opacity: 0.6;
  line-height: 130%;
  margin-top: 8px;
}
.sectionContact .container .flow .step a {
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  border-radius: 999px;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1025px) {
  .sectionContact .container .flow .step a:hover {
    transform: scale(1.05);
  }
}
.sectionContact .container .flow .step a p {
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .otherUse {
    margin-bottom: 8px;
  }
}
.sectionContact .container .flow .otherUse h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .otherUse h3 {
    font-size: 18px;
  }
}
.sectionContact .container .flow .otherUse p {
  font-size: 14px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .flow .otherUse p {
    font-size: 13px;
  }
}
.sectionContact .container .CTAWrap {
  margin-top: 24px;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}
.sectionContact .container .CTAWrap .buttonWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain {
  margin-bottom: 8px;
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain a {
  width: 100%;
  padding: 80px 36px;
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain a .bigType {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  z-index: -1;
  line-height: 90%;
  left: 10px;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain a .bigType {
    font-size: 70px;
  }
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain a .lead {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap .buttonWrap.buttonWrapMain a .lead {
    font-size: 16px;
  }
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder {
  gap: 8px;
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a {
  padding: 48px 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a {
    width: 100%;
    padding: 24px 16px;
  }
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: 0.3s ease-in-out 0s;
  z-index: -1;
  filter: saturate(1);
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a p {
  color: #111;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a p {
    font-size: 13px;
    width: calc(100% - 48px);
  }
}
.sectionContact .container .CTAWrap .buttonWrap.buttonWrapUnder a:nth-of-type(2) .graphic2 {
  filter: brightness(0.4) blur(40px) grayscale(1);
}
.sectionContact .container .CTAWrap .buttonWrap a {
  position: relative;
  width: 100%;
  padding: 64px 64px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .sectionContact .container .CTAWrap .buttonWrap a {
    border-radius: 12px;
  }
}
.sectionContact .container .CTAWrap .buttonWrap a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, #ffa108 0%, #dd3c14 100%);
  transition: 0.3s ease-in-out 0s;
  z-index: -1;
  filter: saturate(1);
}
@media only screen and (min-width: 1025px) {
  .sectionContact .container .CTAWrap .buttonWrap a:hover {
    transform: scale(1.02);
  }
}
.sectionContact .container .CTAWrap .buttonWrap a:hover::before {
  left: 65%;
  filter: saturate(1.5);
}
.sectionContact .container .CTAWrap .buttonWrap a:hover .graphic {
  left: 240%;
  width: 540%;
}
.sectionContact .container .CTAWrap .buttonWrap a:hover .arrowWrap {
  transform: translateY(-50%) scale(1.1);
}
.sectionContact .container .CTAWrap .buttonWrap a .lead {
  font-size: 14px;
  color: #fff;
}
.sectionContact .container .CTAWrap .buttonWrap a .arrowWrap {
  transition: 0.3s ease-in-out 0s;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
.sectionContact .container .CTAWrap .buttonWrap a .arrowWrap .arrow {
  width: 10px;
}
.sectionContact .container .CTAWrap .buttonWrap a .graphic {
  display: none;
  transition: 0.3s ease-in-out 0s;
  position: absolute;
  width: 420%;
  top: 30%;
  left: 200%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: -1;
}
.sectionContact .container .CTAWrap .buttonWrap a .graphic.graphic2 {
  filter: brightness(0.9) blur(40px) grayscale(0.2);
}
.sectionContact .container .footWrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
.sectionContact .container .footWrap .otherLink {
  width: 100%;
  margin-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.sectionContact .container .footWrap .otherLink .textLink {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sectionContact .container .footWrap .otherLink p {
  font-size: 13px;
}
.sectionContact .container .footWrap .otherLink .arrowWrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
}
.sectionContact .container .footWrap .otherLink .arrowWrap .arrow {
  width: 12px;
  filter: brightness(10);
}

.sectionNews {
  overflow: clip;
  position: relative;
  z-index: 9;
  backdrop-filter: blur(128px);
  -webkit-backdrop-filter: blur(128px);
  background: rgba(255, 255, 255, 0.4);
  padding: 15vw 5vw;
}
@media only screen and (max-width: 1024px) {
  .sectionNews {
    padding: 120px 24px;
  }
}
.sectionNews .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container {
    flex-wrap: wrap;
  }
}
.sectionNews .container .headWrap {
  width: 20%;
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .headWrap {
    width: 100%;
  }
}
.sectionNews .container .newsList {
  width: 80%;
  margin-left: auto;
  margin-top: 160px;
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .newsList {
    width: 100%;
    margin-top: 32px;
  }
}
.sectionNews .container .newsList ul {
  position: relative;
}
.sectionNews .container .newsList ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.sectionNews .container .newsList ul li a {
  position: relative;
  padding: 24px 0;
  display: flex;
  width: 100%;
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .newsList ul li a {
    padding: 24px 0;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1025px) {
  .sectionNews .container .newsList ul li a:hover::after {
    width: 100%;
  }
}
.sectionNews .container .newsList ul li a:hover .arrowWrap {
  transform: translateY(-50%) scale(1.05);
}
.sectionNews .container .newsList ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  transition: 0.3s ease-in-out 0s;
  height: 1px;
  background: linear-gradient(180deg, #ff5e08 0%, #dd1414 100%);
  opacity: 0.6;
}
.sectionNews .container .newsList ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.sectionNews .container .newsList ul li a .tag {
  font-size: 13px;
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .sectionNews .container .newsList ul li a .tag {
    font-size: 12px;
    width: 90px;
  }
}
.sectionNews .container .newsList ul li a .data {
  font-size: 13px;
  width: 180px;
}
@media only screen and (max-width: 767px) {
  .sectionNews .container .newsList ul li a .data {
    font-size: 12px;
  }
}
.sectionNews .container .newsList ul li a .text {
  font-size: 16px;
  width: calc(100% - 64px);
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .newsList ul li a .text {
    width: calc(100% - 48px);
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionNews .container .newsList ul li a .text {
    font-size: 13px;
    width: 100%;
  }
}
.sectionNews .container .newsList ul li a .arrowWrap {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .newsList ul li a .arrowWrap {
    width: 36px;
    height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionNews .container .newsList ul li a .arrowWrap {
    width: 24px;
    height: 24px;
  }
}
.sectionNews .container .newsList ul li a .arrowWrap .arrow {
  width: 16px;
  filter: brightness(3) grayscale(1);
}
@media only screen and (max-width: 1024px) {
  .sectionNews .container .newsList ul li a .arrowWrap .arrow {
    width: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionNews .container .newsList ul li a .arrowWrap .arrow {
    width: 10px;
  }
}

.buttonAllWrap {
  width: 100%;
}
.buttonAllWrap .buttonAll {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 24px;
  display: flex;
  gap: 8px;
  border-radius: 999px;
  margin-top: 24px;
  align-items: center;
}
.buttonAllWrap .buttonAll p {
  color: rgb(42, 36, 27);
  font-size: 16px;
  line-height: 90%;
}
@media only screen and (max-width: 767px) {
  .buttonAllWrap .buttonAll p {
    font-size: 13px;
  }
}
.buttonAllWrap .buttonAll .arrowWrap {
  background: rgba(0, 0, 0, 0.6);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  transform: translateY(1px);
  justify-content: center;
}
.buttonAllWrap .buttonAll .arrowWrap .arrow {
  width: 10px;
  filter: brightness(3) grayscale(1);
}

.sectionEvent {
  overflow: clip;
  position: relative;
  z-index: 9;
  backdrop-filter: blur(128px);
  -webkit-backdrop-filter: blur(128px);
  background: rgba(255, 255, 255, 0.6);
  padding: 15vw 5vw;
}
@media only screen and (max-width: 1024px) {
  .sectionEvent {
    padding: 120px 24px;
  }
}
.sectionEvent .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .sectionEvent .container {
    flex-wrap: wrap;
  }
}
.sectionEvent .container .headWrap {
  width: 45%;
}
@media only screen and (max-width: 1440px) {
  .sectionEvent .container .headWrap {
    width: 100%;
  }
}
.sectionEvent .container .eventList {
  width: 50%;
  margin-top: 100px;
}
@media only screen and (max-width: 1440px) {
  .sectionEvent .container .eventList {
    width: 100%;
    margin-top: 42px;
  }
}
.sectionEvent .container .eventList ul {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.sectionEvent .container .eventList a {
  display: flex;
  gap: 3%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border-radius: 8px;
  position: relative;
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1025px) {
  .sectionEvent .container .eventList a:hover {
    transform: scale(1.02);
  }
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.sectionEvent .container .eventList a .thum {
  width: 50%;
  overflow: hidden;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .thum {
    width: 100%;
  }
}
.sectionEvent .container .eventList a .textWrap {
  width: 47%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 24px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap {
    width: 100%;
    gap: 12px;
  }
}
.sectionEvent .container .eventList a .textWrap .head {
  display: flex;
  flex-flow: column;
}
.sectionEvent .container .eventList a .textWrap .category {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: inline-block;
  width: -moz-fit-content;
  margin-bottom: 8px;
  width: fit-content;
  position: absolute;
  right: 0;
  color: rgba(0, 0, 0, 0.7);
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap .category {
    position: absolute;
    top: -2px;
    padding: 4px 8px;
  }
}
.sectionEvent .container .eventList a .textWrap .data {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  margin-bottom: 8px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap .data {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 12px;
  }
}
.sectionEvent .container .eventList a .textWrap .title {
  font-size: 18px;
  line-height: 130%;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap .title {
    font-size: 16px;
  }
}
.sectionEvent .container .eventList a .textWrap p.body {
  font-size: 14px;
  line-height: 200%;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 8px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap p.body {
    font-size: 12px;
  }
}
.sectionEvent .container .eventList a .textWrap .venue {
  font-size: 14px;
  opacity: 0.75;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .sectionEvent .container .eventList a .textWrap .venue {
    font-size: 12px;
  }
}
.sectionEvent .container .eventList a .textWrap .arrowWrap {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.sectionEvent .container .eventList a .textWrap .arrowWrap > figure {
  filter: brightness(10);
  width: 8px;
}

.sectionFooter {
  position: relative;
  z-index: 8;
  transform: translateY(-50px);
}

.progress {
  position: absolute;
  z-index: 10;
  background: #000;
  padding: 24px 48px;
  font-size: 24px;
  color: #fff;
  top: 30px;
  left: 30px;
}

section .container {
  max-width: 1400px;
  margin: auto;
  padding-right: 0rem;
  padding-left: 0rem;
}

.bigType {
  font-weight: 400;
}

h2 {
  font-weight: 300 !important;
}

@media only screen and (max-width: 767px) {
  .textBlock .body {
    font-size: 13px !important;
    line-height: 180%;
    margin-top: 4px;
    opacity: 0.75;
  }
}

footer {
  z-index: 10 !important;
}

.floatingNavi {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  z-index: 99;
  gap: 20px;
  opacity: 0;
  bottom: 0;
  transition: 0.3s ease-in-out 0s;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .floatingNavi {
    display: none;
  }
}
.floatingNavi a p {
  color: #fff;
  font-size: 12px;
  opacity: 0.4;
  position: relative;
  transition: 0.2s ease-in-out 0s;
  white-space: nowrap;
  display: inline-block;
}
.floatingNavi a p::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 2px;
  background: #fff;
  border-radius: 999px;
  display: inline-block;
  width: 0px;
  height: 0px;
  transition: 0.2s ease-in-out 0s;
}
.floatingNavi a.floatLinks01 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi a.floatLinks01 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.floatingNavi.is-active.is-active02 .floatLinks01 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02 .floatLinks01 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02 .floatLinks02 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02 .floatLinks02 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03 .floatLinks02 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03 .floatLinks02 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03 .floatLinks03 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03 .floatLinks03 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active04 .floatLinks03 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03.is-active04 .floatLinks03 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active04 .floatLinks04 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03.is-active04 .floatLinks04 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05 .floatLinks04 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05 .floatLinks04 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05 .floatLinks05 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05 .floatLinks05 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06 .floatLinks05 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06 .floatLinks05 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06 .floatLinks06 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06 .floatLinks06 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active07 .floatLinks06 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active07 .floatLinks06 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active07 .floatLinks07 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active07 .floatLinks07 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active08 .floatLinks07 p {
  color: #fff;
  opacity: 0.4;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active08 .floatLinks07 p::before {
  width: 0px;
  height: 0px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active08 .floatLinks08 p {
  color: #fff;
  opacity: 1;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active08 .floatLinks08 p::before {
  width: 4px;
  height: 4px;
}
.floatingNavi.is-active.is-active02.is-active03.is-active05.is-active06.is-active09 {
  opacity: 0;
  pointer-events: none;
  bottom: 0;
}

.h1Box {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.h1Box h1 {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 8px;
}

.headAnmVertical {
  will-change: transform, opacity;
}

.textBlockComponent {
  z-index: 2;
  height: 100%;
  position: relative;
}
.textBlockComponent.sticky {
  position: sticky;
  top: 160px;
  height: auto;
}
.textBlockComponent .bigType {
  font-size: 18vw;
  position: absolute;
  left: -3vw;
  top: -10vw;
  opacity: 0.05;
  line-height: 90%;
  color: #2a241b;
}
@media only screen and (max-width: 1024px) {
  .textBlockComponent .bigType {
    position: absolute;
    left: -16px;
    top: -54px;
    font-size: 80px;
    opacity: 0.1;
  }
}
.textBlockComponent .body {
  font-size: 16px;
  line-height: 200%;
  padding-left: 8px;
  color: rgba(42, 36, 27, 0.75);
}
@media only screen and (max-width: 1024px) {
  .textBlockComponent .body {
    font-size: 13px;
  }
}
.textBlockComponent h2 {
  font-size: 48px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .textBlockComponent h2 {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 8px;
  }
}
.textBlockComponent p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .textBlockComponent p {
    font-size: 13px;
    line-height: 180%;
  }
}

@media only screen and (max-width: 767px) {
  section {
    overflow: hidden;
  }
}

a .arrowWrap {
  overflow: hidden;
}
a:hover .arrow {
  animation: arrowMove 0.2s ease-in-out;
}

.hiddenContents {
  display: none !important;
}

.layoutCheck {
  border: red 1px solid;
  position: fixed;
  z-index: 999;
  width: calc(100% - 60px);
  height: calc(100vh - 60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
}/*# sourceMappingURL=main.css.map */