/*
**************************************************************************
*	fields gandum UC common.css
**************************************************************************/
:root {
  --fonts-notosansjp: "Noto Sans JP", sans-serif;
  --fonts-notoserifjp: "Noto Serif JP", serif;
  --fonts-newtegomin: "New Tegomin", serif;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #FF3700;
  --color-blue: #6D7CEC;
  --color-cyan: #00C5FF;
  --color-gray1: #191919;
  --color-gray2: #292929;
  --color-gray3: #535353;
  --color-gray4: #9B9B9B;
  --color-gray5: #EDEDED;
  --color-brown: #AC7000;
  --color-base: var(--color-gray5);
  --color-footer: var(--color-black);
  --color-complete1: var(--color-black);
  --color-complete2: var(--color-gray2);
  --text-shadows1: 0 0 5px rgba(0, 0, 0, 0.8);
  --text-shadows2: 0 0 14px rgba(0, 0, 0, 0.8);
  --btn-shadows: 0 0 6px rgba(255, 55, 0, 0.92);
  --text-stroke: rgb(172, 112, 0) 1px 0px 0px,
  	rgb(172, 112, 0) 0.540302px 0.841471px 0px,
  	rgb(172, 112, 0) -0.416147px 0.909297px 0px,
  	rgb(172, 112, 0) -0.989992px 0.14112px 0px,
  	rgb(172, 112, 0) -0.653644px -0.756802px 0px,
  	rgb(172, 112, 0) 0.283662px -0.958924px 0px,
  	rgb(172, 112, 0) 0.96017px -0.279415px 0px;
  --text-stroke2: rgb(172, 112, 0) 0.5px 0px 0px,
  	rgb(172, 112, 0) 0.5px 0.5px 0px,
  	rgb(172, 112, 0) -0.25px 0.25px 0px,
  	rgb(172, 112, 0) -0.25px 0.25px 0px,
  	rgb(172, 112, 0) -0.25px -0.25px 0px,
  	rgb(172, 112, 0) 0.25px -0.25px 0px,
  	rgb(172, 112, 0) 0.25px -0.25px 0px;
  --easing-cubic1: cubic-bezier(0, 0, .2, 1);
}

/* --------------------------------------------------
		foundation
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: var(--fonts-notosansjp);
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow-y: scroll;
}

body {
  position: relative;
  overflow-x: clip;
  background-color: #D3D4B2;
  color: #4D4645;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
}
body.is-video {
  height: 100vh;
  overflow: hidden;
}
body:before {
  display: block;
  position: fixed;
  inset: 0;
  background: url(../img/bg_global.png) no-repeat center/844px auto;
  content: "";
  -webkit-filter: drop-shadow(0 0 36px #AC7000);
          filter: drop-shadow(0 0 36px #AC7000);
  opacity: 0.13;
}

a {
  outline: none;
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* --------------------------------------------------
		layout
-------------------------------------------------- */
.l-wrap {
  position: relative;
}

.l-header {
  z-index: 100;
  z-index: 20;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #000;
}

.l-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: auto;
}

.l-header__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.l-header__nav-toggle {
  display: none;
}

.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.l-nav__list li > * {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 1.6rem;
}

.l-nav__list li a:before {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  content: "";
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-nav__list li a:hover:before,
.l-nav__list li a.is-active:before {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.l-nav__list li > * span {
  display: inline-block;
  position: relative;
}

.l-nav__list li .is-deactive {
  color: #333333;
  pointer-events: none;
}

.l-main {
  position: relative;
}

.l-title {
  z-index: 9;
  position: relative;
  padding: 13px 0;
  background-color: #535353;
  color: #ffffff;
}

.l-title__inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 130px;
}

.l-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50vw;
  height: 15px;
  background-image: url(../img/line_01.png);
  background-position: right center;
  background-size: auto 15px;
  background-repeat: repeat-x;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* footer */
.l-footer {
  z-index: 1;
  position: relative;
  padding: 0;
  background-color: var(--color-footer);
  /* background-image: url(../img/line_01.png);
  background-position: center bottom;
  background-size: auto 15px;
  background-repeat: repeat-x; */
  color: #fff;
}

.l-footer__container {
  padding: 24px 20px 34px;
}

.l-footer__copyright {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin: 8px 0 0;
  gap: 8px;
  color: #979797;
  text-align: center;
}
.l-footer__copyright small {
  font-size: 1.2rem;
}
.l-footer__copyright--small {
  font-size: 1rem;
}

.l-footer__notice {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 0;
  gap: 19px;
}

.l-footer__logo--adelion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 134px;
  margin: 0;
}

