@charset "UTF-8";
:root {
  --resetColor: var(--black);
  --resetBgColor: var(--white);
  --resetFontFamily: var(--gothic);
  --resetFontSize: var(--fz140);
  --resetFontWeight: var(--fontMedium);
  --resetLineHeight: var(--lh500);
  --resetLetterSpacing: var(--ls600);
  --gold100: #FCF8EF;
  --gold200: #FFF5DB;
  --gold300: #C9BA90;
  --gold500: #B1881B;
  --gray100: #f9f9f9;
  --gray300: #B7B7B7;
  --gray500: #8E8E95;
  --gray600: #696969;
  --gray700: #464646;
  --black400: #43434A;
  --black500: #36363C;
  --black: #1D1D1D;
  --white: #fff;
  --gothic: $font-01;
  --serif: $font-01;
  --en:$font-01;
  --en02: $font-01;
  --fz100: 1.2rem;
  --fz110: 1.4rem;
  --fz120: 1.5rem;
  --fz130: 1.6rem;
  --fz140: 1.8rem;
  --fz200: 2rem;
  --fz210: 2.4rem;
  --fz220: 2.8rem;
  --fz300: 3rem;
  --fz310: 3.2rem;
  --fz320: 3.4rem;
  --fz340: 3.7rem;
  --fz350: 3.8rem;
  --fz600: 6.2rem;
  --fz610: 6.7rem;
  --fz900: 9rem;
  --fz1000: 10.2rem;
}
@media screen and (max-width: 767px) {
  :root {
    --fz100: 1rem;
    --fz110: 1.3rem;
    --fz120: 1.5rem;
    --fz130: 1.5rem;
    --fz140: 1.5rem;
    --fz200: 1.5rem;
    --fz210: 1.9rem;
    --fz220: 2.3rem;
    --fz300: 3rem;
    --fz310: 3rem;
    --fz320: 2.3rem;
    --fz340: 2.3rem;
    --fz350: 2.8rem;
    --fz600: 3.5rem;
    --fz610: 3.8rem;
    --fz900: 3.8rem;
    --fz1000: 3.8rem;
  }
}
:root {
  --fontRegular: 400;
  --fontMedium: 500;
  --fontBold: 700;
  --lh300: 1.3;
  --lh500: 1.6;
  --lh600: 1.8;
  --lh700: 2;
  --ls100: 0em;
  --ls300: 0.03em;
  --ls400: 0.04em;
  --ls500: 0.05em;
  --ls700: 0.07em;
  --ls600: 0.08em;
  --ls900: 0.09em;
  --ls1000: 0.1em;
  --ls1200: 0.12em;
  --opacity500: .6;
  --width: 140rem;
}
@media screen and (max-width: 767px) {
  :root {
    --width: 100%;
  }
}
:root {
  --linear: cubic-bezier(0.250, 0.250, 0.750, 0.750);
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

i {
  user-select: none; /* テキストの選択を無効化 */
}

*::after,
*::before {
  user-select: none; /* テキストの選択を無効化 */
}

html * {
  position: relative;
}
html {
  font-size: 10px;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

picture img {
  width: 100%;
}

body {
  font-family: var(--resetFontFamily);
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: var(--resetFontSize);
  font-weight: var(--resetFontWeight);
  line-height: var(--resetLineHeight);
  color: var(--resetColor);
  background: var(--resetBgColor);
  letter-spacing: var(--resetLetterSpacing);
  text-size-adjust: 100%;
}
body * {
  outline: none;
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.8rem;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: #e5e5e5;
}

::-webkit-scrollbar-thumb {
  background: #727272;
  border-radius: 0;
  margin: 2px;
  box-shadow: none;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
i,
span,
em,
strong,
dl dt,
dl dd,
ul li,
ol li,
figcaption,
table th,
table td {
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-decoration: none;
  list-style: none;
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: var(--opacity500);
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    image-rendering: auto;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5) {
  img {
    image-rendering: auto;
  }
}

picture,
figure {
  display: block;
  line-height: 0;
}

table {
  width: 100%;
}

iframe {
  border: none;
}

input,
textarea,
select,
button {
  font-family: YuGothic, "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-family: var(--resetFontFamily);
  font-size: var(--resetFontSize);
  font-weight: var(--resetFontWeight);
  line-height: var(--resetLineHeight);
  color: var(--resetColor);
  background: var(--resetBgColor);
  letter-spacing: var(--resetLetterSpacing);
  text-size-adjust: 100%;
  overflow-x: hidden;
  outline: none;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
}

label {
  display: inline-block;
  cursor: pointer;
}

textarea {
  display: block;
  resize: vertical;
  vertical-align: bottom;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  transition: opacity 0.3s;
  cursor: pointer;
}
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover {
  opacity: var(--opacity500);
}
input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
}

@keyframes topMainImgScroll {
  10% {
    transform: translateY(20%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(250%);
    opacity: 0;
  }
}
@keyframes topBusinessImg {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes topBusinessImgBg {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes topCsrBgObj01 {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
}
@keyframes topCsrBgObj02 {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(13deg);
  }
  35% {
    transform: rotate(17deg);
  }
  45% {
    transform: rotate(10deg);
  }
  55% {
    transform: rotate(13deg);
  }
  65% {
    transform: rotate(10deg);
  }
}
@keyframes topCsrBgObj03 {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  35% {
    transform: scale(0.8);
  }
  45% {
    transform: scale(1.3);
  }
  55% {
    transform: scale(1.1);
  }
  65% {
    transform: scale(1.3);
  }
}
@keyframes topCsrBgObj04 {
  0%, 100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(90deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
@keyframes topCsrBgObj05 {
  0%, 100% {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(0, 1);
  }
  60% {
    transform: scale(-1, 1);
  }
}
@keyframes topCsrBgObj06 {
  0%, 100% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(7.8rem, 12rem);
  }
  60% {
    transform: translate(0, 12rem);
  }
}
@keyframes groupLinkArrBefore {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes groupLinkArrAfter {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes mvLoopScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.js_accordion dt {
  transition: opacity 0.3s;
  cursor: pointer;
}
.js_accordion dt:hover {
  opacity: var(--opacity500);
}
.js_accordion dd {
  display: none;
}

.js_tab .js_tab_content {
  position: relative;
}
.js_tab .js_tab_content > * {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.5s;
}
.js_tab .js_tab_content > *.is-tab {
  position: relative;
  opacity: 1;
  z-index: 2;
  height: auto;
  transform: translateY(0);
}

.js_anim_scroll.-fadeUp {
  transition: opacity 0.7s, transform 0.7s var(--easeOutCubic);
  transform: translateY(4rem);
  opacity: 0;
  transition-delay: 0.2s;
}
.js_anim_scroll.-fadeUp.is-anim {
  transform: translateY(0);
  opacity: 1;
}
.js_anim_scroll.-fadeIn {
  transition: opacity 0.7s;
  opacity: 0;
  transition-delay: 0.2s;
}
.js_anim_scroll.-fadeIn.is-anim {
  opacity: 1;
}
.js_anim_scroll.-blurIn {
  transition: opacity 1.3s, filter 1.3s, transform 0.7s var(--easeOutCubic);
  transform: translateY(4rem);
  opacity: 0;
  transition-delay: 0.2s;
  filter: blur(5rem);
}
.js_anim_scroll.-blurIn.is-anim {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
.js_anim_scroll.-secTtl .en span,
.js_anim_scroll.-secTtl .ja span {
  transition: opacity 0.7s, transform 0.7s var(--easeOutCubic);
  transform: translateY(4rem);
  opacity: 0;
  display: inline-block;
}
.js_anim_scroll.-secTtl.is-anim .en span,
.js_anim_scroll.-secTtl.is-anim .ja span {
  transform: translateY(0);
  opacity: 1;
}
.js_anim_scroll.-secTtl.is-anim .ja span {
  transition-delay: 0.6s;
}
.js_anim_scroll.-serviceHd span {
  transition: opacity 0.7s;
  opacity: 0;
}
.js_anim_scroll.-serviceHd.is-anim span {
  opacity: 1;
}
.js_anim_scroll.-topMainImgPanel01 .catch span {
  display: inline-block;
  transition: opacity 0.7s, transform 0.7s var(--easeOutCubic);
  transform: translateY(4rem);
  opacity: 0;
}
.js_anim_scroll.-topMainImgPanel01 .sub,
.js_anim_scroll.-topMainImgPanel01 .logo10th {
  transition: opacity 0.7s, transform 0.7s var(--easeOutCubic);
  transform: translateY(4rem);
  opacity: 0;
}
.js_anim_scroll.-topMainImgPanel01.is-anim .catch span {
  transform: translateY(0);
  opacity: 1;
}
.js_anim_scroll.-topMainImgPanel01.is-anim .sub,
.js_anim_scroll.-topMainImgPanel01.is-anim .logo10th {
  transform: translateY(0);
  opacity: 1;
}
.js_anim_scroll.-topRecruitImg li {
  transition: transform 0.8s var(--easeOutCubic), opacity 0.5s;
  opacity: 0;
}
.js_anim_scroll.-topRecruitImg li.img01, .js_anim_scroll.-topRecruitImg li.img03 {
  transform: rotate(45deg) scale(0);
  transform-origin: bottom right;
}
.js_anim_scroll.-topRecruitImg li.img02, .js_anim_scroll.-topRecruitImg li.img04 {
  transform: rotate(-45deg) scale(0);
  transform-origin: top left;
}
.js_anim_scroll.-topRecruitImg.is-anim li {
  opacity: 1;
}
.js_anim_scroll.-topRecruitImg.is-anim li.img01, .js_anim_scroll.-topRecruitImg.is-anim li.img02, .js_anim_scroll.-topRecruitImg.is-anim li.img03, .js_anim_scroll.-topRecruitImg.is-anim li.img04 {
  transform: rotate(0deg) scale(1);
}
.js_anim_scroll.-topBusinessImg .parent,
.js_anim_scroll.-topBusinessImg .child {
  transition: opacity 0.7s, transform 0.7s var(--easeOutCubic);
  opacity: 0;
  transform: translateY(4rem);
}
.js_anim_scroll.-topBusinessImg .wave {
  transform: scale(0);
  opacity: 0;
}
.js_anim_scroll.-topBusinessImg.is-anim .parent,
.js_anim_scroll.-topBusinessImg.is-anim .child {
  opacity: 1;
  transform: translateY(0rem);
}
.js_anim_scroll.-topBusinessImg.is-anim .wave {
  animation: 2s topBusinessImg infinite linear;
  animation-delay: 0.3s;
}
.js_anim_scroll.-topBusinessImg.is-anim:after {
  animation: 15s topBusinessImgBg infinite linear;
}

.delay1 {
  transition-delay: 0.03s !important;
}

.delay2 {
  transition-delay: 0.06s !important;
}

.delay3 {
  transition-delay: 0.09s !important;
}

.delay4 {
  transition-delay: 0.12s !important;
}

.delay5 {
  transition-delay: 0.15s !important;
}

.delay6 {
  transition-delay: 0.18s !important;
}

.delay7 {
  transition-delay: 0.21s !important;
}

.delay8 {
  transition-delay: 0.24s !important;
}

.delay9 {
  transition-delay: 0.27s !important;
}

.delay10 {
  transition-delay: 0.3s !important;
}

.delay11 {
  transition-delay: 0.33s !important;
}

.delay12 {
  transition-delay: 0.36s !important;
}

.delay13 {
  transition-delay: 0.39s !important;
}

.delay14 {
  transition-delay: 0.42s !important;
}

.delay15 {
  transition-delay: 0.45s !important;
}

.delay16 {
  transition-delay: 0.48s !important;
}

.delay17 {
  transition-delay: 0.51s !important;
}

.delay18 {
  transition-delay: 0.54s !important;
}

.delay19 {
  transition-delay: 0.57s !important;
}

.delay20 {
  transition-delay: 0.6s !important;
}

.delay21 {
  transition-delay: 0.63s !important;
}

.delay22 {
  transition-delay: 0.66s !important;
}

.delay23 {
  transition-delay: 0.69s !important;
}

.delay24 {
  transition-delay: 0.72s !important;
}

.delay25 {
  transition-delay: 0.75s !important;
}

.delay26 {
  transition-delay: 0.78s !important;
}

.delay27 {
  transition-delay: 0.81s !important;
}

.delay28 {
  transition-delay: 0.84s !important;
}

.delay29 {
  transition-delay: 0.87s !important;
}

.delay30 {
  transition-delay: 0.9s !important;
}

.delay31 {
  transition-delay: 0.93s !important;
}

.delay32 {
  transition-delay: 0.96s !important;
}

.delay33 {
  transition-delay: 0.99s !important;
}

.delay34 {
  transition-delay: 1.02s !important;
}

.delay35 {
  transition-delay: 1.05s !important;
}

.delay36 {
  transition-delay: 1.08s !important;
}

.delay37 {
  transition-delay: 1.11s !important;
}

.delay38 {
  transition-delay: 1.14s !important;
}

.delay39 {
  transition-delay: 1.17s !important;
}

.delay40 {
  transition-delay: 1.2s !important;
}

.delay41 {
  transition-delay: 1.23s !important;
}

.delay42 {
  transition-delay: 1.26s !important;
}

.delay43 {
  transition-delay: 1.29s !important;
}

.delay44 {
  transition-delay: 1.32s !important;
}

.delay45 {
  transition-delay: 1.35s !important;
}

.delay46 {
  transition-delay: 1.38s !important;
}

.delay47 {
  transition-delay: 1.41s !important;
}

.delay48 {
  transition-delay: 1.44s !important;
}

.delay49 {
  transition-delay: 1.47s !important;
}

.delay50 {
  transition-delay: 1.5s !important;
}

.m_box_fixed {
  position: relative;
  width: var(--width);
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .m_box_fixed {
    padding: 0 2.5rem;
  }
}

.m_box_movie .js_movie_play {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.m_box_movie .cover {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  /* テキストの選択を無効化 */
}
.m_box_movie .cover .cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background: rgba(17, 19, 23, 0.75);
  transition: opacity 0.3s;
  z-index: 11;
}
.m_box_movie .cover .cursor.is-hide {
  opacity: 0;
  pointer-events: none;
}
.m_box_movie .cover .cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 20rem;
  height: 20rem;
  font-size: 2rem;
  letter-spacing: 0.15em;
  z-index: 21;
  color: #fff;
  font-family: "Oxanium", sans-serif;
}
@media screen and (max-width: 767px) {
  .m_box_movie .cover .cursor span {
    width: 8rem;
    height: 8rem;
    font-size: 1.5rem;
    padding-top: 1rem;
  }
}
.m_box_movie .cover .cursor span.is-show {
  clip-path: circle(50% at 50% 50%);
}
.m_box_movie .cover .cursor span img {
  margin: 0 auto;
  width: 16rem;
}
.m_box_movie .cover .thumb {
  z-index: 10;
  transition: opacity 0.3s;
}
.m_box_movie .cover .thumb.is-hide {
  pointer-events: none;
  opacity: 0;
}
.m_box_movie .cover .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m_box_movie .cover .thumb,
.m_box_movie .cover video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m_box_movie .cover .cursor.is-hide,
.m_box_movie .cover .thumb.is-hide {
  opacity: 0;
  pointer-events: none;
  /* クリックを無効にする */
  transition: opacity 2s;
  /* 不透明度のトランジションを追加 */
}

.u-parallax,
.u-parallax2 {
  overflow: hidden;
  display: flex;
  align-items: center;
  align-items: flex-start;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .u-parallax,
  .u-parallax2 {
    margin: 0;
    margin-top: 3rem;
    padding-left: 0rem;
    width: calc(100dvw - 8rem);
    height: calc(100dvw - 8rem);
  }
}
.u-parallax .u-img,
.u-parallax2 .u-img {
  overflow: hidden;
}
.u-parallax .u-img img,
.u-parallax2 .u-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  transition: transform 0.1s;
}

.m_btn_main {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .m_btn_main {
    text-align: center;
  }
}
.m_btn_main a {
  font-family: var(--en);
  position: relative;
  display: inline-block;
  border-radius: 9rem;
  min-width: 24rem;
  color: var(--gold500);
  border: 1px solid var(--gold500);
  padding: 1.4rem 5rem 1.4rem 3.5rem;
  text-align: left;
  letter-spacing: var(--ls500);
  font-size: var(--fz130);
  overflow: hidden;
  transition: color 0.2s;
}
.m_btn_main a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--gold500);
  transition: transform 0.5s var(--easeOutCubic);
  transform: translateY(105%);
}
.m_btn_main a:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  z-index: 10;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 1rem;
  background: var(--gold500);
  transition: background 0.2s;
}
.m_btn_main a span {
  position: relative;
  z-index: 10;
}
.m_btn_main a:hover {
  opacity: 1;
  color: var(--white);
}
.m_btn_main a:hover:before {
  transform: translateY(0%);
}
.m_btn_main a:hover:after {
  background: var(--white);
}
.m_btn_main.-wh a {
  background: var(--black400);
  color: var(--white);
  border: 1px solid var(--white);
}
.m_btn_main.-wh a:before {
  background: var(--white);
}
.m_btn_main.-wh a:after {
  background: var(--white);
}
.m_btn_main.-wh a:hover {
  color: var(--black400);
}
.m_btn_main.-wh a:hover:after {
  background: var(--black400);
}

.m_btn_txt {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .m_btn_txt {
    margin-top: 3rem;
    text-align: center;
  }
}
.m_btn_txt a {
  font-size: 1.6rem;
  letter-spacing: var(--ls500);
  display: inline-block;
  border-bottom: 1px solid;
  position: relative;
  line-height: 1.3;
  margin-left: 2.2rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .m_btn_txt a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .m_btn_txt a i {
    width: 2.3rem;
    height: 0.8rem;
  }
}
.m_btn_txt a i::after {
  content: "";
  background-image: url(../img/arrow-cycle-bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  left: -2.5rem;
  top: 56%;
  transform: translateY(-50%);
}
.m_btn_txt a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.m_btn_main_02 {
  padding: 3rem 0;
}
.m_btn_main_02 a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  color: var(--gold500);
}
.m_btn_main_02 a i.arr {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9rem;
  border: 1px solid var(--gold500);
}
@media screen and (max-width: 767px) {
  .m_btn_main_02 a i.arr {
    right: -6rem;
    width: 5rem;
    height: 5rem;
  }
}
.m_btn_main_02 a i.arr i {
  position: relative;
  display: block;
  width: 2rem;
  height: 1.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .m_btn_main_02 a i.arr i {
    width: 1.2rem;
    height: 0.7rem;
  }
}
.m_btn_main_02 a i.arr i:before, .m_btn_main_02 a i.arr i:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold500);
  mask: url("../img/i_arr.svg") no-repeat center;
  mask-size: 100% auto;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.m_btn_main_02 a i.arr i:after {
  transform: translateX(-100%);
}

.m_txt_secTtl {
  margin-bottom: 5rem;
}
.m_txt_secTtl .en {
  font-family: "Oxanium", sans-serif;
  font-size: 3rem;
  color: #353535;
  line-height: 1.2;
  letter-spacing: var(--ls100);
  opacity: 0;
  transition: opacity 0.1s ease-in;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl .en {
    font-size: 2rem;
  }
}
.m_txt_secTtl .en span {
  display: inline-block;
  min-width: 0.3em;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl.-under {
    margin-bottom: 7rem;
  }
}
.m_txt_secTtl.-under .en {
  letter-spacing: 0.05em;
  font-weight: 400;
}
.m_txt_secTtl.-center {
  text-align: center;
}
.m_txt_secTtl .ja {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  display: block;
  font-weight: 800;
  letter-spacing: var(--ls900);
  font-size: var(--fz200);
  margin-top: 1.5rem;
  color: #1D1D1D;
  line-height: 1.4;
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl .ja {
    margin-top: 1rem;
    font-size: 2.8rem;
    font-weight: 800;
  }
}
.m_txt_secTtl.-small .en {
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl.-small .en {
    font-size: 3.8rem;
  }
}
.m_txt_secTtl.-small02 .en {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl.-small02 .en {
    font-size: 3.8rem;
  }
}
.m_txt_secTtl.-sizeM .en {
  font-size: var(--fz1000);
}
.m_txt_secTtl.-wh .en {
  color: var(--gray500);
}
.m_txt_secTtl.-wh .ja {
  color: var(--white);
}

.m_txt_secTtl_gold {
  margin-top: 15rem;
  font-size: 4rem;
  font-weight: 500;
  color: var(--gold500);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl_gold {
    margin-top: 5rem;
    font-size: 2.1rem;
  }
}
.m_txt_secTtl_gold.-l {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .m_txt_secTtl_gold.-l {
    font-size: 2.1rem;
  }
}
.m_txt_secTtl_gold.-center {
  text-align: center;
}

.m_txt_lead {
  font-size: var(--fz320);
  margin-bottom: 5rem;
  letter-spacing: var(--ls600);
}
@media screen and (max-width: 767px) {
  .m_txt_lead {
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 3rem;
  }
}
.m_txt_lead.-gl {
  color: var(--gold500);
}

.m_txt_body {
  line-height: var(--lh700);
  text-align: justify;
  text-justify: inter-ideograph;
}
.m_txt_body .-gl {
  color: var(--gold500);
}
.m_txt_body.-center {
  text-align: center;
}

.m_gold {
  color: var(--gold500);
}

.pc-hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-hide {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

/*# sourceMappingURL=setting.css.map */
