@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;
}

.menu-toggle {
  opacity: 1 !important;
}

header {
  opacity: 1 !important;
  top: 30px !important;
}

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

img {
  width: 100%;
}

.newsMain {
  padding: 160px 0;
  display: flex;
  flex-flow: column;
  gap: 64px;
}
@media only screen and (max-width: 767px) {
  .newsMain {
    gap: 32px;
    padding: 80px 0;
  }
}
.newsMain .sectionWidth {
  width: calc(100% - 60px);
  max-width: 680px;
  margin: auto;
}
.newsMain .sectionNewsHead h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .newsMain .sectionNewsHead h1 {
    font-size: 18px;
    line-height: 150%;
  }
}
.newsMain .sectionNewsHead .postDataEvent {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 32px;
  text-align: right;
  font-size: 11px;
  width: 100%;
  text-align: right;
  opacity: 0.75;
}
.newsMain .sectionNewsHead .postDataEvent::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.newsMain .sectionNewsHead .postDataMagazine {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 32px;
  align-items: center;
  width: 100%;
}
.newsMain .sectionNewsHead .postDataMagazine::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.newsMain .sectionNewsHead .postDataMagazine p.eventCategory {
  font-size: 11px;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}
.newsMain .sectionNewsHead .postDataMagazine p.data {
  font-size: 11px;
  opacity: 0.75;
}
.newsMain .sectionNewsHead .eventHead {
  display: flex;
  gap: 32px;
  width: 100%;
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  opacity: 0.8;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .newsMain .sectionNewsHead .eventHead {
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 0;
  }
}
.newsMain .sectionNewsHead .eventHead::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .newsMain .sectionNewsHead .eventHead::before {
    display: none;
  }
}
.newsMain .sectionNewsHead .eventHead p {
  font-size: 14px;
  position: relative;
  padding-right: 16px;
}
@media only screen and (max-width: 767px) {
  .newsMain .sectionNewsHead .eventHead p {
    font-size: 11px;
    padding-right: 0;
  }
}
.newsMain .sectionNewsHead .eventHead p.eventCategory {
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}
.newsMain .sectionNewsHead .eventHead p::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  width: 1px;
  height: 8px;
  z-index: 2;
}
.newsMain .sectionNewsHead .eventHead p:nth-of-type(1)::before {
  display: none;
}
.newsMain .sectionNewsHead .postData {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .newsMain .sectionNewsHead .postData {
    font-size: 11px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.newsMain .sectionNewsHead .postData::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}
.newsMain .phrase {
  position: relative;
  padding-top: 64px;
}
@media only screen and (max-width: 767px) {
  .newsMain .phrase {
    padding-top: 32px;
  }
}
.newsMain .phrase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.newsMain .articleSubhead {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
}
.newsMain .articleBody {
  line-height: 180%;
}
@media only screen and (max-width: 767px) {
  .newsMain .articleBody {
    font-size: 13px;
    line-height: 180%;
  }
}
.newsMain .articleSubSubhead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .newsMain .articleSubSubhead {
    font-size: 16px;
    margin-top: 12px;
  }
}
.newsMain .articleOrderListContents {
  padding-left: 16px;
}
.newsMain .articleOrderListContents li {
  position: relative;
  list-style: auto;
}
@media only screen and (max-width: 767px) {
  .newsMain .articleOrderListContents li {
    font-size: 13px;
  }
}
.newsMain .articleListContents {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.newsMain .articleListContents li {
  padding-left: 12px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .newsMain .articleListContents li {
    font-size: 13px;
  }
}
.newsMain .articleListContents li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.newsMain .articleButton {
  margin-top: 32px;
  width: 100%;
  background: linear-gradient(90deg, #ff5e08 0%, #dd1414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .newsMain .articleButton {
    font-size: 14px;
    padding: 12px 0;
    margin-top: 24px;
  }
}
.newsMain .articleBlock {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  margin-bottom: 16px;
}
.newsMain .articleBlock .articleSubSubhead {
  margin-top: 0;
}
.newsMain .articleBackBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
@media only screen and (min-width: 1025px) {
  .newsMain .articleBackBtn a:hover::after {
    width: 100%;
  }
}
.newsMain .articleBackBtn a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.newsMain .articleBackBtn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.newsMain .articleBackBtn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff5e08 0%, #dd1414 100%);
  transition: 0.15s ease-in-out 0s;
}

.articleFooter {
  transform: translate(0);
}