.l-footer__logo--fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 128px;
  margin: 0;
}

.l-footer__logo--eco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  margin: 0;
}

.l-footer__logo--smaslo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  margin: 0;
}
/* --------------------------------------------------
		components
-------------------------------------------------- */
.c-h1 {
  z-index: 1;
  position: relative;
  background-color: #535353;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: calc(60 / 1000 * 1em);
}
.c-container {
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* --------------------------------------------------
		MARK: Key Visual
-------------------------------------------------- */
.kv {
  z-index: 1;
  position: relative;
  aspect-ratio: 1366/767;
  width: 100%;
}
.kv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
}
.kv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kv-bg:before, .kv-bg:after {
  display: block;
  z-index: 1;
  position: absolute;
  content: "";
  opacity: 0;
}
.kv-bg:before {
  top: 0;
  left: 0;
  aspect-ratio: 240/456;
  width: 17.56954612%;
  translate: -20%;
  background: url(../img/orn_kv-lt.png) no-repeat left top/cover;
}
.kv-bg:after {
  right: 0;
  bottom: 0;
  aspect-ratio: 383/158;
  width: 28.03806734%;
  translate: 20%;
  background: url(../img/orn_kv-rb.png) no-repeat right bottom/cover;
}
.kv-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 104.685212%;
  height: 100%;
  translate: -4.47552447%;
  background: #000 url(../img/bg_kv.jpg) no-repeat center/cover;
  opacity: 0;
}
.kv__innr {
  z-index: 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.kv__item {
  position: absolute;
}
.kv__char {
  opacity: 0;
}
.kv__char--roxy {
  top: 3.2594524%;
  left: 13.10395314%;
  width: 28.4040995%;
  translate: 24%;
}
.kv__char--eris {
  top: 11.0821382%;
  left: 63.9824304%;
  width: 27.67203513%;
  translate: -24%;
}
.kv__char--sylphy {
  top: 16.427640156%;
  left: 48.462664714%;
  width: 18.30161054%;
  translate: -24%;
}
.kv__char--rudeus {
  top: 11.21251629%;
  left: 21.7423133%;
  width: 30.81991215%;
  translate: 0 24%;
}
.kv__logo {
  right: 6.5885797%;
  bottom: 5.3455019%;
  aspect-ratio: 546/284;
  width: 39.970717%;
  opacity: 0;
  -webkit-filter: blur(12px);
          filter: blur(12px);
}
.kv__logo img {
  clip-path: circle(0%);
}
.kv__complete {
  bottom: 5.3455019556%;
  left: 8.78477306%;
  width: 16.3250366%;
  -webkit-filter: drop-shadow(0 0 11px #080000);
          filter: drop-shadow(0 0 11px #080000);
  opacity: 0;
}
.kv__smaslot {
  top: 2.477183833%;
  right: 9.80966325%;
  width: 6.734992679%;
  opacity: 0;
}
.is-loaddone .kv-bg:before, .is-loaddone .kv-bg:after {
  -webkit-transition: opacity 0.3s 0.3s, translate 0.6s 0.3s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.3s 0.3s, translate 0.6s 0.3s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv-bg__img {
  -webkit-transition: opacity 0.6s, translate 1.2s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.6s, translate 1.2s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv__char--rudeus {
  -webkit-transition: opacity 0.3s 0.6s, translate 0.6s 0.6s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.3s 0.6s, translate 0.6s 0.6s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv__char--roxy {
  -webkit-transition: opacity 0.3s 1.2s, translate 0.6s 1.2s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.3s 1.2s, translate 0.6s 1.2s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv__char--sylphy {
  -webkit-transition: opacity 0.3s 1.2s, translate 0.6s 1.2s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.3s 1.2s, translate 0.6s 1.2s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv__char--eris {
  -webkit-transition: opacity 0.3s 1.4s, translate 0.6s 1.4s cubic-bezier(0, 0, 0, 1);
  translate: 0;
  opacity: 1;
  transition: opacity 0.3s 1.4s, translate 0.6s 1.4s cubic-bezier(0, 0, 0, 1);
}
.is-loaddone .kv__logo {
  -webkit-transition: opacity 0.2s 1.6s, -webkit-filter 1.4s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
  opacity: 1;
  transition: opacity 0.2s 1.6s, -webkit-filter 1.4s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.2s 1.6s, filter 1.4s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.2s 1.6s, filter 1.4s 1.6s cubic-bezier(0.5, 0, 0.5, 1), -webkit-filter 1.4s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
  -webkit-filter: blur(0);
          filter: blur(0);
}
.is-loaddone .kv__logo img {
  -webkit-transition: clip-path 1.6s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
  clip-path: circle(100%);
  transition: clip-path 1.6s 1.6s cubic-bezier(0.5, 0, 0.5, 1);
}
.is-loaddone .kv__complete, .is-loaddone .kv__smaslot {
  -webkit-transition: opacity 0.3s 1.8s;
  opacity: 1;
  transition: opacity 0.3s 1.8s;
}

/* --------------------------------------------------
		utility
-------------------------------------------------- */
.u-pc {
  display: block !important;
}

.u-sp {
  display: none !important;
}

.u-cts__inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 130px;
}

.w100 {
  width: 100%;
  height: auto;
}
.d-none {
  display: none;
}

.d-block {
  display: block;
}
/* --------------------------------------------------
		MARK: Loading
-------------------------------------------------- */
.loading {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  -webkit-transition: opacity 0.3s var(--easing-cubic1);
  transition: opacity 0.3s var(--easing-cubic1);
}
.loading__txt {
  display: -ms-grid;
  display: grid;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: var(--color-white);
  font-size: 20px;
  font-family: var(--fonts-newtegomin);
  opacity: 1;
  -webkit-transition: opacity 0.4s 1s var(--easing-cubic1);
  transition: opacity 0.4s 1s var(--easing-cubic1);
}
.is-videodone .loading__txt {
  opacity: 0;
}
.loading__video {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0;
  -webkit-transition: opacity 0.3s var(--easing-cubic1);
  transition: opacity 0.3s var(--easing-cubic1);
}
.loading__video #loadingvideo1 {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100vh;
  translate: -50% -50%;
}
.loading__video #loadingvideo2 {
  display: none;
}
.is-videodone .loading__video {
  opacity: 1;
}
.is-loaddone .loading__video {
  opacity: 0;
  -webkit-transition: opacity 0.6s var(--easing-cubic1);
  transition: opacity 0.6s var(--easing-cubic1);
}
@media screen and (max-width: 1383px) {
  .u-cts__inner {
    padding: 0 9.5168374817%;
  }
}
@media screen and (max-width: 1150px) {
  .l-nav__list {
    gap: 20px;
  }
}
@media screen and (max-width: 977px) {
  /* .is-nav .l-wrap {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  } */
  .l-header__nav-toggle {
    display: block;
    z-index: 10;
    position: absolute;
    top: 22px;
    right: 2.0833333333%;
    width: 35px;
    height: 35px;
    border: none;
    background: none;
    cursor: pointer;
  }
  .l-header__nav-toggle:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    content: "";
    -webkit-transition: top 0.2s ease, -webkit-transform 0.2s ease;
    transition: top 0.2s ease, -webkit-transform 0.2s ease;
    transition: top 0.2s ease, transform 0.2s ease;
    transition: top 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .l-header__nav-toggle:after {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    content: "";
    -webkit-transition: top 0.2s ease, -webkit-transform 0.2s ease;
    transition: top 0.2s ease, -webkit-transform 0.2s ease;
    transition: top 0.2s ease, transform 0.2s ease;
    transition: top 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .l-header__nav-toggle span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .is-nav .l-header__nav-toggle:before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-nav .l-header__nav-toggle:after {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .is-nav .l-header__nav-toggle span {
    opacity: 0;
  }
  .l-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
  }
  .is-nav .l-header__nav {
    display: block;
    -webkit-animation: fadeIn 0.3s ease-out forwards;
            animation: fadeIn 0.3s ease-out forwards;
  }
  .l-nav {
    height: 100%;
    padding: 70px 0 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-nav__list {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #333333;
  }
  .l-nav__list li {
    padding: 0 0;
    border-top: 1px solid #333333;
  }
  .l-nav__list li > * {
    padding: 15px 0 15px 60px;
    font-size: 2.25rem;
  }
  .l-nav__list li a:before {
    top: calc(50% - 6px);
    left: -33px;
    width: 33px;
    background-color: #dd0507;
  }
  .l-nav__list li a.is-active:before {
    left: 0;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .loading__video #loadingvideo1 {
    display: none;
  }
  .loading__video #loadingvideo2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    translate: -50% -50%;
  }
}
@media screen and (max-width: 767px) {
  body:before {
    background-size: 143.466667vw auto;
  }
  html.is-nav {
    /* overflow-y: auto; */
    overflow: hidden;
  }
  /* img {
  	max-width: none;
  	width: 100%;
  } */
  .l-header__logo {
    width: 113px;
  }
  .l-header {
    height: 63px;
  }
  .l-header__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 63px;
  }
  .l-header__nav-toggle {
    top: 14px;
  }
  .l-footer__copyright {
    font-size: 1.6rem;
  }
  .l-title__inner {
    max-width: none;
    padding: 0 2%;
  }
  .l-title:before {
    content: none;
  }
  .l-footer__container {
    padding-top: 32px;
  }
  .l-footer__notice {
    font-size: 1.2rem;
  }
  .l-footer__logo {
    padding-inline: 10px;
  }
  .kv {
    aspect-ratio: 375/535;
  }
  .kv-bg:before {
    aspect-ratio: 166/276;
    width: 44.2666667%;
  }
  .kv-bg:after {
    aspect-ratio: 150/54;
    width: 40%;
  }
  .kv__char--roxy {
    top: unset;
    bottom: 2.242990654%;
    left: 5.6%;
    width: 81.6%;
  }
  .kv__char--eris {
    top: 3.691588785%;
    left: 37.333333%;
    width: 76.8%;
  }
  .kv__char--sylphy {
    top: 29.85981308%;
    left: 39.733333%;
    width: 53.6%;
  }
  .kv__char--rudeus {
    top: 25.18691588%;
    right: 34.4%;
    left: unset;
    width: 90.93333%;
  }
  .kv__logo {
    right: 0;
    bottom: 3.925233644%;
    left: 0;
    width: 96%;
    margin-inline: auto;
  }
  .kv__complete {
    display: none;
  }
  .kv__smaslot {
    top: 0.887850467%;
    right: 5.333333%;
    width: 14.13333%;
  }
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
  .u-cts__inner {
    max-width: none;
    padding: 0 2%;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
}
@media screen and (max-width: 360px) {
  .l-footer__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .d-xs-none {
    display: none;
  }
  .d-xs-block {
    display: block;
  }
}
@media (min-width: 768px) {
  .c-h1 {
    margin-left: -10px;
    padding-left: 10px;
    font-size: 2.4rem;
  }
}
/*# sourceMappingURL=common.css.map */
