/*
**************************************************************************
*	fields gandum UC common.css
**************************************************************************/
:root {
  --fonts-notosansjp: "Noto Sans JP", sans-serif;
  --fonts-notoserifjp: "Noto Serif JP", serif;
  --fonts-notoserifkr: "Noto Serif KR", serif;
  --fonts-notoserifsc: "Noto Serif SC", serif;
  --fonts-notoseriftc: "Noto Serif TC", serif;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #C4272A;
  --color-gray1: #191919;
  --color-gray2: #666;
  --color-base: var(--color-black);
  --color-footer: var(--color-black);
  --color-complete1: var(--color-black);
  --color-complete2: var(--color-black);
  --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);
  --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-notoserifjp);
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow-y: scroll;
}
html[lang=ko] {
  font-family: var(--fonts-notoserifjp);
}
html[lang=zh-Hans] {
  font-family: var(--fonts-notoserifsc);
}
html[lang=zh-Hant-TW] {
  font-family: var(--fonts-notoseriftc);
}

body {
  position: relative;
  overflow-x: clip;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

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-main {
  position: relative;
  overflow: clip;
}

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

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

/* 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;
}
.l-footer .l-footer__container {
  padding: 24px 20px 80px;
}

.l-footer__copyright {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin: 24px 0 0;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--fonts-notosansjp);
  text-align: center;
}
.l-footer__copyright small {
  font-size: 1.2rem;
}
.l-footer__copyright--small {
  font-size: 1rem;
}

.l-footer__notice {
  display: block;
  color: var(--color-white);
  font-size: 1.4rem;
  font-family: var(--fonts-notosansjp);
  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: 8px 0 0;
  gap: 10px;
}

.l-footer__logo--bisty {
  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: 70px;
  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: 85px;
  margin: 0;
}

.l-footer__logo--smapachi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  margin: 0;
  translate: 0 2px;
}
/* --------------------------------------------------
		components
-------------------------------------------------- */
.c-h1 {
  z-index: 1;
  position: relative;
  padding-left: 10px;
  background-color: var(--color-black);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: var(--fonts-notoserifjp);
}
/* --------------------------------------------------
		MARK: Key Visual
-------------------------------------------------- */
.kv {
  z-index: 1;
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 4.0995607613vw 5.1244509517vw 200px; 
}
.kv__bgimg {
  z-index: 0;
  position: absolute; 
  top: 0;             
  left: 0;
  width: 100%;
  height: 100%;       
  pointer-events: none;
}
.kv__bgimg img {
  width: 100%;
  height: 100%;       
  object-fit: cover;  
  -o-object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 1 !important; /* 強制的に表示状態にします */
}
/* JavaScriptなどの連動による非表示命令を完全に効かなくします */
.kv__bgimg.is-hide {
  opacity: 1 !important; 
}
.kv__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1232px;
  margin-inline: auto;
  gap: 45px;
}
.kv__title {
  z-index: 1;
  max-width: 747px;
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  transform: translateY(270px);
}
.kv__title img {
  display: block;
  width: 70%;
  margin-inline: auto;
}
.kv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  z-index: 1;
  position: relative;
          justify-content: center;
  width: 100%;
  max-width: 747px;
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  transform: translateY(180px);
}
.kv__btn--trigger {
  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: 100%;
  max-width: 388px;
  min-height: 80px;
  padding-inline: 20px;
  padding-block: 16px;
  gap: 14px;
  background: url("../img/btn-base_pc.png") center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.6s var(--easing-cubic1);
  transition: -webkit-filter 0.6s var(--easing-cubic1);
  transition: filter 0.6s var(--easing-cubic1);
  transition: filter 0.6s var(--easing-cubic1), -webkit-filter 0.6s var(--easing-cubic1);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.kv__btn--trigger:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.kv__btn--trigger .is-label {
  translate: 0 -2px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.44;
  font-family: var(--fonts-notoserifjp);
  letter-spacing: calc(-25 / 1000 * 1em);
  pointer-events: none;
}
.kv__btn--trigger::after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
  display: block;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: url("../img/icon-arr1.svg") center no-repeat;
  background-size: contain;
  content: "";
}
.kv__btn--trigger.is-search::after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
  display: block;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: url("../img/icon-search.svg") center no-repeat;
  background-size: contain;
  content: "";
}
.kv__btn--trigger2.is-search::after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
  display: block;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: url("../img/icon-search.svg") center no-repeat;
  background-size: contain;
  content: "";
}

/* --------------------------------------------------
		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;
}
.d-none {
  display: none;
}

.d-block {
  display: block;
}

@media screen and (max-width: 1383px) {
  .u-cts__inner {
    padding: 0 9.5168374817%;
  }
}

@media screen and (max-width: 1150px) {
  .l-header__lang {
    right: -72px;
  }
  .l-nav__list {
    gap: 20px;
  }
}

@media screen and (max-width: 977px) {

  /* --- スマホ(SP)表示の際の位置とデザインを完全復元 --- */
  .kv {
    min-height: 0;
    padding: 39.4666666667vw 0 34px;
  }
  .kv__block {
    gap: 0;
    transform: none !important;
  }
  .kv__title {
    max-width: 100%;
    margin-bottom: -14.4vw;
    transform: none !important;
  }
  .kv__title img {
    width: 100vw;
  }
  .kv__btn {
    max-width: 80.8vw;
    margin-inline: auto;
    transform: none !important;
  }
  .kv__btn + .kv__btn {
    margin-top: 6.4vw;
  }
  .kv__btn--trigger {
    max-width: 80.8vw;
    min-height: 16.5333333333vw;
    padding-inline: 8.5333333333vw 5.3333333333vw;
    padding-block: 4.2666666667vw;
    gap: 2.6666666667vw;
    background: url("../img/btn-base_sp.png") center no-repeat;
    background-size: 100% 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; /* スマホ時は元の両端揃えに戻す */
  }
  .kv__btn--trigger .is-label {
    translate: 0 -0.5333333333vw;
    font-size: 5.3333333333vw;
  }
  .kv__btn--trigger::after {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
  .kv__btn--trigger.is-search::after {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
}


@media screen and (max-width: 767px) {
  html.is-nav {
    overflow: hidden;
  }
  .l-header__logo {
    width: auto;
  }
  .l-footer__container {
    padding: 18px 20px;
  }
  .l-footer .l-footer__container {
    padding: 8px 20px 32px;
  }
  .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__inner::before {
    content: none;
  }
  .l-footer__notice {
    font-size: 1.2rem;
    text-align: left;
  }
  .kv__bgimg {
    top: 0;
    height: 100%;
  }
  .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-header__lang {
    top: 21px;
    right: calc(2.0833333333% + 40px);
  }
  .l-header__lang--trigger {
    gap: 4px;
  }
  .l-footer__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .l-footer .l-footer__container {
    padding: 8px 10px 32px;
  }
  .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 */