.newsListSection {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  .newsListSection {
    flex-wrap: wrap;
  }
}
.newsListSection .headWrap {
  width: 320px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .newsListSection .headWrap {
    width: 100%;
  }
}
.newsListSection .headWrap .bigType {
  font-size: 120px;
  opacity: 0.08;
  line-height: 90%;
  position: absolute;
  left: -16px;
  top: -48px;
  opacity: 0.08;
}
@media only screen and (max-width: 1024px) {
  .newsListSection .headWrap .bigType {
    position: absolute;
    left: -16px;
    top: -48px;
    font-size: 80px;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.newsListSection .headWrap h2 {
  font-size: 48px;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 767px) {
  .newsListSection .headWrap h2 {
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 4px;
  }
}
.newsListSection .newsListWrap {
  display: flex;
  flex-flow: column;
  width: calc(100% - 420px);
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .newsListSection .newsListWrap {
    width: 100%;
  }
}
.newsListSection .newsListWrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.newsListSection .newsListWrap li a {
  position: relative;
  padding: 48px 0;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .newsListSection .newsListWrap li a {
    padding: 24px 0;
    flex-wrap: wrap;
  }
}
.newsListSection .newsListWrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.newsListSection .newsListWrap li a .textWrap {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media only screen and (max-width: 1200px) {
  .newsListSection .newsListWrap li a .textWrap {
    width: calc(50% - 16px);
  }
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .textWrap {
    width: 100%;
    gap: 4px;
  }
}
.newsListSection .newsListWrap li a .tag {
  font-size: 13px;
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .tag {
    font-size: 12px;
    width: 90px;
  }
}
.newsListSection .newsListWrap li a .data {
  font-size: 13px;
  width: 180px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .data {
    font-size: 12px;
    margin-bottom: 0px;
  }
}
.newsListSection .newsListWrap li a .title {
  font-size: 21px;
  line-height: 120%;
}
@media only screen and (max-width: 1024px) {
  .newsListSection .newsListWrap li a .title {
    width: calc(100% - 48px);
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .title {
    font-size: 15px;
    margin-top: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .venue {
    font-size: 13px;
  }
}
.newsListSection .newsListWrap li a .arrowWrap {
  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%);
}
@media only screen and (max-width: 1024px) {
  .newsListSection .newsListWrap li a .arrowWrap {
    width: 36px;
    height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .arrowWrap {
    width: 24px;
    height: 24px;
    top: auto;
    bottom: 12px;
  }
}
.newsListSection .newsListWrap li a .arrowWrap .arrow {
  width: 16px;
  filter: brightness(3) grayscale(1);
}
@media only screen and (max-width: 1024px) {
  .newsListSection .newsListWrap li a .arrowWrap .arrow {
    width: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .arrowWrap .arrow {
    width: 10px;
  }
}
.newsListSection .newsListWrap li {
  width: 100%;
}
.newsListSection .newsListWrap li a {
  display: flex;
  flex-wrap: wrap;
}
.newsListSection .newsListWrap li a .thum {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .newsListSection .newsListWrap li a .thum {
    width: 100%;
  }
}

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

.listContetns {
  padding: 160px 0;
  display: flex;
  flex-flow: column;
  gap: 64px;
}
@media only screen and (max-width: 767px) {
  .listContetns {
    gap: 32px;
    padding: 80px 0;
  }
}
.listContetns .container {
  width: calc(100% - 60px);
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .listContetns .container {
    flex-wrap: wrap;
  }
}
.listContetns .container .listHead {
  width: 280px;
}
@media only screen and (max-width: 1024px) {
  .listContetns .container .listHead {
    width: 100%;
  }
}
.listContetns .container .listHead h2 {
  font-size: 120px;
  opacity: 0.1;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listHead h2 {
    font-size: 64px;
  }
}
.listContetns .container .listHead h1 {
  font-size: 32px;
  margin-top: -32px;
  margin-left: 16px;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listHead h1 {
    font-size: 21px;
    margin-top: -21px;
    margin-left: 12px;
  }
}
.listContetns .container .listMain {
  width: calc(100% - 320px);
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .listContetns .container .listMain {
    width: 100%;
    margin-top: 32px;
  }
}
.listContetns .container .listMain ul {
  position: relative;
}
.listContetns .container .listMain ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.listContetns .container .listMain ul li {
  position: relative;
}
.listContetns .container .listMain ul li a {
  padding: 32px 0;
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMain ul li a {
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
  }
}
.listContetns .container .listMain ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.listContetns .container .listMain ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1025px) {
  .listContetns .container .listMain ul li a:hover::after {
    width: 100%;
  }
}
.listContetns .container .listMain ul li a .tag {
  font-size: 13px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMain ul li a .tag {
    width: 80px;
    font-size: 11px;
  }
}
.listContetns .container .listMain ul li a .data {
  font-size: 13px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMain ul li a .data {
    width: calc(100% - 100px);
    font-size: 11px;
  }
}
.listContetns .container .listMain ul li a .text {
  font-size: 16px;
  width: calc(100% - 160px);
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMain ul li a .text {
    width: 100%;
    font-size: 13px;
  }
}
.listContetns .container .listMainEvent {
  width: calc(100% - 320px);
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .listContetns .container .listMainEvent {
    width: 100%;
    margin-top: 24px;
  }
}
.listContetns .container .listMainEvent ul {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul {
    display: flex;
    flex-flow: column;
    gap: 12px;
  }
}
.listContetns .container .listMainEvent ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.listContetns .container .listMainEvent ul li {
  position: relative;
}
.listContetns .container .listMainEvent ul li a {
  padding: 32px 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a {
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.75);
    padding: 16px;
    border-radius: 8px;
    gap: 8px;
  }
}
.listContetns .container .listMainEvent ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a::before {
    display: none;
  }
}
.listContetns .container .listMainEvent ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  transition: 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a::after {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  .listContetns .container .listMainEvent ul li a:hover::after {
    width: 100%;
  }
}
.listContetns .container .listMainEvent ul li a .thum {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .thum {
    width: 100%;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap {
    width: 100%;
    margin-top: 12px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .category {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .category {
    font-size: 11px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .head {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.listContetns .container .listMainEvent ul li a .textWrap .tag {
  font-size: 13px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .tag {
    font-size: 11px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .title {
  font-size: 21px;
  line-height: 130%;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .title {
    font-size: 16px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .body {
  font-size: 14px;
  line-height: 160%;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .body {
    font-size: 12px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .published-date {
  font-size: 12px;
  opacity: 0.7;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .published-date {
    font-size: 11px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .data {
  font-size: 13px;
  width: 80px;
}
.listContetns .container .listMainEvent ul li a .textWrap .venue {
  font-size: 13px;
  margin-top: 12px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .listContetns .container .listMainEvent ul li a .textWrap .venue {
    font-size: 12px;
    margin-top: 8px;
  }
}
.listContetns .container .listMainEvent ul li a .textWrap .text {
  font-size: 16px;
  width: calc(100% - 160px);
}

.c-postEditor {
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.c-postEditor a {
  color: #111;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
}
.c-postEditor a .mainButton {
  position: relative;
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
  background: linear-gradient(103.56deg, #ec4010 5.98%, #e96d24 94.02%);
  padding: 8px;
  text-align: center;
  color: #fff;
  border-radius: 999px;
  width: 100%;
  justify-content: center;
}
.c-postEditor a .subButton {
  position: relative;
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px;
  text-align: center;
  color: #ec4010;
  border-radius: 999px;
  width: 100%;
  justify-content: center;
}
.c-postEditor a .disableButton {
  position: relative;
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  width: 100%;
  justify-content: center;
}
.c-postEditor p {
  font-size: 16px;
  line-height: 200%;
  font-weight: 300 !important;
  color: rgba(42, 36, 27, 0.85);
}
@media only screen and (max-width: 767px) {
  .c-postEditor p {
    font-size: 13px;
  }
}
.c-postEditor .captionText {
  font-size: 13px;
  line-height: 150%;
  display: inline-block;
  margin-top: -8px;
}
.c-postEditor h2 {
  font-size: 32px;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .c-postEditor h2 {
    font-size: 21px;
  }
}
.c-postEditor h2 strong {
  font-size: 32px;
  font-family: "ivyora-display", "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  .c-postEditor h2 strong {
    font-size: 21px;
  }
}
.c-postEditor ul {
  padding: 16px;
}
.c-postEditor ul li {
  list-style: disc;
}
@media only screen and (max-width: 767px) {
  .c-postEditor ul li {
    font-size: 13px;
  }
}
.c-postEditor hr {
  padding-top: 1px;
  background: rgba(0, 0, 0, 0.08);
  width: 100%;
}
.c-postEditor blockquote {
  background: rgba(0, 0, 0, 0.05);
  padding: 16px;
  border-radius: 8px;
}
.c-postEditor tr {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 8px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .c-postEditor tr {
    gap: 12px;
  }
}
.c-postEditor tr th {
  width: 48%;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .c-postEditor tr th {
    width: 100%;
  }
}
.c-postEditor tr th p {
  text-align: left;
  font-size: 13px;
}

.articleBackBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding-top: 32px;
  width: calc(100% - 60px);
  max-width: 680px;
  margin: auto;
  position: relative;
}
.articleBackBtn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1025px) {
  .articleBackBtn a:hover::after {
    width: 100%;
  }
}
.articleBackBtn a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .articleBackBtn a {
    font-size: 13px;
  }
}
.articleBackBtn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.articleBackBtn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff5e08 0%, #dd1414 100%);
  transition: 0.15s ease-in-out 0s;
}/*# sourceMappingURL=underPage.css.map */