@charset "UTF-8";
@use "yakuhanjp/dist/scss/yakuhanmp-noto";
@-webkit-keyframes circle_in {
  0% {
    stroke-dashoffset: 264;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes circle_in {
  0% {
    stroke-dashoffset: 264;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes circle_out {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  to {
    stroke-dashoffset: -264;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes circle_out {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  to {
    stroke-dashoffset: -264;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes circle_in2 {
  0% {
    stroke-dashoffset: 183;
  }
  to {
    stroke-dashoffset: 336;
  }
}
@keyframes circle_in2 {
  0% {
    stroke-dashoffset: 183;
  }
  to {
    stroke-dashoffset: 336;
  }
}
@-webkit-keyframes circle_out2 {
  0% {
    stroke-dashoffset: 336;
  }
  to {
    stroke-dashoffset: 183;
  }
}
@keyframes circle_out2 {
  0% {
    stroke-dashoffset: 336;
  }
  to {
    stroke-dashoffset: 183;
  }
}
@-webkit-keyframes circle_in3 {
  0% {
    stroke-dashoffset: 459;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes circle_in3 {
  0% {
    stroke-dashoffset: 459;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes circle_out3 {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  to {
    stroke-dashoffset: -459;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes circle_out3 {
  0% {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  to {
    stroke-dashoffset: -459;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes randomTxt {
  0% {
    -webkit-transform: skew(20deg, 30deg) rotateX(50deg) translateY(160%);
    transform: skew(20deg, 30deg) rotateX(50deg) translateY(160%);
  }
  55% {
    -webkit-transform: skew(20deg, 30deg) rotateX(50deg) translateY(1);
    transform: skew(20deg, 30deg) rotateX(50deg) translateY(1);
  }
  to {
    -webkit-transform: skew(0deg, 0deg) rotateX(0deg) translateY(0%);
    transform: skew(0deg, 0deg) rotateX(0deg) translateY(0%);
  }
}
@keyframes randomTxt {
  0% {
    -webkit-transform: skew(20deg, 30deg) rotateX(50deg) translateY(160%);
    transform: skew(20deg, 30deg) rotateX(50deg) translateY(160%);
  }
  55% {
    -webkit-transform: skew(20deg, 30deg) rotateX(50deg) translateY(1);
    transform: skew(20deg, 30deg) rotateX(50deg) translateY(1);
  }
  to {
    -webkit-transform: skew(0deg, 0deg) rotateX(0deg) translateY(0%);
    transform: skew(0deg, 0deg) rotateX(0deg) translateY(0%);
  }
}
@-webkit-keyframes flashHover {
  0% {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
@keyframes flashHover {
  0% {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes arrowRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes arrowRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
:root {
  --font-size-xxl: 2rem;
  --font-size-xl: 1.8rem;
  --font-size-l: 1.4rem;
  --font-size-m: 1.4rem;
  --font-size-s: 1.2rem;
  --font-size-xs: 1.1rem;
  --line-height-xxl: 2.2;
  --line-height-xl: 2.2;
  --line-height-l: 2.14;
  --line-height-m: 2;
  --line-height-s: 1.7;
  --line-height-xs: 1.4;
}
@media screen and (max-width: 768px) {
  :root {
    --font-size-xxl: 1.5rem;
    --font-size-xl: 1.8rem;
    --font-size-l: 1.4rem;
    --font-size-m: 1.3rem;
    --font-size-s: 1.2rem;
    --font-size-xs: 1.1rem;
  }
}
:root {
  --color-bg-base: #161b24;
  --color-line_gray: #d6d6d6;
  --color-txt_yellow: #f1f0e8;
}
* {
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body,
html {
  font-size: 62.5%;
  height: 100%;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 320px) {
  body,
  html {
    font-size: 50.5%;
  }
}
body {
  display: block;
  line-height: 1;
  color: #111;
  text-align: left;
  width: 100% !important;
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: normal;
  font-family: "YakuHanMP_Noto", serif;
}
@media screen and (max-width: 768px) {
  body {
    max-width: 767px !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 100%;
    overflow-x: hidden !important;
    padding-top: 0;
  }
}
:lang(en) {
  font-family: "Times New Roman", serif;
}
:lang(zh-cmn-Hans) {
  font-family: "Noto Serif SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}
:lang(zh-cmn-Hant) {
  font-family: "Noto Serif TC", "PingFang TC", "Hiragino Sans CNS",
    "Microsoft JhengHei", sans-serif;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
main {
  background-color: #fff;
}
::-moz-selection {
  background: #474747;
  color: #fff;
}
::selection {
  background: #474747;
  color: #fff;
}
::-moz-selection {
  background: #474747;
  color: #fff;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
template {
  display: none;
}
address {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 100%;
  margin: 0px;
  padding: 0px;
}
b,
strong {
  font-weight: bold;
}
object {
  pointer-events: none;
}
img {
  border: none;
  vertical-align: bottom;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
svg {
  fill: currentColor;
  vertical-align: bottom;
}
svg:not(:root) {
  overflow: hidden;
}
a {
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    text-decoration: underline;
    pointer-events: auto;
  }
}
a * {
  cursor: pointer;
}
.u-hvr,
a,
a .c-button,
a img,
a object,
button,
button span,
input,
select,
textarea {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-hvr:hover,
a .c-button:hover,
a:hover,
a img:hover,
a object:hover,
button:hover,
button span:hover,
input:hover,
select:hover,
textarea:hover {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.lte-Android4 * {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
ol li {
  list-style: none;
}
ul li {
  list-style: none;
}
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="text"],
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="checkbox"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
label:focus,
select,
textarea:focus {
  outline: 0;
}
select::-ms-expand {
  display: none;
}
:placeholder-shown {
  color: darkgray;
  font-family: gothic, serif;
}
::-webkit-input-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
:-ms-input-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
::-ms-input-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
::placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
:-ms-input-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
:-moz-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
::-moz-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
::-webkit-input-placeholder {
  color: darkgray;
  font-family: gothic, serif;
}
iframe {
  width: 100%;
  border: none;
  outline: none;
}
ruby {
  display: inline-table;
  border: none;
  white-space: nowrap;
  vertical-align: text-bottom;
  text-align: center;
  line-height: 100%;
}
ruby rt {
  display: table-header-group;
  font-size: 50%;
  text-align: center;
  line-height: 100%;
}
ruby ruby rt {
  display: table-footer-group;
  font-size: 50%;
  line-height: 100%;
}
ruby rp {
  display: none;
}
dl dt {
  font-weight: bold;
}
body > span {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
}
select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  height: 4.2rem;
  font-size: 1.4rem;
  background: #fff;
  border: none;
  border: 1px solid #dbdbdb;
  padding: 0 1.5rem;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #111;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  select {
    background: #eeeeee;
  }
}
:root {
  --color-darkblue: #15171c;
}
.u-bg-red {
  background: red !important;
}
.u-bg-blue {
  background: blue !important;
}
.u-bg-green {
  background: green !important;
}
.l-content-l {
  width: calc(100% - 12.4rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-content-l {
    width: 100%;
    padding: 0 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-content-l.-clear-small {
    padding: 0;
  }
}
.l-content-m {
  width: calc(((100% - 12.4rem) / 8) * 6);
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .l-content-m {
    width: 100%;
    padding: 0 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.l-content-s {
  width: calc(((100% - 12.4rem) / 8) * 4);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-content-s {
    width: 100%;
    padding: 0 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-content-xl-small {
    width: 100%;
    padding: 0;
  }
}
.l-footer {
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.l-footer__inner {
  width: 100%;
  padding: 20rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--color-darkblue);
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 12rem 0;
  }
}
.l-footer.-type2 {
  height: auto;
  margin-top: 0;
  padding: 3.4rem 0;
  background: var(--color-darkblue);
}
@media screen and (max-width: 768px) {
  .l-footer.-type2 {
    padding: 2.4rem 0;
  }
}
.l-footer.-type2 .l-footer-copyright {
  padding-top: 0;
}
.l-footer-logo {
  width: 15.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer-logo {
    width: 14rem;
  }
}
.l-footer-copy {
  font-size: 1.4rem;
  line-height: 2;
  padding-top: 4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .l-footer-copy {
    font-size: 1.3rem;
    line-height: 2;
  }
}
.l-footer-copy__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-footer-copy__dl dt:after {
  content: "：";
  margin: 0 0.3em;
}
.l-footer-copy__dl dd + dt:before {
  content: "/";
  margin: 0 0.6em;
  font-size: 80%;
}
.l-footer-copyright {
  padding-top: 3.5rem;
  letter-spacing: 0.08em;
}
.l-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 3.2rem;
  bottom: 3.2rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: "GaramondPremrPro-Med", serif;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .l-footer-menu {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-menu {
    display: none;
  }
}
.l-footer-menu li + li {
  margin-left: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .l-footer-menu li + li {
    margin-left: 2.5rem;
  }
}
.l-footer-menu a {
  text-decoration: none;
  opacity: 0.5;
}
.l-footer-menu a.is-current {
  opacity: 0.3 !important;
}
.l-footer-menu a:hover {
  opacity: 1;
}
.l-footer-sns {
  position: absolute;
  right: 3.2rem;
  bottom: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer-sns {
    display: none;
  }
}
.l-footer-sns li + li {
  margin-left: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .l-footer-sns li + li {
    margin-left: 2.5rem;
  }
}
.l-footer-sns a {
  opacity: 0.5;
}
.l-footer-sns a:hover {
  opacity: 1;
}
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 1.5rem;
  left: 0;
  padding: 0 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9000;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  opacity: 0;
  -webkit-transform: translateY(-10rem);
  -ms-transform: translateY(-10rem);
  transform: translateY(-10rem);
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0 1.6rem;
    top: 2.2rem;
  }
}
.is-top-op3 .l-header {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-lower .l-header {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-header.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
}
.l-header.is-hide {
  opacity: 0;
  -webkit-transform: translateY(-2rem);
  -ms-transform: translateY(-2rem);
  transform: translateY(-2rem);
  -webkit-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.3s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  pointer-events: none;
}
.ua-ie .l-header.is-hide {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0s cubic-bezier(0, 0, 0.3, 1);
}
.l-header.-type2 {
  top: 4.5rem;
}
.l-header-logo {
  -webkit-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .l-header-logo {
    position: fixed;
    top: 1.6rem;
    left: 2rem;
  }
}
.l-header-logo a {
  display: block;
}
.is-menu-open .l-header-logo {
  opacity: 0;
  -webkit-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  transition: opacity 0s linear;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  pointer-events: none;
}
.l-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "GaramondPremrPro-Med", serif;
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav a {
  text-decoration: none;
}
.l-header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
}
.l-header-nav__list > li {
  cursor: pointer;
  padding: 1rem 0;
  -webkit-transition: 0;
  -o-transition: 0;
  transition: 0;
}
.is-home .l-header-nav__list > li span {
  color: #fff;
}
.is-home.is-header-switch .l-header-nav__list > li span {
  color: #111;
}
.l-header-nav__list > li + li {
  margin-left: 3.2rem;
}
.ua-edge-18-lte
  .l-header-nav__list
  > li
  a:hover
  .c-rollup__nom
  .js-txt-split__cell {
  -webkit-transform: translateY(-1em);
  -ms-transform: translateY(-1em);
  transform: translateY(-1em);
}
.l-header-nav__list a.is-current {
  opacity: 0.4 !important;
}
.l-header-nav__cicle {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 8.5rem;
  font-size: 1.3rem;
  margin-left: 4rem;
  cursor: pointer;
}
.l-header-nav__cicle a {
  width: 8.4rem;
  height: 8.4rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-header-nav__cicle a:hover .c-cicle__bg__circle2 circle {
  -webkit-animation: circle_in 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: circle_in 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.l-header-nav__cicle svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-intro {
  padding: 8rem 0 6rem;
}
.l-intro .c-txt-m {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 768px) {
  .l-intro {
    padding: 4rem 0 3rem;
  }
}
.l-intro2 {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-intro2 {
    padding: 4rem 0;
  }
}
.l-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 3.2rem;
  margin-right: -1.5rem;
}
@media screen and (max-width: 768px) {
  .l-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.l-pagination li + li {
  margin-left: 2.5rem;
}
.l-pagination li a {
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.l-related {
  text-align: center;
  background: #f9f9f6;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .l-related {
    padding: 6.4rem 0;
  }
}
.l-related__inner {
  position: relative;
}
.l-related-column {
  margin-top: 5rem;
}
.l-related-link {
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .l-related-link {
    position: static;
    text-align: left;
    padding-top: 3.2rem;
  }
}
.l-searchPanel {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: all 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: all 0.4s cubic-bezier(0, 0, 0.3, 1);
}
.js-modalToggleOpen .l-searchPanel {
  opacity: 1;
  visibility: visible;
}
.l-searchPanel__body {
  width: 60%;
  max-height: 60vh;
  background: #111;
  color: #fff;
  padding: 8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(1.4rem);
  -ms-transform: translateY(1.4rem);
  transform: translateY(1.4rem);
  overflow: auto;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.4s cubic-bezier(0, 0, 0.3, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3, 1),
    transform 0.4s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.4s cubic-bezier(0, 0, 0.3, 1);
}
@media screen and (max-width: 1200px) {
  .l-searchPanel__body {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .l-searchPanel__body {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .l-searchPanel__body {
    width: 90%;
    height: auto;
    max-height: calc(100vh - 70px);
    min-height: 40vh;
    padding: 4rem 2rem 2rem 2rem;
  }
}
.js-modalToggleOpen .l-searchPanel__body {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.l-searchPanel .c-toggle-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .l-searchPanel .c-toggle-close {
    position: fixed;
    top: 1.2rem;
    right: 1.6rem;
  }
}
.l-searchPanel .c-txt-caption {
  opacity: 0.3;
}
.l-searchPanel-hr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .l-searchPanel-hr {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
  }
}
.l-searchPanel a {
  text-decoration: none;
}
.l-searchPanel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.l-searchPanel-list.-category {
  margin-bottom: -2rem;
}
.l-searchPanel-list.-category li {
  font-size: 2.4rem;
  margin-right: 3.2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .l-searchPanel-list.-category li {
    font-size: 2rem;
    margin-right: 2rem;
  }
}
.l-searchPanel-list.-category li a:hover {
  opacity: 0.3;
}
.l-searchPanel-list.-keyword li {
  margin-right: 1rem;
  margin-top: 1rem;
}
.l-sitemap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 8000;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  -o-transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53),
    -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
}
@media screen and (max-width: 768px) {
  .l-sitemap {
    display: block;
  }
}
.is-menu-open .l-sitemap {
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}
.l-sitemap__frame {
  width: 90%;
  height: 100%;
  margin: 0 0 0 auto;
  background-color: #111;
  -webkit-transform: translate(-100%, 0%);
  -ms-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  -o-transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53),
    -webkit-transform 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.is-menu-open .l-sitemap__frame {
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}
.l-sitemap__inner {
  width: 100%;
  height: 100%;
  padding: 3rem;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: scroll;
  position: absolute;
  top: 0;
  right: 0;
}
.l-sitemap__inner .l-footer-copyright {
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.is-menu-open .l-sitemap__inner .l-footer-copyright {
  opacity: 0.6;
  -webkit-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
  -o-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
}
.l-sitemap-cover {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7999;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  -o-transition: opacity 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  transition: opacity 0.4s cubic-bezier(0.5, 0.01, 0.53, 0.53);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .l-sitemap-cover {
    display: block;
  }
}
.is-menu-open .l-sitemap-cover {
  opacity: 1;
}
.l-sitemap-nav a {
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: opacity 0.5s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.5s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.5s cubic-bezier(0, 0, 0.3, 1);
}
.l-sitemap-nav a.is-current {
  opacity: 0.4 !important;
}
.l-sitemap-nav a:hover {
  opacity: 0.6;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:first-of-type {
  -webkit-transition-delay: 180ms !important;
  -o-transition-delay: 180ms !important;
  transition-delay: 180ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(2) {
  -webkit-transition-delay: 210ms !important;
  -o-transition-delay: 210ms !important;
  transition-delay: 210ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(3) {
  -webkit-transition-delay: 240ms !important;
  -o-transition-delay: 240ms !important;
  transition-delay: 240ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(4) {
  -webkit-transition-delay: 270ms !important;
  -o-transition-delay: 270ms !important;
  transition-delay: 270ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(5) {
  -webkit-transition-delay: 300ms !important;
  -o-transition-delay: 300ms !important;
  transition-delay: 300ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(6) {
  -webkit-transition-delay: 330ms !important;
  -o-transition-delay: 330ms !important;
  transition-delay: 330ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(7) {
  -webkit-transition-delay: 360ms !important;
  -o-transition-delay: 360ms !important;
  transition-delay: 360ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(8) {
  -webkit-transition-delay: 390ms !important;
  -o-transition-delay: 390ms !important;
  transition-delay: 390ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(9) {
  -webkit-transition-delay: 420ms !important;
  -o-transition-delay: 420ms !important;
  transition-delay: 420ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(10) {
  -webkit-transition-delay: 450ms !important;
  -o-transition-delay: 450ms !important;
  transition-delay: 450ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(11) {
  -webkit-transition-delay: 480ms !important;
  -o-transition-delay: 480ms !important;
  transition-delay: 480ms !important;
}
.l-sitemap-nav > li.is-active > a > .js-txt-split__cell:nth-of-type(12) {
  -webkit-transition-delay: 510ms !important;
  -o-transition-delay: 510ms !important;
  transition-delay: 510ms !important;
}
.l-sitemap-nav > li.is-hide > a > .js-txt-split__cell {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(1em);
  -ms-transform: translateY(1em);
  transform: translateY(1em);
}
.l-sitemap-nav.-main {
  font-size: 3rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
  font-family: "GaramondPremrPro-Med", serif;
}
.l-sitemap-nav.-main li + li {
  padding-top: 2rem;
}
.l-sitemap-nav.-sub {
  font-size: 1.4rem;
  padding-top: 4rem;
}
.l-sitemap-nav.-sub li + li {
  padding-top: 1.6rem;
}
.l-sitemap-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.is-menu-open .l-sitemap-sns {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  -o-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
}
.l-sitemap-sns li + li {
  margin-left: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .l-sitemap-sns li + li {
    margin-left: 2.5rem;
  }
}
.l-sitemap-sns a {
  opacity: 0.5;
}
.l-sitemap-sns a:hover {
  opacity: 1;
}
.l-sitemap-copyright {
  font-size: 1.1rem;
  line-height: 1.7;
  padding-top: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.is-menu-open .l-sitemap-copyright {
  opacity: 0.6;
  -webkit-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
  -o-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
}
.l-sitemap .l-footer-copy__dl {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.l-sitemap-bn {
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.is-menu-open .l-sitemap-bn {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  -o-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.l-sitemap-bn a {
  width: 100%;
  height: 7rem;
  background: url(/assets/image/common/bn_movie.jpg) no-repeat center
    center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 2rem;
  text-decoration: none;
  font-size: 1.8rem;
  white-space: nowrap;
}
.l-sitemap-bn a:hover {
  opacity: 0.8;
}
.l-sitemap-bn.-contact a {
  background: url(/assets/image/common/bn_contact.jpg) no-repeat center
    center/cover;
}
.l-sitemap-bn__icon {
  width: 3rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-button {
  width: 100%;
}
.c-button.-type-half {
  max-width: 61.8rem;
  width: 100%;
}
.c-button a {
  display: block;
  padding: 2.6rem 2rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #15171c;
  border: 1px solid #15171c;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-button a:hover {
  color: #15171c;
  background-color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-button a {
    padding: 1.8rem;
    font-size: 1.4rem;
  }
}
.c-card {
  text-decoration: none;
  display: block;
  text-align: left;
}
.c-card__inner {
  display: block;
}
.c-card__inner img {
  display: block;
  -webkit-transform: scale(1.003);
  -ms-transform: scale(1.003);
  transform: scale(1.003);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  -o-transition: transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 2s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
}
.c-card__inner:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.c-card__inner:hover img,
.c-card__pict__inner:hover img {
  -webkit-animation: flashHover 2s 0s ease both;
  animation: flashHover 2s 0s ease both;
}
.c-card__label {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #111;
}
.p-home-news .c-card__label {
  padding-right: 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-home-news .c-card__label {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-card__label {
    font-size: 1.6rem;
  }
}
.c-card__information {
  padding-top: 0.8rem;
}
.c-card__body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-card__body {
    padding: 0 2rem;
    padding-top: 1.2rem;
  }
}
.c-card__pict {
  overflow: hidden;
}
.c-card__pict__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  -o-transition: transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 2s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 2s cubic-bezier(0, 0, 0.3, 1) !important;
}
.c-card .c-card__pict:hover .c-card__pict__inner {
  -webkit-transform: scale(1.07) !important;
  -ms-transform: scale(1.07) !important;
  transform: scale(1.07) !important;
}
@media screen and (max-width: 768px) {
  .c-card-small-wrap {
    border-top: 1px solid #dcdcdc;
  }
  .c-card.-small-colmn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #dcdcdc;
  }
  .c-card.-small-colmn .c-card__pict {
    width: 25%;
  }
  .c-card.-small-colmn .c-card__body {
    width: 75%;
    padding: 0 0 0 1.6rem;
  }
  .c-card.-small-colmn .c-card__label {
    height: 100%;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .c-card.-small-colmn .c-card__label a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
}
.c-card.-horizon {
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .c-card.-horizon:first-child {
    border-top: 1px solid #e5e5e5;
  }
}
.c-card.-horizon .c-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .c-card.-horizon .c-card__inner {
    padding: 2rem 0;
  }
}
.c-card.-horizon .c-card__block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.c-card.-horizon .c-card__block:first-child {
  width: 31%;
}
.c-card.-horizon .c-card__block:last-child {
  width: 69%;
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .c-card.-horizon .c-card__block:last-child {
    padding-left: 2rem;
  }
}
.c-card.-horizon .c-list-dl {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-card.-horizon .c-list-dl {
    font-size: 1rem;
  }
}
.c-card.-horizon .c-card__label {
  padding-top: 0.4rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-card.-horizon .c-card__label {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .c-card.-vertical {
    border-bottom: 1px solid #dcdcdc;
  }
}
@media screen and (max-width: 768px) {
  .p-home-news .c-card.-vertical:first-of-type {
    border-top: 1px solid #dcdcdc;
  }
}
.c-card.-vertical .c-card__inner {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-card.-vertical .c-card__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.6rem 0;
  }
}
.c-card.-vertical .c-card__block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-card.-vertical .c-card__block:first-child {
    width: 30.14%;
  }
}
.c-card.-vertical .c-card__block:last-child {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-card.-vertical .c-card__block:last-child {
    width: calc(100% - 30.14%);
    margin-top: 0;
    padding-left: 1.6rem;
  }
}
.c-card.-vertical .c-list-dl {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-card.-vertical .c-list-dl {
    font-size: 1rem;
  }
}
.c-card.-vertical .c-card__label {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-card.-vertical .c-card__label {
    margin-top: 0.4rem;
    font-size: 1.4rem;
  }
}
.c-cicle {
  width: 14.5rem;
  height: 14.5rem;
  border-radius: 14.5rem;
  font-size: 1.3rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-cicle {
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
  }
}
.c-cicle__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.is-home .c-cicle__inner p {
  color: #fff;
}
.is-home.is-header-switch .c-cicle__inner p {
  color: #111;
}
.c-cicle__bg__circle,
.c-cicle__bg__circle2 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-cicle__bg__circle2 circle,
.c-cicle__bg__circle circle {
  fill: transparent;
  stroke: #b3b3b1;
  stroke-width: 1;
}
.is-home .c-cicle__bg__circle2 circle,
.is-home .c-cicle__bg__circle circle {
  stroke: rgba(255, 255, 255, 0.4);
}
.is-home.is-header-switch .c-cicle__bg__circle2 circle,
.is-home.is-header-switch .c-cicle__bg__circle circle {
  stroke: #b3b3b1;
}
.c-cicle__bg__circle2 circle {
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-animation: circle_out 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: circle_out 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  stroke: #111;
  stroke-width: 1;
}
.is-home .c-cicle__bg__circle2 circle {
  stroke: #fff;
}
.is-home.is-header-switch .c-cicle__bg__circle2 circle {
  stroke: #111;
}
.c-cicle__bg__circle {
  z-index: 1;
}
.js-circle-target,
.js-circle-target2 {
  z-index: 2;
  opacity: 0;
}
.js-circle-target2.is-circle-on,
.js-circle-target.is-circle-on {
  opacity: 1;
}
.c-cicle__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-cicle__bg svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-cicle-icon {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .c-cicle-icon {
    width: 2rem;
    height: 2rem;
  }
  .c-cicle-icon svg {
    width: 2rem;
    height: 2rem;
  }
}
.c-cicle-icon svg {
  fill: #111;
  margin: 0 auto;
}
.-white .c-cicle-icon svg {
  fill: #fff;
}
.-bottom .c-cicle-icon svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.c-button-link__circle__l,
.c-button-link__circle__l2 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-button-link__circle__l {
  z-index: 1;
}
.c-button-link__circle__l2 {
  z-index: 2;
}
.c-button-link__circle__l2 circle,
.c-button-link__circle__l circle {
  stroke-dasharray: 459;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}
.c-cicle__bg.-circle-black .c-button-link__circle__l2 circle,
.c-cicle__bg.-circle-black .c-button-link__circle__l circle {
  stroke: rgba(21, 23, 28, 0.1);
}
.c-button-link__circle__l2 circle {
  stroke: #fff;
  stroke-dasharray: 459;
  stroke-dashoffset: 459;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-animation: circle_out3 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: circle_out3 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.c-cicle__bg.-circle-black .c-button-link__circle__l2 circle {
  stroke: #15171c;
}
.c-hero-cicle a:hover .c-button-link__circle__l2 circle,
.c-link-nextcover:hover .c-button-link__circle__l2 circle,
.c-link-nextLoad:hover .c-button-link__circle__l2 circle {
  -webkit-animation: circle_in3 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: circle_in3 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.c-column {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-column.-block-xsmall {
    display: block;
  }
  .c-column .c-column__block {
    max-width: 100% !important;
  }
}
.c-column > .c-column__block.-clear {
  display: block;
  height: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
.c-column.-col2-u > .c-column__block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.c-column.-col2-u > .c-column__block:first-child {
  width: 25%;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .c-column.-col2-u > .c-column__block:first-child {
    padding-right: 0;
  }
}
.c-column.-col2-u > .c-column__block:nth-child(2) {
  width: calc(100% - 25%);
}
.c-column.-col2-u .c-column__block__inner {
  padding-right: 33%;
}
@media screen and (max-width: 768px) {
  .c-column.-col2-u .c-column__block__inner {
    padding-right: 0;
  }
}
.c-column.-col2-s0p-t2rem > .c-column__block {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-flex-basis: calc((100% - 0%) / 2);
  -moz-flex-basis: calc((100% - 0%) / 2);
  -ms-flex-preferred-size: calc((100% - 0%) / 2);
  flex-basis: calc((100% - 0%) / 2);
  max-width: calc((100% - 0%) / 2);
}
.ua-edge .c-column.-col2-s0p-t2rem > .c-column__block,
.ua-ie .c-column.-col2-s0p-t2rem > .c-column__block,
.ua-ms .c-column.-col2-s0p-t2rem > .c-column__block {
  width: 49.95%;
  width: calc((99.9% - 0%) / 2);
  max-width: calc((99.9% - 0%) / 2);
}
.c-column.-col2-s0p-t2rem.-mt,
.c-column.-col2-s0p-t2rem[data-mt="true"] {
  margin-top: -2rem;
}
.c-column.-col2-s0p-t2rem.-mt > .c-column__block,
.c-column.-col2-s0p-t2rem[data-mt="true"] > .c-column__block {
  margin-top: 2rem;
}
.c-column.-col2-s1px > .c-column__block {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-flex-basis: calc((100% - 1px) / 2);
  -moz-flex-basis: calc((100% - 1px) / 2);
  -ms-flex-preferred-size: calc((100% - 1px) / 2);
  flex-basis: calc((100% - 1px) / 2);
  max-width: calc((100% - 1px) / 2);
}
.ua-edge .c-column.-col2-s1px > .c-column__block,
.ua-ie .c-column.-col2-s1px > .c-column__block,
.ua-ms .c-column.-col2-s1px > .c-column__block {
  width: 49.95%;
  width: calc((99.9% - 1px) / 2);
  max-width: calc((99.9% - 1px) / 2);
  -webkit-flex-basis: calc((99.9% - 1px) / 2);
  -moz-flex-basis: calc((99.9% - 1px) / 2);
  -ms-flex-preferred-size: calc((99.9% - 1px) / 2);
  flex-basis: calc((99.9% - 1px) / 2);
  max-width: calc((99.9% - 1px) / 2);
}
.c-column.-col2-s1px.-mt,
.c-column.-col2-s1px[data-mt="true"] {
  margin-top: -1px;
}
.c-column.-col2-s1px.-mt > .c-column__block,
.c-column.-col2-s1px[data-mt="true"] > .c-column__block {
  margin-top: 1px;
}
.c-column.-col2-s3p > .c-column__block {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-flex-basis: calc((100% - 3%) / 2);
  -moz-flex-basis: calc((100% - 3%) / 2);
  -ms-flex-preferred-size: calc((100% - 3%) / 2);
  flex-basis: calc((100% - 3%) / 2);
  max-width: calc((100% - 3%) / 2);
}
.ua-edge .c-column.-col2-s3p > .c-column__block,
.ua-ie .c-column.-col2-s3p > .c-column__block,
.ua-ms .c-column.-col2-s3p > .c-column__block {
  width: 49.95%;
  width: calc((99.9% - 3%) / 2);
  max-width: calc((99.9% - 3%) / 2);
  -webkit-flex-basis: calc((99.9% - 3%) / 2);
  -moz-flex-basis: calc((99.9% - 3%) / 2);
  -ms-flex-preferred-size: calc((99.9% - 3%) / 2);
  flex-basis: calc((99.9% - 3%) / 2);
  max-width: calc((99.9% - 3%) / 2);
}
.c-column.-col2-s3p.-mt,
.c-column.-col2-s3p[data-mt="true"] {
  margin-top: -3%;
}
.c-column.-col2-s3p.-mt > .c-column__block,
.c-column.-col2-s3p[data-mt="true"] > .c-column__block {
  margin-top: 3%;
}
.ua-edge .c-column.-col2-s3p.-mt > .c-column__block:before,
.ua-edge .c-column.-col2-s3p[data-mt="true"] > .c-column__block:before {
  content: "";
  display: block;
  padding-top: 6%;
}
.c-column.-col3-s3p > .c-column__block {
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  -webkit-flex-basis: calc((100% - 6%) / 3);
  -moz-flex-basis: calc((100% - 6%) / 3);
  -ms-flex-preferred-size: calc((100% - 6%) / 3);
  flex-basis: calc((100% - 6%) / 3);
  max-width: calc((100% - 6%) / 3);
}
.ua-edge .c-column.-col3-s3p > .c-column__block,
.ua-ie .c-column.-col3-s3p > .c-column__block,
.ua-ms .c-column.-col3-s3p > .c-column__block {
  width: 33.3%;
  width: calc((99.9% - 6%) / 3);
  max-width: calc((99.9% - 6%) / 3);
  -webkit-flex-basis: calc((99.9% - 6%) / 3);
  -moz-flex-basis: calc((99.9% - 6%) / 3);
  -ms-flex-preferred-size: calc((99.9% - 6%) / 3);
  flex-basis: calc((99.9% - 6%) / 3);
  max-width: calc((99.9% - 6%) / 3);
}
.c-column.-col3-s3p.-mt,
.c-column.-col3-s3p[data-mt="true"] {
  margin-top: -3%;
}
.c-column.-col3-s3p.-mt > .c-column__block,
.c-column.-col3-s3p[data-mt="true"] > .c-column__block {
  margin-top: 3%;
}
.ua-edge .c-column.-col3-s3p.-mt > .c-column__block:before,
.ua-edge .c-column.-col3-s3p[data-mt="true"] > .c-column__block:before {
  content: "";
  display: block;
  padding-top: 9%;
}
.c-column.-col3-s32px > .c-column__block {
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  -webkit-flex-basis: calc((100% - 64px) / 3);
  -moz-flex-basis: calc((100% - 64px) / 3);
  -ms-flex-preferred-size: calc((100% - 64px) / 3);
  flex-basis: calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
}
.ua-edge .c-column.-col3-s32px > .c-column__block,
.ua-ie .c-column.-col3-s32px > .c-column__block,
.ua-ms .c-column.-col3-s32px > .c-column__block {
  width: 33.3%;
  width: calc((99.9% - 64px) / 3);
  max-width: calc((99.9% - 64px) / 3);
  -webkit-flex-basis: calc((99.9% - 64px) / 3);
  -moz-flex-basis: calc((99.9% - 64px) / 3);
  -ms-flex-preferred-size: calc((99.9% - 64px) / 3);
  flex-basis: calc((99.9% - 64px) / 3);
  max-width: calc((99.9% - 64px) / 3);
}
.c-column.-col3-s32px.-mt,
.c-column.-col3-s32px[data-mt="true"] {
  margin-top: -32px;
}
.c-column.-col3-s32px.-mt > .c-column__block,
.c-column.-col3-s32px[data-mt="true"] > .c-column__block {
  margin-top: 32px;
}
.c-column.-col3-s4p > .c-column__block {
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  -webkit-flex-basis: calc((100% - 8%) / 3);
  -moz-flex-basis: calc((100% - 8%) / 3);
  -ms-flex-preferred-size: calc((100% - 8%) / 3);
  flex-basis: calc((100% - 8%) / 3);
  max-width: calc((100% - 8%) / 3);
}
.ua-edge .c-column.-col3-s4p > .c-column__block,
.ua-ie .c-column.-col3-s4p > .c-column__block,
.ua-ms .c-column.-col3-s4p > .c-column__block {
  width: 33.3%;
  width: calc((99.9% - 8%) / 3);
  max-width: calc((99.9% - 8%) / 3);
  -webkit-flex-basis: calc((99.9% - 8%) / 3);
  -moz-flex-basis: calc((99.9% - 8%) / 3);
  -ms-flex-preferred-size: calc((99.9% - 8%) / 3);
  flex-basis: calc((99.9% - 8%) / 3);
  max-width: calc((99.9% - 8%) / 3);
}
.c-column.-col3-s4p.-mt,
.c-column.-col3-s4p[data-mt="true"] {
  margin-top: -4%;
}
.c-column.-col3-s4p.-mt > .c-column__block,
.c-column.-col3-s4p[data-mt="true"] > .c-column__block {
  margin-top: 4%;
}
.ua-edge .c-column.-col3-s4p.-mt > .c-column__block:before,
.ua-edge .c-column.-col3-s4p[data-mt="true"] > .c-column__block:before {
  content: "";
  display: block;
  padding-top: 12%;
}
.c-column.-col4-s16px > .c-column__block {
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  -webkit-flex-basis: calc((100% - 48px) / 4);
  -moz-flex-basis: calc((100% - 48px) / 4);
  -ms-flex-preferred-size: calc((100% - 48px) / 4);
  flex-basis: calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
}
.ua-edge .c-column.-col4-s16px > .c-column__block,
.ua-ie .c-column.-col4-s16px > .c-column__block,
.ua-ms .c-column.-col4-s16px > .c-column__block {
  width: 24.975%;
  width: calc((99.9% - 48px) / 4);
  max-width: calc((99.9% - 48px) / 4);
  -webkit-flex-basis: calc((99.9% - 48px) / 4);
  -moz-flex-basis: calc((99.9% - 48px) / 4);
  -ms-flex-preferred-size: calc((99.9% - 48px) / 4);
  flex-basis: calc((99.9% - 48px) / 4);
  max-width: calc((99.9% - 48px) / 4);
}
.c-column.-col4-s16px.-mt,
.c-column.-col4-s16px[data-mt="true"] {
  margin-top: -16px;
}
.c-column.-col4-s16px.-mt > .c-column__block,
.c-column.-col4-s16px[data-mt="true"] > .c-column__block {
  margin-top: 16px;
}
@media screen and (max-width: 1264px) {
  .c-column.-col1-s40px-medium > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s40px-medium > .c-column__block,
  .ua-ie .c-column.-col1-s40px-medium > .c-column__block,
  .ua-ms .c-column.-col1-s40px-medium > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s40px-medium.-mt,
  .c-column.-col1-s40px-medium[data-mt="true"] {
    margin-top: -40px;
  }
  .c-column.-col1-s40px-medium.-mt > .c-column__block,
  .c-column.-col1-s40px-medium[data-mt="true"] > .c-column__block {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .c-column.-col1-s40px-medium3 > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s40px-medium3 > .c-column__block,
  .ua-ie .c-column.-col1-s40px-medium3 > .c-column__block,
  .ua-ms .c-column.-col1-s40px-medium3 > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s40px-medium3.-mt,
  .c-column.-col1-s40px-medium3[data-mt="true"] {
    margin-top: -40px;
  }
  .c-column.-col1-s40px-medium3.-mt > .c-column__block,
  .c-column.-col1-s40px-medium3[data-mt="true"] > .c-column__block {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s0p-small,
  .c-column.-col1-s8px-small {
    display: block;
  }
  .c-column.-col1-s0p-small .c-column__block,
  .c-column.-col1-s8px-small .c-column__block {
    width: 100% !important;
    max-width: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    margin-top: 0 !important;
  }
  .c-column.-col1-s0p-small.-mt,
  .c-column.-col1-s0p-small[data-mt="true"],
  .c-column.-col1-s8p-small.-mt,
  .c-column.-col1-s8p-small[data-mt="true"] {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s0px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s0px-small > .c-column__block,
  .ua-ie .c-column.-col1-s0px-small > .c-column__block,
  .ua-ms .c-column.-col1-s0px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s0px-small.-mt,
  .c-column.-col1-s0px-small[data-mt="true"] {
    margin-top: -0px;
  }
  .c-column.-col1-s0px-small.-mt > .c-column__block,
  .c-column.-col1-s0px-small[data-mt="true"] > .c-column__block {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s10px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s10px-small > .c-column__block,
  .ua-ie .c-column.-col1-s10px-small > .c-column__block,
  .ua-ms .c-column.-col1-s10px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s10px-small.-mt,
  .c-column.-col1-s10px-small[data-mt="true"] {
    margin-top: -10px;
  }
  .c-column.-col1-s10px-small.-mt > .c-column__block,
  .c-column.-col1-s10px-small[data-mt="true"] > .c-column__block {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s20px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s20px-small > .c-column__block,
  .ua-ie .c-column.-col1-s20px-small > .c-column__block,
  .ua-ms .c-column.-col1-s20px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s20px-small.-mt,
  .c-column.-col1-s20px-small[data-mt="true"] {
    margin-top: -20px;
  }
  .c-column.-col1-s20px-small.-mt > .c-column__block,
  .c-column.-col1-s20px-small[data-mt="true"] > .c-column__block {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s30px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s30px-small > .c-column__block,
  .ua-ie .c-column.-col1-s30px-small > .c-column__block,
  .ua-ms .c-column.-col1-s30px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s30px-small.-mt,
  .c-column.-col1-s30px-small[data-mt="true"] {
    margin-top: -30px;
  }
  .c-column.-col1-s30px-small.-mt > .c-column__block,
  .c-column.-col1-s30px-small[data-mt="true"] > .c-column__block {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s40px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s40px-small > .c-column__block,
  .ua-ie .c-column.-col1-s40px-small > .c-column__block,
  .ua-ms .c-column.-col1-s40px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s40px-small.-mt,
  .c-column.-col1-s40px-small[data-mt="true"] {
    margin-top: -40px;
  }
  .c-column.-col1-s40px-small.-mt > .c-column__block,
  .c-column.-col1-s40px-small[data-mt="true"] > .c-column__block {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s50px-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0px) / 1);
    -moz-flex-basis: calc((100% - 0px) / 1);
    -ms-flex-preferred-size: calc((100% - 0px) / 1);
    flex-basis: calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
  .ua-edge .c-column.-col1-s50px-small > .c-column__block,
  .ua-ie .c-column.-col1-s50px-small > .c-column__block,
  .ua-ms .c-column.-col1-s50px-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
    -webkit-flex-basis: calc((99.9% - 0px) / 1);
    -moz-flex-basis: calc((99.9% - 0px) / 1);
    -ms-flex-preferred-size: calc((99.9% - 0px) / 1);
    flex-basis: calc((99.9% - 0px) / 1);
    max-width: calc((99.9% - 0px) / 1);
  }
  .c-column.-col1-s50px-small.-mt,
  .c-column.-col1-s50px-small[data-mt="true"] {
    margin-top: -50px;
  }
  .c-column.-col1-s50px-small.-mt > .c-column__block,
  .c-column.-col1-s50px-small[data-mt="true"] > .c-column__block {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col2-s3p-small > .c-column__block {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-flex-basis: calc((100% - 3%) / 2);
    -moz-flex-basis: calc((100% - 3%) / 2);
    -ms-flex-preferred-size: calc((100% - 3%) / 2);
    flex-basis: calc((100% - 3%) / 2);
    max-width: calc((100% - 3%) / 2);
  }
  .ua-edge .c-column.-col2-s3p-small > .c-column__block,
  .ua-ie .c-column.-col2-s3p-small > .c-column__block,
  .ua-ms .c-column.-col2-s3p-small > .c-column__block {
    width: 49.95%;
    width: calc((99.9% - 3%) / 2);
    max-width: calc((99.9% - 3%) / 2);
    -webkit-flex-basis: calc((99.9% - 3%) / 2);
    -moz-flex-basis: calc((99.9% - 3%) / 2);
    -ms-flex-preferred-size: calc((99.9% - 3%) / 2);
    flex-basis: calc((99.9% - 3%) / 2);
    max-width: calc((99.9% - 3%) / 2);
  }
  .c-column.-col2-s3p-small.-mt,
  .c-column.-col2-s3p-small[data-mt="true"] {
    margin-top: -3%;
  }
  .c-column.-col2-s3p-small.-mt > .c-column__block,
  .c-column.-col2-s3p-small[data-mt="true"] > .c-column__block {
    margin-top: 3%;
  }
  .ua-edge .c-column.-col2-s3p-small.-mt > .c-column__block:before,
  .ua-edge .c-column.-col2-s3p-small[data-mt="true"] > .c-column__block:before {
    content: "";
    display: block;
    padding-top: 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col2-s3p-t25px-small > .c-column__block {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-flex-basis: calc((100% - 3%) / 2);
    -moz-flex-basis: calc((100% - 3%) / 2);
    -ms-flex-preferred-size: calc((100% - 3%) / 2);
    flex-basis: calc((100% - 3%) / 2);
    max-width: calc((100% - 3%) / 2);
  }
  .ua-edge .c-column.-col2-s3p-t25px-small > .c-column__block,
  .ua-ie .c-column.-col2-s3p-t25px-small > .c-column__block,
  .ua-ms .c-column.-col2-s3p-t25px-small > .c-column__block {
    width: 49.95%;
    width: calc((99.9% - 3%) / 2);
    max-width: calc((99.9% - 3%) / 2);
    -webkit-flex-basis: calc((99.9% - 3%) / 2);
    -moz-flex-basis: calc((99.9% - 3%) / 2);
    -ms-flex-preferred-size: calc((99.9% - 3%) / 2);
    flex-basis: calc((99.9% - 3%) / 2);
    max-width: calc((99.9% - 3%) / 2);
  }
  .c-column.-col2-s3p-t25px-small.-mt,
  .c-column.-col2-s3p-t25px-small[data-mt="true"] {
    margin-top: -25px;
  }
  .c-column.-col2-s3p-t25px-small.-mt > .c-column__block,
  .c-column.-col2-s3p-t25px-small[data-mt="true"] > .c-column__block {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col2-s15px-t30px-small > .c-column__block {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-flex-basis: calc((100% - 15px) / 2);
    -moz-flex-basis: calc((100% - 15px) / 2);
    -ms-flex-preferred-size: calc((100% - 15px) / 2);
    flex-basis: calc((100% - 15px) / 2);
    max-width: calc((100% - 15px) / 2);
  }
  .ua-edge .c-column.-col2-s15px-t30px-small > .c-column__block,
  .ua-ie .c-column.-col2-s15px-t30px-small > .c-column__block,
  .ua-ms .c-column.-col2-s15px-t30px-small > .c-column__block {
    width: 49.95%;
    width: calc((99.9% - 15px) / 2);
    max-width: calc((99.9% - 15px) / 2);
    -webkit-flex-basis: calc((99.9% - 15px) / 2);
    -moz-flex-basis: calc((99.9% - 15px) / 2);
    -ms-flex-preferred-size: calc((99.9% - 15px) / 2);
    flex-basis: calc((99.9% - 15px) / 2);
    max-width: calc((99.9% - 15px) / 2);
  }
  .c-column.-col2-s15px-t30px-small.-mt,
  .c-column.-col2-s15px-t30px-small[data-mt="true"] {
    margin-top: -30px;
  }
  .c-column.-col2-s15px-t30px-small.-mt > .c-column__block,
  .c-column.-col2-s15px-t30px-small[data-mt="true"] > .c-column__block {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.-col1-s0p-t1rem-small > .c-column__block {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-basis: calc((100% - 0%) / 1);
    -moz-flex-basis: calc((100% - 0%) / 1);
    -ms-flex-preferred-size: calc((100% - 0%) / 1);
    flex-basis: calc((100% - 0%) / 1);
    max-width: calc((100% - 0%) / 1);
  }
  .ua-edge .c-column.-col1-s0p-t1rem-small > .c-column__block,
  .ua-ie .c-column.-col1-s0p-t1rem-small > .c-column__block,
  .ua-ms .c-column.-col1-s0p-t1rem-small > .c-column__block {
    width: 99.9%;
    width: calc((99.9% - 0%) / 1);
    max-width: calc((99.9% - 0%) / 1);
  }
  .c-column.-col1-s0p-t1rem-small.-mt,
  .c-column.-col1-s0p-t1rem-small[data-mt="true"] {
    margin-top: -1rem;
  }
  .c-column.-col1-s0p-t1rem-small.-mt > .c-column__block,
  .c-column.-col1-s0p-t1rem-small[data-mt="true"] > .c-column__block {
    margin-top: 1rem;
  }
}
.c-hero {
  padding-top: 19rem;
  padding-bottom: 6rem;
  position: relative;
}
.c-hero .c-txt-copy.u-effect-txtFadeInUp {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
@media screen and (max-width: 768px) {
  .c-hero {
    padding-top: 14rem;
  }
}
.c-hero.-type2 {
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .c-hero.-type2 {
    padding-bottom: 6rem;
  }
}
.c-hero.-type3 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .c-hero.-type3 {
    padding-bottom: 6rem;
  }
}
.c-hero.-notfound {
  padding: 24rem 0 20rem 0;
}
@media screen and (max-width: 768px) {
  .c-hero.-notfound {
    padding-top: 14rem;
    padding-bottom: 10rem;
  }
}
.c-hero-pict {
  width: 100%;
  max-height: 72rem;
  position: relative;
}
.c-hero-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-hero-column {
    display: block;
  }
}
.c-hero-column__block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-hero-column__block:first-child {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .c-hero-column__block:first-child {
    width: 100%;
  }
}
.c-hero-column__block:last-child {
  width: calc(100% - 25%);
}
@media screen and (max-width: 768px) {
  .c-hero-column__block:last-child {
    width: 100%;
    padding-top: 5rem;
  }
}
.c-hero-cicle {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: 100;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-hero-cicle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-hero-cicle .c-cicle {
    width: 8rem;
    height: 8rem;
  }
}
.c-hero__category {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-hero__category {
    font-size: 1.4rem;
  }
}
.c-hero__title {
  font-size: 3.8rem;
  line-height: 1.3;
  padding-top: 2rem;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
}
.c-hero__title[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-3.8rem * 1.3) + 3.8rem) / 2 + 0rem);
}
.c-hero__title[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-3.8rem * 1.3) + 3.8rem) / 2 + 0rem);
}
@media screen and (max-width: 768px) {
  .c-hero__title {
    font-size: 2.8rem;
    padding-top: 1.5rem;
  }
}
.c-hero__keyword {
  font-size: 1.2rem;
  padding-top: 3.2rem;
}
.c-hero__date {
  padding-top: 2.8rem;
  font-size: 1.1rem;
  font-style: italic;
  color: #8c8c8c;
  font-family: "GaramondPremrPro-Med", serif;
}
.c-hero__date time {
  margin-left: 0.9rem;
  font-style: normal;
  font-size: 1.2rem;
  color: #111111;
}
.c-hr {
  border: 0;
  border-top: 1px solid #e9e9e9;
  margin: 6rem 0;
}
@media screen and (max-width: 768px) {
  .c-hr {
    margin: 4rem 0;
  }
}
.c-hr2 {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 8rem 0;
}
@media screen and (max-width: 768px) {
  .c-hr2 {
    margin: 5rem 0;
  }
}
.c-iframe {
  position: relative;
  width: 100%;
}
.c-iframe:before {
  content: "";
  display: block;
  padding-top: 45.8468%;
}
@media screen and (max-width: 768px) {
  .c-iframe:before {
    padding-top: 100%;
  }
}
.c-iframe iframe {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "GaramondPremrPro-Med", serif;
  position: relative;
}
.c-link.-white {
  color: #fff;
}
.c-link.-black {
  color: #111;
}
.c-link > span {
  -webkit-transform: translateX(-1.5rem);
  -ms-transform: translateX(-1.5rem);
  transform: translateX(-1.5rem);
}
.c-button-link__circle,
.c-button-link__circle2 {
  width: 4.8rem;
  height: 4.8rem;
  position: relative;
}
.c-button-link__circle {
  z-index: 2;
}
.ua-ie .c-button-link__circle {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.c-button-link__circle2 {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}
.ua-ie .c-button-link__circle2 {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.c-button-link__circle2 circle,
.c-button-link__circle circle {
  fill: transparent;
  stroke-width: 1;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.c-button-link__circle circle {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  stroke: #b3b3b1;
  stroke-dasharray: 182;
  stroke-dashoffset: 30;
}
.c-link.-white .c-button-link__circle circle,
.p-home-nav .c-button-link__circle circle {
  stroke: rgba(255, 255, 255, 0.3);
}
.ua-edge .c-button-link__circle circle {
  stroke-dasharray: 183;
}
.c-button-link__circle2 circle {
  stroke: #000;
  stroke-dasharray: 183;
  stroke-dashoffset: 183;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-animation: circle_out2 1.2s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards;
  animation: circle_out2 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.c-link.-white .c-button-link__circle2 circle,
.p-home-nav .c-button-link__circle2 circle {
  stroke: #fff;
}
@media screen and (max-width: 768px) {
  .p-home-store__nav .c-button-link__circle2 circle {
    stroke: #fff;
  }
}
.ua-edge .c-button-link__circle2 circle {
  stroke-dasharray: 183;
}
.c-link.-white .c-button-link__circle circle {
  stroke: #fff;
  opacity: 0.3;
}
.c-link.-black .c-button-link__circle circle {
  stroke: #111;
  opacity: 0.3;
}
.c-circle-hov:hover .c-button-link__circle2 circle {
  -webkit-animation: circle_in2 1.2s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards;
  animation: circle_in2 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.ua-ie .js-circle-target-hov:hover .c-button-link__circle2 circle {
  stroke-dashoffset: 336;
}
.c-link-search {
  width: 20%;
  min-width: 20rem;
  font-size: 1.4rem;
  font-family: "GaramondPremrPro-Med", serif;
  border-bottom: 1px solid #c0c0c0;
  padding: 1.6rem 0;
  margin-top: 6rem;
  cursor: pointer;
  position: relative;
}
.c-link-search:hover {
  background: rgba(17, 17, 17, 0.02);
}
@media screen and (max-width: 768px) {
  .c-link-search {
    width: 100%;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    padding: 1.8rem 1.8rem 1.7rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.c-link-search__icon {
  width: 1.5rem;
  height: 1.1rem;
  background: url(/assets/image/common/icon-toggle.svg) no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-link-search__icon {
    right: 2rem;
  }
}
.c-link-nextLoad {
  width: 14.5rem;
  height: 14.5rem;
  border-radius: 14.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #111;
  font-size: 1.6rem;
  margin: 0 auto;
  font-family: "GaramondPremrPro-Med", serif;
  cursor: pointer;
  position: relative;
}
.c-link-nextLoad .c-cicle__bg {
  position: absolute;
  top: 0;
  left: 0;
}
.c-link-nextLoad .c-cicle__bg circle {
  stroke: #e7e7e8;
}
.c-link-nextLoad .c-button-link__circle__l2 circle {
  stroke: #15171c;
}
.c-link-nextcover {
  height: 47rem;
  display: block;
  background: #111;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-link-nextcover {
    height: auto;
    padding: 8rem 0 4rem;
  }
}
.c-link-nextcover__body {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-link-nextcover__body {
    width: 74.6%;
  }
}
.c-link-nextcover__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}
.c-link-nextcover__bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 23, 28, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.c-link-nextcover__bg .js-objectfit {
  width: 100%;
  height: 100%;
}
.l-nextcove-accent {
  font-size: 1.6rem;
  font-family: "GaramondPremrPro-Med", serif;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .l-nextcove-accent {
    padding-bottom: 1.6rem;
  }
}
.c-link-nextcover-copy {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .c-link-nextcover-copy {
    padding-top: 3rem;
  }
}
.c-link-nextcover-cicle {
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-link-nextcover-cicle {
    margin-top: 2.2rem;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.c-link-nextcover-cicle svg rect {
  opacity: 0.2;
}
.c-list-disc li {
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
  line-height: 2;
  color: #333333;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-list-disc li {
    font-size: 1.3rem;
  }
}
.c-list-disc li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #333333;
  position: absolute;
  top: 0.8em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-list-disc li:before {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.c-list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.6;
}
.c-list-dl + .c-list-dl {
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-list-dl + .c-list-dl {
    padding-top: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .c-list-dl {
    font-size: 1rem;
  }
}
.c-list-dl > li + li:before {
  content: "/";
  margin: 0 0.6em;
  opacity: 0.8;
  font-size: 80%;
}
.c-list-dl__label {
  font-style: italic;
  color: #8c8c8c;
  font-family: "GaramondPremrPro-Med", serif;
}
.c-list-dl__label:after {
  content: "：";
  margin: 0 0.3em;
}
.c-list-dl__copy ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-dl__copy ul li:after {
  content: "/";
  margin: 0 0.6em;
  opacity: 0.8;
  font-size: 80%;
}
.c-list-dl__copy ul li:last-child:after {
  display: none;
}
.c-list-notice li {
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.66;
  color: #555555;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
  position: relative;
}
.c-list-notice li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-ratioobj {
  position: relative;
  overflow: hidden;
}
.c-ratioobj:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  pointer-events: none;
}
.c-ratioobj__target {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-ratioobj.-square:after {
  padding-top: 100%;
}
.c-ratioobj.-half:after {
  padding-top: 50%;
}
.c-ratioobj.-standard:after {
  padding-top: 75%;
}
.c-ratioobj.-wide:after {
  padding-top: 56.25%;
}
.c-ratioobj.-wide2:after {
  padding-top: 40.94%;
}
.c-ratioobj.-wide3:after {
  padding-top: 39.7%;
}
.c-ratioobj.-silver:after {
  padding-top: 70.7%;
}
.c-ratioobj.-gold:after {
  padding-top: 61.8%;
}
.c-ratioobj.-bn:after {
  padding-top: 34%;
}
.c-ratioobj.-cinema:after {
  padding-top: 42.5%;
}
.c-ratioobj.-cinema2:after {
  padding-top: 32%;
}
.c-ratioobj.-wideVertical:after {
  padding-top: 141.6666%;
}
.c-ratioobj.-uniq1:after {
  padding-top: 88.5294%;
}
.c-ratioobj.-uniq2:after {
  padding-top: 137.6237%;
}
.c-ratioobj.-uniq3:after {
  padding-top: 61.3333%;
}
.c-ratioobj.-uniq4:after {
  padding-top: 133.3333%;
}
@media screen and (max-width: 1264px) {
  .c-ratioobj.-medium-square:after {
    padding-top: 100%;
  }
  .c-ratioobj.-medium-half:after {
    padding-top: 50%;
  }
  .c-ratioobj.-medium-standard:after {
    padding-top: 75%;
  }
  .c-ratioobj.-medium-wide:after {
    padding-top: 56.25%;
  }
  .c-ratioobj.-medium-wide2:after {
    padding-top: 40.94%;
  }
  .c-ratioobj.-medium-wide3:after {
    padding-top: 39.7%;
  }
  .c-ratioobj.-medium-silver:after {
    padding-top: 70.7%;
  }
  .c-ratioobj.-medium-gold:after {
    padding-top: 61.8%;
  }
  .c-ratioobj.-medium-bn:after {
    padding-top: 34%;
  }
  .c-ratioobj.-medium-cinema:after {
    padding-top: 42.5%;
  }
  .c-ratioobj.-medium-cinema2:after {
    padding-top: 32%;
  }
  .c-ratioobj.-medium-wideVertical:after {
    padding-top: 141.6666%;
  }
  .c-ratioobj.-medium-uniq1:after {
    padding-top: 88.5294%;
  }
  .c-ratioobj.-medium-uniq2:after {
    padding-top: 137.6237%;
  }
  .c-ratioobj.-medium-uniq3:after {
    padding-top: 61.3333%;
  }
  .c-ratioobj.-medium-uniq4:after {
    padding-top: 133.3333%;
  }
}
@media screen and (max-width: 768px) {
  .c-ratioobj.-small-square:after {
    padding-top: 100%;
  }
  .c-ratioobj.-small-half:after {
    padding-top: 50%;
  }
  .c-ratioobj.-small-standard:after {
    padding-top: 75%;
  }
  .c-ratioobj.-small-wide:after {
    padding-top: 56.25%;
  }
  .c-ratioobj.-small-wide2:after {
    padding-top: 40.94%;
  }
  .c-ratioobj.-small-wide3:after {
    padding-top: 39.7%;
  }
  .c-ratioobj.-small-silver:after {
    padding-top: 70.7%;
  }
  .c-ratioobj.-small-gold:after {
    padding-top: 61.8%;
  }
  .c-ratioobj.-small-bn:after {
    padding-top: 34%;
  }
  .c-ratioobj.-small-cinema:after {
    padding-top: 42.5%;
  }
  .c-ratioobj.-small-cinema2:after {
    padding-top: 32%;
  }
  .c-ratioobj.-small-wideVertical:after {
    padding-top: 141.6666%;
  }
  .c-ratioobj.-small-uniq1:after {
    padding-top: 88.5294%;
  }
  .c-ratioobj.-small-uniq2:after {
    padding-top: 137.6237%;
  }
  .c-ratioobj.-small-uniq3:after {
    padding-top: 61.3333%;
  }
  .c-ratioobj.-small-uniq4:after {
    padding-top: 133.3333%;
  }
}
.c-sec + .c-sec {
  margin-top: 8rem !important;
  padding-top: 8rem !important;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .c-sec + .c-sec {
    margin-top: 5rem !important;
    padding-top: 5rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-careers .c-sec > .c-column__block:first-of-type {
    margin-top: 0 !important;
  }
}
.p-careers .c-sec:first-child {
  margin-top: 0 !important;
}
.c-sns {
  width: 1.6rem;
  height: 1.6rem;
  background: red;
  overflow: hidden;
  display: block;
  text-indent: -9999px;
}
.c-sns.-facebook-w {
  background: url(/assets/image/common/icon-facebook.svg) no-repeat left
    top/cover;
}
.c-sns.-instagram-w {
  background: url(/assets/image/common/icon-instagram.svg) no-repeat left
    top/cover;
}
.c-sns.-pinterest-w {
  background: url(/assets/image/common/icon-pinterest.svg) no-repeat left
    top/cover;
}
.c-stalker {
  position: fixed;
  top: -13px;
  left: -13px;
  width: 26px;
  height: 26px;
  z-index: 99;
  background-color: #15171c;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.ua-edge .c-stalker,
.ua-ie .c-stalker {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .c-stalker {
    display: none !important;
  }
}
.c-stalker.is-pointer-view {
  width: 48px;
  height: 48px;
  top: -34px;
  left: -29px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-stalker.is-white {
  background-color: #fff;
}
.c-stalker.is-white .c-stalker__view {
  color: #15171c;
}
.c-stalker__view {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
.c-table {
  width: 100%;
  border-top: 1px solid #dcdcdc;
  border-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-table.c-txt-m {
    line-height: 1.6;
  }
}
.c-table td,
.c-table th {
  border-bottom: 1px solid #ececec;
  padding: 1.8rem 0;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-table td,
  .c-table th {
    padding: 1.2rem 0;
  }
}
.c-table th {
  width: 33%;
  padding-right: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal;
}
.c-table td {
  width: calc(100% - 33%);
}
.c-table.-type2 td {
  padding-right: 33%;
}
@media screen and (max-width: 768px) {
  .c-table.-type2 td {
    padding-right: 0;
  }
}
.c-tag {
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem;
  display: inline-block;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .c-tag {
    padding: 0.8rem;
  }
}
.c-tag:before {
  content: "#";
}
.c-tag:hover {
  background: #fff;
  color: #111;
}
.c-tag-box {
  display: inline-block;
  padding: 6px 8px 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.1rem;
  color: #fff;
  font-family: "GaramondPremrPro-Smbd", serif;
  line-height: 1;
  text-align: center;
  background-color: #111;
}
@media screen and (max-width: 768px) {
  .c-tag-box {
    padding: 6px 7px 4px;
    font-size: 1rem;
  }
}
.p-home-features__title__sub .c-tag-box {
  margin-right: 7px;
}
.p-home-features__title__sub .c-tag-box {
  margin-right: 7px;
}
.c-card__pict .c-tag-box {
  padding: 9px 10px 7px;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.c-toggle {
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #999999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.is-home .c-toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.is-home.is-header-switch .c-toggle {
  border: 1px solid #999999;
}
@media screen and (max-width: 768px) {
  .c-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .l-header .c-toggle {
    position: fixed;
    top: 0;
    right: 2rem;
  }
}
.c-toggle__inner {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.c-toggle__item {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: #555;
}
.is-home .c-toggle__item {
  background: #fff;
}
.is-home.is-header-switch .c-toggle__item {
  background: #555;
}
.is-menu-open .c-toggle {
  border-color: #fff !important;
}
.is-menu-open .c-toggle__item {
  background: #fff !important;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
}
.is-menu-open .c-toggle__item:first-child {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.is-menu-open .c-toggle__item:nth-child(2) {
  display: none;
}
.is-menu-open .c-toggle__item:nth-child(3) {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.c-toggle-close {
  width: 7rem;
  height: 7rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-toggle-close {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.c-toggle-close__line {
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-toggle-close__line:first-child {
  -webkit-transform: translateY(-50%) rotate(40deg);
  -ms-transform: translateY(-50%) rotate(40deg);
  transform: translateY(-50%) rotate(40deg);
}
.c-toggle-close__line:last-child {
  -webkit-transform: translateY(-50%) rotate(-40deg);
  -ms-transform: translateY(-50%) rotate(-40deg);
  transform: translateY(-50%) rotate(-40deg);
}
.c-toggle-close:hover .c-toggle-close__line:first-child {
  -webkit-transform: translateY(-50%) rotate(20deg);
  -ms-transform: translateY(-50%) rotate(20deg);
  transform: translateY(-50%) rotate(20deg);
}
.c-toggle-close:hover .c-toggle-close__line:last-child {
  -webkit-transform: translateY(-50%) rotate(-20deg);
  -ms-transform: translateY(-50%) rotate(-20deg);
  transform: translateY(-50%) rotate(-20deg);
}
.c-txt-caption {
  font-size: 1.2rem;
  font-style: italic;
  font-family: "GaramondPremrPro-Med", serif;
}
.c-txt-label {
  font-size: 1.6rem;
  color: #111;
}
.c-txt-label + .c-txt-m {
  padding-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-txt-label + .c-txt-m {
    padding-top: 2.4rem;
  }
}
.c-txt-m + .c-txt-label {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .c-txt-m + .c-txt-label {
    padding-top: 4rem;
  }
}
.c-txt-heading {
  text-transform: uppercase;
  font-family: "GaramondPremrPro-Med", serif;
  word-break: break-all;
}
.c-txt-heading.u-effect-rollup {
  opacity: 0;
}
.is-op1 .c-txt-heading.u-effect-rollup {
  opacity: 1;
}
.c-txt-heading.-type-l {
  font-size: 6.6rem;
  line-height: 1.1;
  font-family: "GaramondPremrPro-Med", serif;
}
@media screen and (max-width: 768px) {
  .c-txt-heading.-type-l {
    font-size: 4rem;
  }
}
.c-txt-heading.-type-m {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c-txt-heading.-type-m {
    font-size: 3.2rem;
  }
}
.c-txt-heading.-type-ja {
  font-size: 2.2rem;
  color: #333;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
}
.c-txt-heading.-type-s {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-txt-heading.-type-s {
    font-size: 1.6rem;
  }
}
.c-txt-heading-en {
  overflow: hidden;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: "GaramondPremrPro-Med", serif;
}
@media screen and (max-width: 768px) {
  .c-txt-heading-en {
    font-size: 1.4rem;
  }
}
.c-txt-heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-txt-heading-wrap {
    margin-bottom: 2rem;
  }
}
.c-txt-lead {
  font-size: 1.8rem;
  padding-top: 0.4rem;
  font-family: "YakuHanMP_Noto", serif;
}
@media screen and (max-width: 768px) {
  .c-txt-lead {
    font-size: 1.6rem;
    padding-top: 1rem;
  }
}
.c-txt-lead.-type-ja {
  padding-top: 1.4rem;
  font-size: 1.4rem;
  color: #333;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
}
.c-txt-lead.-type-category {
  display: inline-block;
}
.c-txt-lead.-type-category:before {
  content: "/";
  display: inline-block;
  margin: 0 0.8rem;
  color: #777777;
}
.c-txt-heading.-type-m + .c-txt-lead {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-txt-heading.-type-m + .c-txt-lead {
    padding-top: 0.8rem;
    font-size: 1.2rem;
  }
}
.c-txt-heading.-type-s + .c-txt-lead {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-txt-heading.-type-s + .c-txt-lead {
    padding-top: 0.4rem;
    font-size: 1rem;
  }
}
.c-txt-copy {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333333;
  font-family: "YakuHanMP_Noto", serif;
}
.c-txt-copy + .c-txt-copy {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-txt-copy + .c-txt-copy {
    margin-top: 1.8rem;
  }
}
.c-txt-copy[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-1.8rem * 1.8) + 1.8rem) / 2 + 0rem);
}
.c-txt-copy[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-1.8rem * 1.8) + 1.8rem) / 2 + 0rem);
}
@media screen and (max-width: 768px) {
  .c-txt-copy {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .c-txt-copy[data-txtcrop="true"]:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc(((-1.6rem * 1.7) + 1.6rem) / 2 + 0rem);
  }
  .c-txt-copy[data-txtcrop="true"]:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc(((-1.6rem * 1.7) + 1.6rem) / 2 + 0rem);
  }
}
.c-txt-lead + .c-txt-copy {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .c-txt-lead + .c-txt-copy {
    padding-top: 3rem;
  }
}
.c-txt-caption {
  font-size: 1.2rem;
  font-style: italic;
  font-family: "GaramondPremrPro-Med", serif;
}
.c-txt-s {
  font-size: 1.2rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  letter-spacing: 0.08em;
}
.c-txt-s[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-1.2rem * 2) + 1.2rem) / 2 + 0rem);
}
.c-txt-s[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-1.2rem * 2) + 1.2rem) / 2 + 0rem);
}
.c-txt-m {
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  letter-spacing: 0.08em;
}
.c-txt-m[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-1.4rem * 2) + 1.4rem) / 2 + 0rem);
}
.c-txt-m[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-1.4rem * 2) + 1.4rem) / 2 + 0rem);
}
@media screen and (max-width: 768px) {
  .c-txt-m {
    font-size: 1.3rem;
  }
  .c-txt-m[data-txtcrop="true"]:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc(((-1.3rem * 2) + 1.3rem) / 2 + 0rem);
  }
  .c-txt-m[data-txtcrop="true"]:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc(((-1.3rem * 2) + 1.3rem) / 2 + 0rem);
  }
}
.c-txt-r {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.c-txt-r[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-1.6rem * 2) + 1.6rem) / 2 + 0rem);
}
.c-txt-r[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-1.6rem * 2) + 1.6rem) / 2 + 0rem);
}
@media screen and (max-width: 768px) {
  .c-txt-r {
    font-size: 1.3rem;
  }
  .c-txt-r[data-txtcrop="true"]:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc(((-1.4rem * 2) + 1.4rem) / 2 + 0rem);
  }
  .c-txt-r[data-txtcrop="true"]:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc(((-1.4rem * 2) + 1.4rem) / 2 + 0rem);
  }
}
.c-txt-l {
  font-size: 1.8rem;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-txt-l {
    font-size: 1.3rem;
  }
}
.c-txt-l2 {
  font-size: 1.8rem;
  line-height: 1.88;
  color: #333333;
  text-align: justify;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
  letter-spacing: 0.08em;
}
.c-txt-l2 + .c-txt-l2 {
  margin-top: 1.65em;
}
@media screen and (max-width: 768px) {
  .c-txt-l2 + .c-txt-l2 {
    margin-top: 1.55em;
  }
}
.c-txt-l2[data-txtcrop="true"]:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc(((-1.8rem * 1.88) + 1.8rem) / 2 + 0rem);
}
.c-txt-l2[data-txtcrop="true"]:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((-1.8rem * 1.88) + 1.8rem) / 2 + 0rem);
}
@media screen and (max-width: 768px) {
  .c-txt-l2 {
    font-size: 1.3rem;
  }
  .c-txt-l2[data-txtcrop="true"]:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc(((-1.3rem * 2) + 1.3rem) / 2 + 0rem);
  }
  .c-txt-l2[data-txtcrop="true"]:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc(((-1.3rem * 2) + 1.3rem) / 2 + 0rem);
  }
}
.c-txt-heading-s {
  font-size: 1.6rem;
  color: #111;
}
.c-txt-m + .c-txt-heading-s {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .c-txt-m + .c-txt-heading-s {
    padding-top: 4rem;
  }
}
.c-txt-heading-s + .c-txt-m {
  padding-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-txt-heading-s + .c-txt-m {
    padding-top: 2.4rem;
  }
}
.c-txt-notice {
  font-size: 1.2rem !important;
  line-height: 1.83 !important;
  padding-left: 1em;
  color: #555 !important;
  text-indent: -1em;
  display: block;
}
.c-txt-notice:before {
  content: "※";
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  .c-txt-notice {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.c-txt-r + .c-txt-notice {
  margin-top: 2.7rem;
  color: #333333;
}
.c-txt-copyright {
  font-size: 1.2rem;
  opacity: 0.3;
}
.c-work {
  padding-top: 7rem;
}
.c-work.-type-bg {
  background-color: #f9f9f6;
}
.is-home .c-work {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .c-work {
    padding-top: 37.5rem;
  }
  .is-home .c-work {
    padding-top: 68rem;
  }
}
.c-work__title {
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  color: #15171c;
  font-family: "GaramondPremrPro-Med", serif;
}
@media screen and (max-width: 768px) {
  .c-work__title {
    font-size: 1.8rem;
  }
}
.c-work__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-work__column {
    display: block;
  }
}
.c-work__column__block {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.c-work__column__block:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 88.5294%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-work__column__block:after {
    padding-top: 112%;
  }
}
@media screen and (max-width: 768px) {
  .c-work__column__block {
    width: 100%;
  }
}
.c-work__column__block a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.c-work__column__block a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.28;
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.6s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.6s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.3, 1);
}
.c-work__column__block a:hover .c-work__bg img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
.c-work__column__block a .c-work__bg video {
  transition: transform 0.4s ease-in-out; /* 常時トランジションを適用 */
}
.c-work__column__block a:hover .c-work__bg video {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
.c-work__column__block a:hover:after {
  opacity: 0.5;
}
.c-work__heading {
  width: 100%;
  font-size: 5rem;
  line-height: 1;
  /*font-family: "GaramondPremrPro-Med", serif;*/
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .c-work__heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-work__heading {
    font-size: 2.5rem;
  }
}
.c-work__heading__ja {
  margin-top: 0.2rem;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-family: "YakuHanMP_Noto", serif;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .c-work__heading__ja {
    margin-top: 0.4rem;
    font-size: 1.6rem;
  }
}
.c-work__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-work__bg .swiper-slide {
  -webkit-transition-timing-function: cubic-bezier(
    0.455,
    0.03,
    0.515,
    0.955
  ) !important;
  -o-transition-timing-function: cubic-bezier(
    0.455,
    0.03,
    0.515,
    0.955
  ) !important;
  transition-timing-function: cubic-bezier(
    0.455,
    0.03,
    0.515,
    0.955
  ) !important;
}
.c-work__bg img {
  display: block;
  -webkit-transform: scale(1.003);
  -ms-transform: scale(1.003);
  transform: scale(1.003);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1) !important;
  -o-transition: transform 0.8s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 0.8s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 0.8s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1) !important;
}
.u-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-none-sp {
    display: none;
  }
}
.u-block,
.u-block dd,
.u-block dl,
.u-block dt,
.u-block li,
.u-block ul {
  display: block;
  list-style-type: none;
}
.u-inline,
.u-inline dd,
.u-inline dl,
.u-inline dt,
.u-inline li,
.u-inline ul {
  display: inline;
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .u-inline-small {
    display: inline !important;
  }
}
.u-inline-block-nospace {
  font-size: 0;
}
.u-inline-block,
.u-inline-block dd,
.u-inline-block dl,
.u-inline-block dt,
.u-inline-block li,
.u-inline-block ul {
  display: inline-block;
  list-style-type: none;
}
.u-inline-block--list,
.u-inline-block ul,
ul.u-inline-block {
  letter-spacing: -0.4em;
}
.u-inline-block *,
.u-inline-block > * {
  letter-spacing: 0;
}
.u-ib-nospace {
  font-size: 0;
}
.u-ib,
.u-ib dd,
.u-ib dl,
.u-ib dt,
.u-ib li,
.u-ib ul {
  display: inline-block;
  list-style-type: none;
}
.u-ib--list,
.u-ib ul,
ul.u-ib {
  letter-spacing: -0.4em;
}
.u-ib *,
.u-ib > * {
  letter-spacing: 0;
}
.js-txt-split__cell {
  display: inline-block;
  -webkit-transform: translateY(1em);
  -ms-transform: translateY(1em);
  transform: translateY(1em);
  will-change: transform;
}
.js-txt-split__cell:first-child {
  -webkit-animation-delay: 0.05s !important;
  animation-delay: 0.05s !important;
}
.js-txt-split__cell:nth-child(2) {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}
.js-txt-split__cell:nth-child(3) {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
.js-txt-split__cell:nth-child(4) {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}
.js-txt-split__cell:nth-child(5) {
  -webkit-animation-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}
.js-txt-split__cell:nth-child(6) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.js-txt-split__cell:nth-child(7) {
  -webkit-animation-delay: 0.35s !important;
  animation-delay: 0.35s !important;
}
.js-txt-split__cell:nth-child(8) {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}
.js-txt-split__cell:nth-child(9) {
  -webkit-animation-delay: 0.45s !important;
  animation-delay: 0.45s !important;
}
.js-txt-split__cell:nth-child(10) {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}
.js-txt-split__cell:nth-child(11) {
  -webkit-animation-delay: 0.55s !important;
  animation-delay: 0.55s !important;
}
.js-txt-split__cell:nth-child(12) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.js-txt-split__cell:nth-child(13) {
  -webkit-animation-delay: 0.65s !important;
  animation-delay: 0.65s !important;
}
.js-txt-split__cell:nth-child(14) {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.js-txt-split__cell:nth-child(15) {
  -webkit-animation-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}
.js-txt-split__cell:nth-child(16) {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}
.js-txt-split__cell:nth-child(17) {
  -webkit-animation-delay: 0.85s !important;
  animation-delay: 0.85s !important;
}
.js-txt-split__cell:nth-child(18) {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}
.js-txt-split__cell:nth-child(19) {
  -webkit-animation-delay: 0.95s !important;
  animation-delay: 0.95s !important;
}
.js-txt-split__cell:nth-child(20) {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}
.is-init > .js-txt-split__cell {
  -webkit-animation: textFadeInUp 0.5s ease forwards;
  animation: textFadeInUp 0.5s ease forwards;
}
.u-effect-zoomOutUp {
  -webkit-transform: translateY(6rem);
  -ms-transform: translateY(6rem);
  transform: translateY(6rem);
  opacity: 0;
  -webkit-transition: opacity 1.4s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 1.4s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.4s cubic-bezier(0.47, 0.18, 0.3, 1);
  transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.4s cubic-bezier(0.47, 0.18, 0.3, 1);
  transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.4s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1);
  will-change: opacity, transform;
}
@media screen and (max-width: 768px) {
  .u-effect-zoomOutUp {
    -webkit-transform: translateY(4rem);
    -ms-transform: translateY(4rem);
    transform: translateY(4rem);
  }
}
.u-effect-zoomOutUp__pict {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  will-change: transform;
  -webkit-transition: -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1) !important;
  -o-transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1) !important;
  transition: transform 1.4s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1.4s cubic-bezier(0, 0, 0.3, 1) !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.u-effect-zoomOutUp.is-init {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.u-effect-zoomOutUp.is-init .u-effect-zoomOutUp__pict {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.is-init .u-effect-zoomOutUp {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.is-init .u-effect-zoomOutUp .u-effect-zoomOutUp__pict {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.u-effect-zoomOut {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  will-change: transform;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
}
.is-init.u-effect-zoomOut {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.u-effect-fadeInUp {
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  transform: translateY(2rem);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: opacity 1.2s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 1.2s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0.47, 0.18, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0.47, 0.18, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0.47, 0.18, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
}
.u-effect-fadeInUp.is-init {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.u-effect-slideIn {
  opacity: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: opacity 1.2s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 1.2s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0, 0, 0.3, 1),
    opacity 1.2s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1.2s cubic-bezier(0, 0, 0.3, 1);
  will-change: opacity, transform;
}
.u-effect-slideIn.-slide-r {
  -webkit-transform: translateX(-3rem);
  -ms-transform: translateX(-3rem);
  transform: translateX(-3rem);
}
.u-effect-slideIn.-slide-l {
  -webkit-transform: translateX(3rem);
  -ms-transform: translateX(3rem);
  transform: translateX(3rem);
}
@media screen and (max-width: 768px) {
  .u-effect-slideIn.-slide-up {
    -webkit-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    transform: translateY(3rem);
  }
}
.is-init.u-effect-slideIn {
  opacity: 1;
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
.is-init .u-effect-slideIn {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
@media screen and (max-width: 768px) {
  .is-init .u-effect-slideIn.-slide-up {
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}
.u-effect-rollup {
  overflow: hidden;
}
.c-txt-heading.-type-l.u-effect-rollup .js-txt-split__cell {
  opacity: 0;
  -webkit-transform: translateY(0.35em);
  -ms-transform: translateY(0.35em);
  transform: translateY(0.35em);
}
.is-op1 .c-txt-heading.-type-l.u-effect-rollup .js-txt-split__cell {
  -webkit-animation: textFadeInUp2 1s cubic-bezier(0, 0, 0.3, 1) forwards;
  animation: textFadeInUp2 1s cubic-bezier(0, 0, 0.3, 1) forwards;
}
.c-txt-heading.-type-l.u-effect-rollup {
  overflow: visible !important;
}
.u-effect-txtFadeInUp {
  -webkit-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  transform: translateY(1rem);
  opacity: 0;
  will-change: opacity, transform;
  -webkit-transition: opacity 0.8s linear,
    -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.8s linear,
    -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: opacity 0.8s linear, transform 0.8s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.8s linear, transform 0.8s cubic-bezier(0, 0, 0.3, 1);
  transition: opacity 0.8s linear, transform 0.8s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0, 0, 0.3, 1);
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.is-op1 .u-effect-txtFadeInUp {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.js-txt-split__cell2 {
  display: inline-block;
}
.js-txt-split__cell2:first-child {
  -webkit-animation-delay: 0.03s !important;
  animation-delay: 0.03s !important;
}
.js-txt-split__cell2:nth-child(2) {
  -webkit-animation-delay: 0.06s !important;
  animation-delay: 0.06s !important;
}
.js-txt-split__cell2:nth-child(3) {
  -webkit-animation-delay: 0.09s !important;
  animation-delay: 0.09s !important;
}
.js-txt-split__cell2:nth-child(4) {
  -webkit-animation-delay: 0.12s !important;
  animation-delay: 0.12s !important;
}
.js-txt-split__cell2:nth-child(5) {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
.js-txt-split__cell2:nth-child(6) {
  -webkit-animation-delay: 0.18s !important;
  animation-delay: 0.18s !important;
}
.js-txt-split__cell2:nth-child(7) {
  -webkit-animation-delay: 0.21s !important;
  animation-delay: 0.21s !important;
}
.js-txt-split__cell2:nth-child(8) {
  -webkit-animation-delay: 0.24s !important;
  animation-delay: 0.24s !important;
}
.js-txt-split__cell2:nth-child(9) {
  -webkit-animation-delay: 0.27s !important;
  animation-delay: 0.27s !important;
}
.js-txt-split__cell2:nth-child(10) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.js-txt-split__cell2:nth-child(11) {
  -webkit-animation-delay: 0.33s !important;
  animation-delay: 0.33s !important;
}
.js-txt-split__cell2:nth-child(12) {
  -webkit-animation-delay: 0.36s !important;
  animation-delay: 0.36s !important;
}
.js-txt-split__cell2:nth-child(13) {
  -webkit-animation-delay: 0.39s !important;
  animation-delay: 0.39s !important;
}
.js-txt-split__cell2:nth-child(14) {
  -webkit-animation-delay: 0.42s !important;
  animation-delay: 0.42s !important;
}
.js-txt-split__cell2:nth-child(15) {
  -webkit-animation-delay: 0.45s !important;
  animation-delay: 0.45s !important;
}
.js-txt-split__cell2:nth-child(16) {
  -webkit-animation-delay: 0.48s !important;
  animation-delay: 0.48s !important;
}
.js-txt-split__cell2:nth-child(17) {
  -webkit-animation-delay: 0.51s !important;
  animation-delay: 0.51s !important;
}
.js-txt-split__cell2:nth-child(18) {
  -webkit-animation-delay: 0.54s !important;
  animation-delay: 0.54s !important;
}
.js-txt-split__cell2:nth-child(19) {
  -webkit-animation-delay: 0.57s !important;
  animation-delay: 0.57s !important;
}
.js-txt-split__cell2:nth-child(20) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.js-txt-split__cell2:nth-child(21) {
  -webkit-animation-delay: 0.63s !important;
  animation-delay: 0.63s !important;
}
.js-txt-split__cell2:nth-child(22) {
  -webkit-animation-delay: 0.66s !important;
  animation-delay: 0.66s !important;
}
.js-txt-split__cell2:nth-child(23) {
  -webkit-animation-delay: 0.69s !important;
  animation-delay: 0.69s !important;
}
.js-txt-split__cell2:nth-child(24) {
  -webkit-animation-delay: 0.72s !important;
  animation-delay: 0.72s !important;
}
.js-txt-split__cell2:nth-child(25) {
  -webkit-animation-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}
.js-txt-split__cell2:nth-child(26) {
  -webkit-animation-delay: 0.78s !important;
  animation-delay: 0.78s !important;
}
.js-txt-split__cell2:nth-child(27) {
  -webkit-animation-delay: 0.81s !important;
  animation-delay: 0.81s !important;
}
.js-txt-split__cell2:nth-child(28) {
  -webkit-animation-delay: 0.84s !important;
  animation-delay: 0.84s !important;
}
.js-txt-split__cell2:nth-child(29) {
  -webkit-animation-delay: 0.87s !important;
  animation-delay: 0.87s !important;
}
.js-txt-split__cell2:nth-child(30) {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}
.js-txt-split__cell2:nth-child(31) {
  -webkit-animation-delay: 0.93s !important;
  animation-delay: 0.93s !important;
}
.js-txt-split__cell2:nth-child(32) {
  -webkit-animation-delay: 0.96s !important;
  animation-delay: 0.96s !important;
}
.js-txt-split__cell2:nth-child(33) {
  -webkit-animation-delay: 0.99s !important;
  animation-delay: 0.99s !important;
}
.js-txt-split__cell2:nth-child(34) {
  -webkit-animation-delay: 1.02s !important;
  animation-delay: 1.02s !important;
}
.js-txt-split__cell2:nth-child(35) {
  -webkit-animation-delay: 1.05s !important;
  animation-delay: 1.05s !important;
}
.js-txt-split__cell2:nth-child(36) {
  -webkit-animation-delay: 1.08s !important;
  animation-delay: 1.08s !important;
}
.js-txt-split__cell2:nth-child(37) {
  -webkit-animation-delay: 1.11s !important;
  animation-delay: 1.11s !important;
}
.js-txt-split__cell2:nth-child(38) {
  -webkit-animation-delay: 1.14s !important;
  animation-delay: 1.14s !important;
}
.js-txt-split__cell2:nth-child(39) {
  -webkit-animation-delay: 1.17s !important;
  animation-delay: 1.17s !important;
}
.js-txt-split__cell2:nth-child(40) {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}
.js-txt-split__cell2:nth-child(41) {
  -webkit-animation-delay: 1.23s !important;
  animation-delay: 1.23s !important;
}
.js-txt-split__cell2:nth-child(42) {
  -webkit-animation-delay: 1.26s !important;
  animation-delay: 1.26s !important;
}
.js-txt-split__cell2:nth-child(43) {
  -webkit-animation-delay: 1.29s !important;
  animation-delay: 1.29s !important;
}
.js-txt-split__cell2:nth-child(44) {
  -webkit-animation-delay: 1.32s !important;
  animation-delay: 1.32s !important;
}
.js-txt-split__cell2:nth-child(45) {
  -webkit-animation-delay: 1.35s !important;
  animation-delay: 1.35s !important;
}
.js-txt-split__cell2:nth-child(46) {
  -webkit-animation-delay: 1.38s !important;
  animation-delay: 1.38s !important;
}
.js-txt-split__cell2:nth-child(47) {
  -webkit-animation-delay: 1.41s !important;
  animation-delay: 1.41s !important;
}
.js-txt-split__cell2:nth-child(48) {
  -webkit-animation-delay: 1.44s !important;
  animation-delay: 1.44s !important;
}
.js-txt-split__cell2:nth-child(49) {
  -webkit-animation-delay: 1.47s !important;
  animation-delay: 1.47s !important;
}
.js-txt-split__cell2:nth-child(50) {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}
.js-txt-split__cell2:nth-child(51) {
  -webkit-animation-delay: 1.53s !important;
  animation-delay: 1.53s !important;
}
.js-txt-split__cell2:nth-child(52) {
  -webkit-animation-delay: 1.56s !important;
  animation-delay: 1.56s !important;
}
.js-txt-split__cell2:nth-child(53) {
  -webkit-animation-delay: 1.59s !important;
  animation-delay: 1.59s !important;
}
.js-txt-split__cell2:nth-child(54) {
  -webkit-animation-delay: 1.62s !important;
  animation-delay: 1.62s !important;
}
.js-txt-split__cell2:nth-child(55) {
  -webkit-animation-delay: 1.65s !important;
  animation-delay: 1.65s !important;
}
.js-txt-split__cell2:nth-child(56) {
  -webkit-animation-delay: 1.68s !important;
  animation-delay: 1.68s !important;
}
.js-txt-split__cell2:nth-child(57) {
  -webkit-animation-delay: 1.71s !important;
  animation-delay: 1.71s !important;
}
.js-txt-split__cell2:nth-child(58) {
  -webkit-animation-delay: 1.74s !important;
  animation-delay: 1.74s !important;
}
.js-txt-split__cell2:nth-child(59) {
  -webkit-animation-delay: 1.77s !important;
  animation-delay: 1.77s !important;
}
.js-txt-split__cell2:nth-child(60) {
  -webkit-animation-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}
.js-txt-split__cell2:nth-child(61) {
  -webkit-animation-delay: 1.83s !important;
  animation-delay: 1.83s !important;
}
.js-txt-split__cell2:nth-child(62) {
  -webkit-animation-delay: 1.86s !important;
  animation-delay: 1.86s !important;
}
.js-txt-split__cell2:nth-child(63) {
  -webkit-animation-delay: 1.89s !important;
  animation-delay: 1.89s !important;
}
.js-txt-split__cell2:nth-child(64) {
  -webkit-animation-delay: 1.92s !important;
  animation-delay: 1.92s !important;
}
.js-txt-split__cell2:nth-child(65) {
  -webkit-animation-delay: 1.95s !important;
  animation-delay: 1.95s !important;
}
.js-txt-split__cell2:nth-child(66) {
  -webkit-animation-delay: 1.98s !important;
  animation-delay: 1.98s !important;
}
.js-txt-split__cell2:nth-child(67) {
  -webkit-animation-delay: 2.01s !important;
  animation-delay: 2.01s !important;
}
.js-txt-split__cell2:nth-child(68) {
  -webkit-animation-delay: 2.04s !important;
  animation-delay: 2.04s !important;
}
.js-txt-split__cell2:nth-child(69) {
  -webkit-animation-delay: 2.07s !important;
  animation-delay: 2.07s !important;
}
.js-txt-split__cell2:nth-child(70) {
  -webkit-animation-delay: 2.1s !important;
  animation-delay: 2.1s !important;
}
.js-txt-split__cell2:nth-child(71) {
  -webkit-animation-delay: 2.13s !important;
  animation-delay: 2.13s !important;
}
.js-txt-split__cell2:nth-child(72) {
  -webkit-animation-delay: 2.16s !important;
  animation-delay: 2.16s !important;
}
.js-txt-split__cell2:nth-child(73) {
  -webkit-animation-delay: 2.19s !important;
  animation-delay: 2.19s !important;
}
.js-txt-split__cell2:nth-child(74) {
  -webkit-animation-delay: 2.22s !important;
  animation-delay: 2.22s !important;
}
.js-txt-split__cell2:nth-child(75) {
  -webkit-animation-delay: 2.25s !important;
  animation-delay: 2.25s !important;
}
.js-txt-split__cell2:nth-child(76) {
  -webkit-animation-delay: 2.28s !important;
  animation-delay: 2.28s !important;
}
.js-txt-split__cell2:nth-child(77) {
  -webkit-animation-delay: 2.31s !important;
  animation-delay: 2.31s !important;
}
.js-txt-split__cell2:nth-child(78) {
  -webkit-animation-delay: 2.34s !important;
  animation-delay: 2.34s !important;
}
.js-txt-split__cell2:nth-child(79) {
  -webkit-animation-delay: 2.37s !important;
  animation-delay: 2.37s !important;
}
.js-txt-split__cell2:nth-child(80) {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important;
}
.js-txt-split__cell2:nth-child(81) {
  -webkit-animation-delay: 2.43s !important;
  animation-delay: 2.43s !important;
}
.js-txt-split__cell2:nth-child(82) {
  -webkit-animation-delay: 2.46s !important;
  animation-delay: 2.46s !important;
}
.js-txt-split__cell2:nth-child(83) {
  -webkit-animation-delay: 2.49s !important;
  animation-delay: 2.49s !important;
}
.js-txt-split__cell2:nth-child(84) {
  -webkit-animation-delay: 2.52s !important;
  animation-delay: 2.52s !important;
}
.js-txt-split__cell2:nth-child(85) {
  -webkit-animation-delay: 2.55s !important;
  animation-delay: 2.55s !important;
}
.js-txt-split__cell2:nth-child(86) {
  -webkit-animation-delay: 2.58s !important;
  animation-delay: 2.58s !important;
}
.js-txt-split__cell2:nth-child(87) {
  -webkit-animation-delay: 2.61s !important;
  animation-delay: 2.61s !important;
}
.js-txt-split__cell2:nth-child(88) {
  -webkit-animation-delay: 2.64s !important;
  animation-delay: 2.64s !important;
}
.js-txt-split__cell2:nth-child(89) {
  -webkit-animation-delay: 2.67s !important;
  animation-delay: 2.67s !important;
}
.js-txt-split__cell2:nth-child(90) {
  -webkit-animation-delay: 2.7s !important;
  animation-delay: 2.7s !important;
}
.js-txt-split__cell2:nth-child(91) {
  -webkit-animation-delay: 2.73s !important;
  animation-delay: 2.73s !important;
}
.js-txt-split__cell2:nth-child(92) {
  -webkit-animation-delay: 2.76s !important;
  animation-delay: 2.76s !important;
}
.js-txt-split__cell2:nth-child(93) {
  -webkit-animation-delay: 2.79s !important;
  animation-delay: 2.79s !important;
}
.js-txt-split__cell2:nth-child(94) {
  -webkit-animation-delay: 2.82s !important;
  animation-delay: 2.82s !important;
}
.js-txt-split__cell2:nth-child(95) {
  -webkit-animation-delay: 2.85s !important;
  animation-delay: 2.85s !important;
}
.js-txt-split__cell2:nth-child(96) {
  -webkit-animation-delay: 2.88s !important;
  animation-delay: 2.88s !important;
}
.js-txt-split__cell2:nth-child(97) {
  -webkit-animation-delay: 2.91s !important;
  animation-delay: 2.91s !important;
}
.js-txt-split__cell2:nth-child(98) {
  -webkit-animation-delay: 2.94s !important;
  animation-delay: 2.94s !important;
}
.js-txt-split__cell2:nth-child(99) {
  -webkit-animation-delay: 2.97s !important;
  animation-delay: 2.97s !important;
}
.js-txt-split__cell2:nth-child(100) {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:first-child {
  -webkit-animation-delay: 0.03s !important;
  animation-delay: 0.03s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(2) {
  -webkit-animation-delay: 0.06s !important;
  animation-delay: 0.06s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(3) {
  -webkit-animation-delay: 0.09s !important;
  animation-delay: 0.09s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(4) {
  -webkit-animation-delay: 0.12s !important;
  animation-delay: 0.12s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(5) {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(6) {
  -webkit-animation-delay: 0.18s !important;
  animation-delay: 0.18s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(7) {
  -webkit-animation-delay: 0.21s !important;
  animation-delay: 0.21s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(8) {
  -webkit-animation-delay: 0.24s !important;
  animation-delay: 0.24s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(9) {
  -webkit-animation-delay: 0.27s !important;
  animation-delay: 0.27s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(10) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(11) {
  -webkit-animation-delay: 0.33s !important;
  animation-delay: 0.33s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(12) {
  -webkit-animation-delay: 0.36s !important;
  animation-delay: 0.36s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(13) {
  -webkit-animation-delay: 0.39s !important;
  animation-delay: 0.39s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(14) {
  -webkit-animation-delay: 0.42s !important;
  animation-delay: 0.42s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(15) {
  -webkit-animation-delay: 0.45s !important;
  animation-delay: 0.45s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(16) {
  -webkit-animation-delay: 0.48s !important;
  animation-delay: 0.48s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(17) {
  -webkit-animation-delay: 0.51s !important;
  animation-delay: 0.51s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(18) {
  -webkit-animation-delay: 0.54s !important;
  animation-delay: 0.54s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(19) {
  -webkit-animation-delay: 0.57s !important;
  animation-delay: 0.57s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(20) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(21) {
  -webkit-animation-delay: 0.63s !important;
  animation-delay: 0.63s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(22) {
  -webkit-animation-delay: 0.66s !important;
  animation-delay: 0.66s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(23) {
  -webkit-animation-delay: 0.69s !important;
  animation-delay: 0.69s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(24) {
  -webkit-animation-delay: 0.72s !important;
  animation-delay: 0.72s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(25) {
  -webkit-animation-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(26) {
  -webkit-animation-delay: 0.78s !important;
  animation-delay: 0.78s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(27) {
  -webkit-animation-delay: 0.81s !important;
  animation-delay: 0.81s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(28) {
  -webkit-animation-delay: 0.84s !important;
  animation-delay: 0.84s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(29) {
  -webkit-animation-delay: 0.87s !important;
  animation-delay: 0.87s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(30) {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(31) {
  -webkit-animation-delay: 0.93s !important;
  animation-delay: 0.93s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(32) {
  -webkit-animation-delay: 0.96s !important;
  animation-delay: 0.96s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(33) {
  -webkit-animation-delay: 0.99s !important;
  animation-delay: 0.99s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(34) {
  -webkit-animation-delay: 1.02s !important;
  animation-delay: 1.02s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(35) {
  -webkit-animation-delay: 1.05s !important;
  animation-delay: 1.05s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(36) {
  -webkit-animation-delay: 1.08s !important;
  animation-delay: 1.08s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(37) {
  -webkit-animation-delay: 1.11s !important;
  animation-delay: 1.11s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(38) {
  -webkit-animation-delay: 1.14s !important;
  animation-delay: 1.14s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(39) {
  -webkit-animation-delay: 1.17s !important;
  animation-delay: 1.17s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(40) {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(41) {
  -webkit-animation-delay: 1.23s !important;
  animation-delay: 1.23s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(42) {
  -webkit-animation-delay: 1.26s !important;
  animation-delay: 1.26s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(43) {
  -webkit-animation-delay: 1.29s !important;
  animation-delay: 1.29s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(44) {
  -webkit-animation-delay: 1.32s !important;
  animation-delay: 1.32s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(45) {
  -webkit-animation-delay: 1.35s !important;
  animation-delay: 1.35s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(46) {
  -webkit-animation-delay: 1.38s !important;
  animation-delay: 1.38s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(47) {
  -webkit-animation-delay: 1.41s !important;
  animation-delay: 1.41s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(48) {
  -webkit-animation-delay: 1.44s !important;
  animation-delay: 1.44s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(49) {
  -webkit-animation-delay: 1.47s !important;
  animation-delay: 1.47s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(50) {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(51) {
  -webkit-animation-delay: 1.53s !important;
  animation-delay: 1.53s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(52) {
  -webkit-animation-delay: 1.56s !important;
  animation-delay: 1.56s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(53) {
  -webkit-animation-delay: 1.59s !important;
  animation-delay: 1.59s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(54) {
  -webkit-animation-delay: 1.62s !important;
  animation-delay: 1.62s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(55) {
  -webkit-animation-delay: 1.65s !important;
  animation-delay: 1.65s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(56) {
  -webkit-animation-delay: 1.68s !important;
  animation-delay: 1.68s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(57) {
  -webkit-animation-delay: 1.71s !important;
  animation-delay: 1.71s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(58) {
  -webkit-animation-delay: 1.74s !important;
  animation-delay: 1.74s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(59) {
  -webkit-animation-delay: 1.77s !important;
  animation-delay: 1.77s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(60) {
  -webkit-animation-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(61) {
  -webkit-animation-delay: 1.83s !important;
  animation-delay: 1.83s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(62) {
  -webkit-animation-delay: 1.86s !important;
  animation-delay: 1.86s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(63) {
  -webkit-animation-delay: 1.89s !important;
  animation-delay: 1.89s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(64) {
  -webkit-animation-delay: 1.92s !important;
  animation-delay: 1.92s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(65) {
  -webkit-animation-delay: 1.95s !important;
  animation-delay: 1.95s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(66) {
  -webkit-animation-delay: 1.98s !important;
  animation-delay: 1.98s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(67) {
  -webkit-animation-delay: 2.01s !important;
  animation-delay: 2.01s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(68) {
  -webkit-animation-delay: 2.04s !important;
  animation-delay: 2.04s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(69) {
  -webkit-animation-delay: 2.07s !important;
  animation-delay: 2.07s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(70) {
  -webkit-animation-delay: 2.1s !important;
  animation-delay: 2.1s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(71) {
  -webkit-animation-delay: 2.13s !important;
  animation-delay: 2.13s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(72) {
  -webkit-animation-delay: 2.16s !important;
  animation-delay: 2.16s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(73) {
  -webkit-animation-delay: 2.19s !important;
  animation-delay: 2.19s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(74) {
  -webkit-animation-delay: 2.22s !important;
  animation-delay: 2.22s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(75) {
  -webkit-animation-delay: 2.25s !important;
  animation-delay: 2.25s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(76) {
  -webkit-animation-delay: 2.28s !important;
  animation-delay: 2.28s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(77) {
  -webkit-animation-delay: 2.31s !important;
  animation-delay: 2.31s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(78) {
  -webkit-animation-delay: 2.34s !important;
  animation-delay: 2.34s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(79) {
  -webkit-animation-delay: 2.37s !important;
  animation-delay: 2.37s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(80) {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(81) {
  -webkit-animation-delay: 2.43s !important;
  animation-delay: 2.43s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(82) {
  -webkit-animation-delay: 2.46s !important;
  animation-delay: 2.46s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(83) {
  -webkit-animation-delay: 2.49s !important;
  animation-delay: 2.49s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(84) {
  -webkit-animation-delay: 2.52s !important;
  animation-delay: 2.52s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(85) {
  -webkit-animation-delay: 2.55s !important;
  animation-delay: 2.55s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(86) {
  -webkit-animation-delay: 2.58s !important;
  animation-delay: 2.58s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(87) {
  -webkit-animation-delay: 2.61s !important;
  animation-delay: 2.61s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(88) {
  -webkit-animation-delay: 2.64s !important;
  animation-delay: 2.64s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(89) {
  -webkit-animation-delay: 2.67s !important;
  animation-delay: 2.67s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(90) {
  -webkit-animation-delay: 2.7s !important;
  animation-delay: 2.7s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(91) {
  -webkit-animation-delay: 2.73s !important;
  animation-delay: 2.73s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(92) {
  -webkit-animation-delay: 2.76s !important;
  animation-delay: 2.76s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(93) {
  -webkit-animation-delay: 2.79s !important;
  animation-delay: 2.79s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(94) {
  -webkit-animation-delay: 2.82s !important;
  animation-delay: 2.82s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(95) {
  -webkit-animation-delay: 2.85s !important;
  animation-delay: 2.85s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(96) {
  -webkit-animation-delay: 2.88s !important;
  animation-delay: 2.88s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(97) {
  -webkit-animation-delay: 2.91s !important;
  animation-delay: 2.91s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(98) {
  -webkit-animation-delay: 2.94s !important;
  animation-delay: 2.94s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(99) {
  -webkit-animation-delay: 2.97s !important;
  animation-delay: 2.97s !important;
}
.u-effect-txt-fade .js-txt-split__cell2:nth-child(100) {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:first-child {
  -webkit-animation-delay: 0.13s !important;
  animation-delay: 0.13s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(2) {
  -webkit-animation-delay: 0.16s !important;
  animation-delay: 0.16s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(3) {
  -webkit-animation-delay: 0.19s !important;
  animation-delay: 0.19s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(4) {
  -webkit-animation-delay: 0.22s !important;
  animation-delay: 0.22s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(5) {
  -webkit-animation-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(6) {
  -webkit-animation-delay: 0.28s !important;
  animation-delay: 0.28s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(7) {
  -webkit-animation-delay: 0.31s !important;
  animation-delay: 0.31s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(8) {
  -webkit-animation-delay: 0.34s !important;
  animation-delay: 0.34s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(9) {
  -webkit-animation-delay: 0.37s !important;
  animation-delay: 0.37s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(10) {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(11) {
  -webkit-animation-delay: 0.43s !important;
  animation-delay: 0.43s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(12) {
  -webkit-animation-delay: 0.46s !important;
  animation-delay: 0.46s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(13) {
  -webkit-animation-delay: 0.49s !important;
  animation-delay: 0.49s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(14) {
  -webkit-animation-delay: 0.52s !important;
  animation-delay: 0.52s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(15) {
  -webkit-animation-delay: 0.55s !important;
  animation-delay: 0.55s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(16) {
  -webkit-animation-delay: 0.58s !important;
  animation-delay: 0.58s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(17) {
  -webkit-animation-delay: 0.61s !important;
  animation-delay: 0.61s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(18) {
  -webkit-animation-delay: 0.64s !important;
  animation-delay: 0.64s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(19) {
  -webkit-animation-delay: 0.67s !important;
  animation-delay: 0.67s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(20) {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(21) {
  -webkit-animation-delay: 0.73s !important;
  animation-delay: 0.73s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(22) {
  -webkit-animation-delay: 0.76s !important;
  animation-delay: 0.76s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(23) {
  -webkit-animation-delay: 0.79s !important;
  animation-delay: 0.79s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(24) {
  -webkit-animation-delay: 0.82s !important;
  animation-delay: 0.82s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(25) {
  -webkit-animation-delay: 0.85s !important;
  animation-delay: 0.85s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(26) {
  -webkit-animation-delay: 0.88s !important;
  animation-delay: 0.88s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(27) {
  -webkit-animation-delay: 0.91s !important;
  animation-delay: 0.91s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(28) {
  -webkit-animation-delay: 0.94s !important;
  animation-delay: 0.94s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(29) {
  -webkit-animation-delay: 0.97s !important;
  animation-delay: 0.97s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(30) {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(31) {
  -webkit-animation-delay: 1.03s !important;
  animation-delay: 1.03s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(32) {
  -webkit-animation-delay: 1.06s !important;
  animation-delay: 1.06s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(33) {
  -webkit-animation-delay: 1.09s !important;
  animation-delay: 1.09s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(34) {
  -webkit-animation-delay: 1.12s !important;
  animation-delay: 1.12s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(35) {
  -webkit-animation-delay: 1.15s !important;
  animation-delay: 1.15s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(36) {
  -webkit-animation-delay: 1.18s !important;
  animation-delay: 1.18s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(37) {
  -webkit-animation-delay: 1.21s !important;
  animation-delay: 1.21s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(38) {
  -webkit-animation-delay: 1.24s !important;
  animation-delay: 1.24s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(39) {
  -webkit-animation-delay: 1.27s !important;
  animation-delay: 1.27s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(40) {
  -webkit-animation-delay: 1.3s !important;
  animation-delay: 1.3s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(41) {
  -webkit-animation-delay: 1.33s !important;
  animation-delay: 1.33s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(42) {
  -webkit-animation-delay: 1.36s !important;
  animation-delay: 1.36s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(43) {
  -webkit-animation-delay: 1.39s !important;
  animation-delay: 1.39s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(44) {
  -webkit-animation-delay: 1.42s !important;
  animation-delay: 1.42s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(45) {
  -webkit-animation-delay: 1.45s !important;
  animation-delay: 1.45s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(46) {
  -webkit-animation-delay: 1.48s !important;
  animation-delay: 1.48s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(47) {
  -webkit-animation-delay: 1.51s !important;
  animation-delay: 1.51s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(48) {
  -webkit-animation-delay: 1.54s !important;
  animation-delay: 1.54s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(49) {
  -webkit-animation-delay: 1.57s !important;
  animation-delay: 1.57s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(50) {
  -webkit-animation-delay: 1.6s !important;
  animation-delay: 1.6s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(51) {
  -webkit-animation-delay: 1.63s !important;
  animation-delay: 1.63s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(52) {
  -webkit-animation-delay: 1.66s !important;
  animation-delay: 1.66s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(53) {
  -webkit-animation-delay: 1.69s !important;
  animation-delay: 1.69s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(54) {
  -webkit-animation-delay: 1.72s !important;
  animation-delay: 1.72s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(55) {
  -webkit-animation-delay: 1.75s !important;
  animation-delay: 1.75s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(56) {
  -webkit-animation-delay: 1.78s !important;
  animation-delay: 1.78s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(57) {
  -webkit-animation-delay: 1.81s !important;
  animation-delay: 1.81s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(58) {
  -webkit-animation-delay: 1.84s !important;
  animation-delay: 1.84s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(59) {
  -webkit-animation-delay: 1.87s !important;
  animation-delay: 1.87s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(60) {
  -webkit-animation-delay: 1.9s !important;
  animation-delay: 1.9s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(61) {
  -webkit-animation-delay: 1.93s !important;
  animation-delay: 1.93s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(62) {
  -webkit-animation-delay: 1.96s !important;
  animation-delay: 1.96s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(63) {
  -webkit-animation-delay: 1.99s !important;
  animation-delay: 1.99s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(64) {
  -webkit-animation-delay: 2.02s !important;
  animation-delay: 2.02s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(65) {
  -webkit-animation-delay: 2.05s !important;
  animation-delay: 2.05s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(66) {
  -webkit-animation-delay: 2.08s !important;
  animation-delay: 2.08s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(67) {
  -webkit-animation-delay: 2.11s !important;
  animation-delay: 2.11s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(68) {
  -webkit-animation-delay: 2.14s !important;
  animation-delay: 2.14s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(69) {
  -webkit-animation-delay: 2.17s !important;
  animation-delay: 2.17s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(70) {
  -webkit-animation-delay: 2.2s !important;
  animation-delay: 2.2s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(71) {
  -webkit-animation-delay: 2.23s !important;
  animation-delay: 2.23s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(72) {
  -webkit-animation-delay: 2.26s !important;
  animation-delay: 2.26s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(73) {
  -webkit-animation-delay: 2.29s !important;
  animation-delay: 2.29s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(74) {
  -webkit-animation-delay: 2.32s !important;
  animation-delay: 2.32s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(75) {
  -webkit-animation-delay: 2.35s !important;
  animation-delay: 2.35s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(76) {
  -webkit-animation-delay: 2.38s !important;
  animation-delay: 2.38s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(77) {
  -webkit-animation-delay: 2.41s !important;
  animation-delay: 2.41s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(78) {
  -webkit-animation-delay: 2.44s !important;
  animation-delay: 2.44s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(79) {
  -webkit-animation-delay: 2.47s !important;
  animation-delay: 2.47s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(80) {
  -webkit-animation-delay: 2.5s !important;
  animation-delay: 2.5s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(81) {
  -webkit-animation-delay: 2.53s !important;
  animation-delay: 2.53s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(82) {
  -webkit-animation-delay: 2.56s !important;
  animation-delay: 2.56s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(83) {
  -webkit-animation-delay: 2.59s !important;
  animation-delay: 2.59s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(84) {
  -webkit-animation-delay: 2.62s !important;
  animation-delay: 2.62s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(85) {
  -webkit-animation-delay: 2.65s !important;
  animation-delay: 2.65s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(86) {
  -webkit-animation-delay: 2.68s !important;
  animation-delay: 2.68s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(87) {
  -webkit-animation-delay: 2.71s !important;
  animation-delay: 2.71s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(88) {
  -webkit-animation-delay: 2.74s !important;
  animation-delay: 2.74s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(89) {
  -webkit-animation-delay: 2.77s !important;
  animation-delay: 2.77s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(90) {
  -webkit-animation-delay: 2.8s !important;
  animation-delay: 2.8s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(91) {
  -webkit-animation-delay: 2.83s !important;
  animation-delay: 2.83s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(92) {
  -webkit-animation-delay: 2.86s !important;
  animation-delay: 2.86s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(93) {
  -webkit-animation-delay: 2.89s !important;
  animation-delay: 2.89s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(94) {
  -webkit-animation-delay: 2.92s !important;
  animation-delay: 2.92s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(95) {
  -webkit-animation-delay: 2.95s !important;
  animation-delay: 2.95s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(96) {
  -webkit-animation-delay: 2.98s !important;
  animation-delay: 2.98s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(97) {
  -webkit-animation-delay: 3.01s !important;
  animation-delay: 3.01s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(98) {
  -webkit-animation-delay: 3.04s !important;
  animation-delay: 3.04s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(99) {
  -webkit-animation-delay: 3.07s !important;
  animation-delay: 3.07s !important;
}
.u-effect-txt-fade.-delay1 .js-txt-split__cell2:nth-child(100) {
  -webkit-animation-delay: 3.1s !important;
  animation-delay: 3.1s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:first-child {
  -webkit-animation-delay: 0.212s !important;
  animation-delay: 0.212s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(2) {
  -webkit-animation-delay: 0.224s !important;
  animation-delay: 0.224s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(3) {
  -webkit-animation-delay: 0.236s !important;
  animation-delay: 0.236s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(4) {
  -webkit-animation-delay: 0.248s !important;
  animation-delay: 0.248s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(5) {
  -webkit-animation-delay: 0.26s !important;
  animation-delay: 0.26s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(6) {
  -webkit-animation-delay: 0.272s !important;
  animation-delay: 0.272s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(7) {
  -webkit-animation-delay: 0.284s !important;
  animation-delay: 0.284s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(8) {
  -webkit-animation-delay: 0.296s !important;
  animation-delay: 0.296s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(9) {
  -webkit-animation-delay: 0.308s !important;
  animation-delay: 0.308s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(10) {
  -webkit-animation-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(11) {
  -webkit-animation-delay: 0.332s !important;
  animation-delay: 0.332s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(12) {
  -webkit-animation-delay: 0.344s !important;
  animation-delay: 0.344s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(13) {
  -webkit-animation-delay: 0.356s !important;
  animation-delay: 0.356s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(14) {
  -webkit-animation-delay: 0.368s !important;
  animation-delay: 0.368s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(15) {
  -webkit-animation-delay: 0.38s !important;
  animation-delay: 0.38s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(16) {
  -webkit-animation-delay: 0.392s !important;
  animation-delay: 0.392s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(17) {
  -webkit-animation-delay: 0.404s !important;
  animation-delay: 0.404s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(18) {
  -webkit-animation-delay: 0.416s !important;
  animation-delay: 0.416s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(19) {
  -webkit-animation-delay: 0.428s !important;
  animation-delay: 0.428s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(20) {
  -webkit-animation-delay: 0.44s !important;
  animation-delay: 0.44s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(21) {
  -webkit-animation-delay: 0.452s !important;
  animation-delay: 0.452s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(22) {
  -webkit-animation-delay: 0.464s !important;
  animation-delay: 0.464s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(23) {
  -webkit-animation-delay: 0.476s !important;
  animation-delay: 0.476s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(24) {
  -webkit-animation-delay: 0.488s !important;
  animation-delay: 0.488s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(25) {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(26) {
  -webkit-animation-delay: 0.512s !important;
  animation-delay: 0.512s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(27) {
  -webkit-animation-delay: 0.524s !important;
  animation-delay: 0.524s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(28) {
  -webkit-animation-delay: 0.536s !important;
  animation-delay: 0.536s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(29) {
  -webkit-animation-delay: 0.548s !important;
  animation-delay: 0.548s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(30) {
  -webkit-animation-delay: 0.56s !important;
  animation-delay: 0.56s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(31) {
  -webkit-animation-delay: 0.572s !important;
  animation-delay: 0.572s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(32) {
  -webkit-animation-delay: 0.584s !important;
  animation-delay: 0.584s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(33) {
  -webkit-animation-delay: 0.596s !important;
  animation-delay: 0.596s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(34) {
  -webkit-animation-delay: 0.608s !important;
  animation-delay: 0.608s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(35) {
  -webkit-animation-delay: 0.62s !important;
  animation-delay: 0.62s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(36) {
  -webkit-animation-delay: 0.632s !important;
  animation-delay: 0.632s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(37) {
  -webkit-animation-delay: 0.644s !important;
  animation-delay: 0.644s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(38) {
  -webkit-animation-delay: 0.656s !important;
  animation-delay: 0.656s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(39) {
  -webkit-animation-delay: 0.668s !important;
  animation-delay: 0.668s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(40) {
  -webkit-animation-delay: 0.68s !important;
  animation-delay: 0.68s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(41) {
  -webkit-animation-delay: 0.692s !important;
  animation-delay: 0.692s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(42) {
  -webkit-animation-delay: 0.704s !important;
  animation-delay: 0.704s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(43) {
  -webkit-animation-delay: 0.716s !important;
  animation-delay: 0.716s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(44) {
  -webkit-animation-delay: 0.728s !important;
  animation-delay: 0.728s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(45) {
  -webkit-animation-delay: 0.74s !important;
  animation-delay: 0.74s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(46) {
  -webkit-animation-delay: 0.752s !important;
  animation-delay: 0.752s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(47) {
  -webkit-animation-delay: 0.764s !important;
  animation-delay: 0.764s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(48) {
  -webkit-animation-delay: 0.776s !important;
  animation-delay: 0.776s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(49) {
  -webkit-animation-delay: 0.788s !important;
  animation-delay: 0.788s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(50) {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(51) {
  -webkit-animation-delay: 0.812s !important;
  animation-delay: 0.812s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(52) {
  -webkit-animation-delay: 0.824s !important;
  animation-delay: 0.824s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(53) {
  -webkit-animation-delay: 0.836s !important;
  animation-delay: 0.836s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(54) {
  -webkit-animation-delay: 0.848s !important;
  animation-delay: 0.848s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(55) {
  -webkit-animation-delay: 0.86s !important;
  animation-delay: 0.86s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(56) {
  -webkit-animation-delay: 0.872s !important;
  animation-delay: 0.872s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(57) {
  -webkit-animation-delay: 0.884s !important;
  animation-delay: 0.884s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(58) {
  -webkit-animation-delay: 0.896s !important;
  animation-delay: 0.896s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(59) {
  -webkit-animation-delay: 0.908s !important;
  animation-delay: 0.908s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(60) {
  -webkit-animation-delay: 0.92s !important;
  animation-delay: 0.92s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(61) {
  -webkit-animation-delay: 0.932s !important;
  animation-delay: 0.932s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(62) {
  -webkit-animation-delay: 0.944s !important;
  animation-delay: 0.944s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(63) {
  -webkit-animation-delay: 0.956s !important;
  animation-delay: 0.956s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(64) {
  -webkit-animation-delay: 0.968s !important;
  animation-delay: 0.968s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(65) {
  -webkit-animation-delay: 0.98s !important;
  animation-delay: 0.98s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(66) {
  -webkit-animation-delay: 0.992s !important;
  animation-delay: 0.992s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(67) {
  -webkit-animation-delay: 1.004s !important;
  animation-delay: 1.004s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(68) {
  -webkit-animation-delay: 1.016s !important;
  animation-delay: 1.016s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(69) {
  -webkit-animation-delay: 1.028s !important;
  animation-delay: 1.028s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(70) {
  -webkit-animation-delay: 1.04s !important;
  animation-delay: 1.04s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(71) {
  -webkit-animation-delay: 1.052s !important;
  animation-delay: 1.052s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(72) {
  -webkit-animation-delay: 1.064s !important;
  animation-delay: 1.064s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(73) {
  -webkit-animation-delay: 1.076s !important;
  animation-delay: 1.076s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(74) {
  -webkit-animation-delay: 1.088s !important;
  animation-delay: 1.088s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(75) {
  -webkit-animation-delay: 1.1s !important;
  animation-delay: 1.1s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(76) {
  -webkit-animation-delay: 1.112s !important;
  animation-delay: 1.112s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(77) {
  -webkit-animation-delay: 1.124s !important;
  animation-delay: 1.124s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(78) {
  -webkit-animation-delay: 1.136s !important;
  animation-delay: 1.136s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(79) {
  -webkit-animation-delay: 1.148s !important;
  animation-delay: 1.148s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(80) {
  -webkit-animation-delay: 1.16s !important;
  animation-delay: 1.16s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(81) {
  -webkit-animation-delay: 1.172s !important;
  animation-delay: 1.172s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(82) {
  -webkit-animation-delay: 1.184s !important;
  animation-delay: 1.184s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(83) {
  -webkit-animation-delay: 1.196s !important;
  animation-delay: 1.196s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(84) {
  -webkit-animation-delay: 1.208s !important;
  animation-delay: 1.208s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(85) {
  -webkit-animation-delay: 1.22s !important;
  animation-delay: 1.22s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(86) {
  -webkit-animation-delay: 1.232s !important;
  animation-delay: 1.232s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(87) {
  -webkit-animation-delay: 1.244s !important;
  animation-delay: 1.244s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(88) {
  -webkit-animation-delay: 1.256s !important;
  animation-delay: 1.256s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(89) {
  -webkit-animation-delay: 1.268s !important;
  animation-delay: 1.268s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(90) {
  -webkit-animation-delay: 1.28s !important;
  animation-delay: 1.28s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(91) {
  -webkit-animation-delay: 1.292s !important;
  animation-delay: 1.292s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(92) {
  -webkit-animation-delay: 1.304s !important;
  animation-delay: 1.304s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(93) {
  -webkit-animation-delay: 1.316s !important;
  animation-delay: 1.316s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(94) {
  -webkit-animation-delay: 1.328s !important;
  animation-delay: 1.328s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(95) {
  -webkit-animation-delay: 1.34s !important;
  animation-delay: 1.34s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(96) {
  -webkit-animation-delay: 1.352s !important;
  animation-delay: 1.352s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(97) {
  -webkit-animation-delay: 1.364s !important;
  animation-delay: 1.364s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(98) {
  -webkit-animation-delay: 1.376s !important;
  animation-delay: 1.376s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(99) {
  -webkit-animation-delay: 1.388s !important;
  animation-delay: 1.388s !important;
}
.u-effect-txt-fade.-delay2 .js-txt-split__cell2:nth-child(100) {
  -webkit-animation-delay: 1.4s !important;
  animation-delay: 1.4s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:first-child {
  -webkit-animation-delay: 0.412s !important;
  animation-delay: 0.412s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(2) {
  -webkit-animation-delay: 0.424s !important;
  animation-delay: 0.424s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(3) {
  -webkit-animation-delay: 0.436s !important;
  animation-delay: 0.436s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(4) {
  -webkit-animation-delay: 0.448s !important;
  animation-delay: 0.448s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(5) {
  -webkit-animation-delay: 0.46s !important;
  animation-delay: 0.46s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(6) {
  -webkit-animation-delay: 0.472s !important;
  animation-delay: 0.472s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(7) {
  -webkit-animation-delay: 0.484s !important;
  animation-delay: 0.484s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(8) {
  -webkit-animation-delay: 0.496s !important;
  animation-delay: 0.496s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(9) {
  -webkit-animation-delay: 0.508s !important;
  animation-delay: 0.508s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(10) {
  -webkit-animation-delay: 0.52s !important;
  animation-delay: 0.52s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(11) {
  -webkit-animation-delay: 0.532s !important;
  animation-delay: 0.532s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(12) {
  -webkit-animation-delay: 0.544s !important;
  animation-delay: 0.544s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(13) {
  -webkit-animation-delay: 0.556s !important;
  animation-delay: 0.556s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(14) {
  -webkit-animation-delay: 0.568s !important;
  animation-delay: 0.568s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(15) {
  -webkit-animation-delay: 0.58s !important;
  animation-delay: 0.58s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(16) {
  -webkit-animation-delay: 0.592s !important;
  animation-delay: 0.592s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(17) {
  -webkit-animation-delay: 0.604s !important;
  animation-delay: 0.604s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(18) {
  -webkit-animation-delay: 0.616s !important;
  animation-delay: 0.616s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(19) {
  -webkit-animation-delay: 0.628s !important;
  animation-delay: 0.628s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(20) {
  -webkit-animation-delay: 0.64s !important;
  animation-delay: 0.64s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(21) {
  -webkit-animation-delay: 0.652s !important;
  animation-delay: 0.652s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(22) {
  -webkit-animation-delay: 0.664s !important;
  animation-delay: 0.664s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(23) {
  -webkit-animation-delay: 0.676s !important;
  animation-delay: 0.676s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(24) {
  -webkit-animation-delay: 0.688s !important;
  animation-delay: 0.688s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(25) {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(26) {
  -webkit-animation-delay: 0.712s !important;
  animation-delay: 0.712s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(27) {
  -webkit-animation-delay: 0.724s !important;
  animation-delay: 0.724s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(28) {
  -webkit-animation-delay: 0.736s !important;
  animation-delay: 0.736s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(29) {
  -webkit-animation-delay: 0.748s !important;
  animation-delay: 0.748s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(30) {
  -webkit-animation-delay: 0.76s !important;
  animation-delay: 0.76s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(31) {
  -webkit-animation-delay: 0.772s !important;
  animation-delay: 0.772s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(32) {
  -webkit-animation-delay: 0.784s !important;
  animation-delay: 0.784s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(33) {
  -webkit-animation-delay: 0.796s !important;
  animation-delay: 0.796s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(34) {
  -webkit-animation-delay: 0.808s !important;
  animation-delay: 0.808s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(35) {
  -webkit-animation-delay: 0.82s !important;
  animation-delay: 0.82s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(36) {
  -webkit-animation-delay: 0.832s !important;
  animation-delay: 0.832s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(37) {
  -webkit-animation-delay: 0.844s !important;
  animation-delay: 0.844s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(38) {
  -webkit-animation-delay: 0.856s !important;
  animation-delay: 0.856s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(39) {
  -webkit-animation-delay: 0.868s !important;
  animation-delay: 0.868s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(40) {
  -webkit-animation-delay: 0.88s !important;
  animation-delay: 0.88s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(41) {
  -webkit-animation-delay: 0.892s !important;
  animation-delay: 0.892s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(42) {
  -webkit-animation-delay: 0.904s !important;
  animation-delay: 0.904s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(43) {
  -webkit-animation-delay: 0.916s !important;
  animation-delay: 0.916s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(44) {
  -webkit-animation-delay: 0.928s !important;
  animation-delay: 0.928s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(45) {
  -webkit-animation-delay: 0.94s !important;
  animation-delay: 0.94s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(46) {
  -webkit-animation-delay: 0.952s !important;
  animation-delay: 0.952s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(47) {
  -webkit-animation-delay: 0.964s !important;
  animation-delay: 0.964s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(48) {
  -webkit-animation-delay: 0.976s !important;
  animation-delay: 0.976s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(49) {
  -webkit-animation-delay: 0.988s !important;
  animation-delay: 0.988s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(50) {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(51) {
  -webkit-animation-delay: 1.012s !important;
  animation-delay: 1.012s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(52) {
  -webkit-animation-delay: 1.024s !important;
  animation-delay: 1.024s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(53) {
  -webkit-animation-delay: 1.036s !important;
  animation-delay: 1.036s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(54) {
  -webkit-animation-delay: 1.048s !important;
  animation-delay: 1.048s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(55) {
  -webkit-animation-delay: 1.06s !important;
  animation-delay: 1.06s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(56) {
  -webkit-animation-delay: 1.072s !important;
  animation-delay: 1.072s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(57) {
  -webkit-animation-delay: 1.084s !important;
  animation-delay: 1.084s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(58) {
  -webkit-animation-delay: 1.096s !important;
  animation-delay: 1.096s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(59) {
  -webkit-animation-delay: 1.108s !important;
  animation-delay: 1.108s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(60) {
  -webkit-animation-delay: 1.12s !important;
  animation-delay: 1.12s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(61) {
  -webkit-animation-delay: 1.132s !important;
  animation-delay: 1.132s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(62) {
  -webkit-animation-delay: 1.144s !important;
  animation-delay: 1.144s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(63) {
  -webkit-animation-delay: 1.156s !important;
  animation-delay: 1.156s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(64) {
  -webkit-animation-delay: 1.168s !important;
  animation-delay: 1.168s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(65) {
  -webkit-animation-delay: 1.18s !important;
  animation-delay: 1.18s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(66) {
  -webkit-animation-delay: 1.192s !important;
  animation-delay: 1.192s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(67) {
  -webkit-animation-delay: 1.204s !important;
  animation-delay: 1.204s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(68) {
  -webkit-animation-delay: 1.216s !important;
  animation-delay: 1.216s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(69) {
  -webkit-animation-delay: 1.228s !important;
  animation-delay: 1.228s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(70) {
  -webkit-animation-delay: 1.24s !important;
  animation-delay: 1.24s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(71) {
  -webkit-animation-delay: 1.252s !important;
  animation-delay: 1.252s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(72) {
  -webkit-animation-delay: 1.264s !important;
  animation-delay: 1.264s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(73) {
  -webkit-animation-delay: 1.276s !important;
  animation-delay: 1.276s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(74) {
  -webkit-animation-delay: 1.288s !important;
  animation-delay: 1.288s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(75) {
  -webkit-animation-delay: 1.3s !important;
  animation-delay: 1.3s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(76) {
  -webkit-animation-delay: 1.312s !important;
  animation-delay: 1.312s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(77) {
  -webkit-animation-delay: 1.324s !important;
  animation-delay: 1.324s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(78) {
  -webkit-animation-delay: 1.336s !important;
  animation-delay: 1.336s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(79) {
  -webkit-animation-delay: 1.348s !important;
  animation-delay: 1.348s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(80) {
  -webkit-animation-delay: 1.36s !important;
  animation-delay: 1.36s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(81) {
  -webkit-animation-delay: 1.372s !important;
  animation-delay: 1.372s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(82) {
  -webkit-animation-delay: 1.384s !important;
  animation-delay: 1.384s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(83) {
  -webkit-animation-delay: 1.396s !important;
  animation-delay: 1.396s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(84) {
  -webkit-animation-delay: 1.408s !important;
  animation-delay: 1.408s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(85) {
  -webkit-animation-delay: 1.42s !important;
  animation-delay: 1.42s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(86) {
  -webkit-animation-delay: 1.432s !important;
  animation-delay: 1.432s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(87) {
  -webkit-animation-delay: 1.444s !important;
  animation-delay: 1.444s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(88) {
  -webkit-animation-delay: 1.456s !important;
  animation-delay: 1.456s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(89) {
  -webkit-animation-delay: 1.468s !important;
  animation-delay: 1.468s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(90) {
  -webkit-animation-delay: 1.48s !important;
  animation-delay: 1.48s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(91) {
  -webkit-animation-delay: 1.492s !important;
  animation-delay: 1.492s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(92) {
  -webkit-animation-delay: 1.504s !important;
  animation-delay: 1.504s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(93) {
  -webkit-animation-delay: 1.516s !important;
  animation-delay: 1.516s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(94) {
  -webkit-animation-delay: 1.528s !important;
  animation-delay: 1.528s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(95) {
  -webkit-animation-delay: 1.54s !important;
  animation-delay: 1.54s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(96) {
  -webkit-animation-delay: 1.552s !important;
  animation-delay: 1.552s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(97) {
  -webkit-animation-delay: 1.564s !important;
  animation-delay: 1.564s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(98) {
  -webkit-animation-delay: 1.576s !important;
  animation-delay: 1.576s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(99) {
  -webkit-animation-delay: 1.588s !important;
  animation-delay: 1.588s !important;
}
.u-effect-txt-fade.-delay3 .js-txt-split__cell2:nth-child(100) {
  -webkit-animation-delay: 1.6s !important;
  animation-delay: 1.6s !important;
}
.u-effect-txt-fade-hov:hover .u-effect-txt-fade .js-txt-split__cell2 {
  -webkit-animation: txtHover__split 0.8s 0s ease both;
  animation: txtHover__split 0.8s 0s ease both;
}
@-webkit-keyframes txtHover__split {
  0% {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
@keyframes txtHover__split {
  0% {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
.u-font-red {
  color: #ca2828;
}
.u-font-lb {
  display: block;
  width: 105%;
  -webkit-transform: scale(0.95, 1);
  -ms-transform: scale(0.95, 1);
  transform: scale(0.95, 1);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
@media screen and (max-width: 768px) {
  .u-font-lb.-small-normal {
    width: 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.u-font-lb-accent {
  left: 0.3em;
  position: relative;
}
.ua-ios .u-font-lb-accent {
  left: 0em;
  position: relative;
}
.u-font-rl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1023px) {
  .u-font-medium-clear-rl {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 768px) {
  .u-font-small-clear-rl {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
.comline {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
@media screen and (max-width: 768px) {
  .-clear-comline-small {
    text-combine-upright: none !important;
  }
}
.comline-accent {
  position: relative;
  left: 0.3em;
}
@media screen and (max-width: 768px) {
  .-clear-comline-accent-small {
    position: static;
  }
}
.u-font-normal {
  font-weight: normal;
}
.u-font-bold {
  font-weight: bold;
}
.u-font-center {
  text-align: center !important;
}
.u-font-left {
  text-align: left !important;
}
.u-font-right {
  text-align: right !important;
}
@media screen and (max-width: 1264px) {
  .u-font-center-medium {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .u-font-center-small {
    text-align: center !important;
  }
  .u-font-left-small {
    text-align: left !important;
  }
  .u-font-left-small .u-inline-block {
    display: inline;
  }
  .u-font-right-small {
    text-align: right !important;
  }
  .u-font-justify-small {
    text-align: justify !important;
  }
  .u-font-justify-small .u-inline-block {
    display: inline;
  }
}
.u-hov-txt {
  line-height: 1;
  position: relative;
}
.u-hov-txt__inner {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.u-hov-txt.is-current .u-hov-txt__inner,
.u-hov-txt:hover .u-hov-txt__inner {
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #fff;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.u-hov-txt:after {
  content: "";
  width: 100%;
  height: 68%;
  line-height: 1;
  background: #111;
  display: block;
  position: absolute;
  top: 20%;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.lang .u-hov-txt:after {
  height: 76%;
  top: 14%;
}
.u-hov-txt.is-current:after,
.u-hov-txt:hover:after {
  opacity: 1;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.u-hov-cover {
  position: relative;
  overflow: hidden;
}
.u-hov-cover__target {
  position: relative;
  z-index: 15;
}
.u-hov-cover:after,
.u-hov-cover:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10;
}
.u-hov-cover:after {
  background: #aaaaaa;
}
.u-hov-cover:before {
  background: #f0f0f0;
}
.u-hov-cover.-type-black:after {
  background: #777;
}
.u-hov-cover.-type-black:before {
  background: #111;
}
.u-hov-cover:hover:after {
  opacity: 1;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.u-hov-cover:hover:before {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.u-hov-txtsplit span {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
a.is-current .u-hov-txtsplit span,
a:hover .u-hov-txtsplit span {
  opacity: 0.5;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.u-hov-txtsplit-revers span {
  color: #111;
  -webkit-transition: color 0.6s ease;
  -o-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
a.is-current .u-hov-txtsplit-revers span,
a:hover .u-hov-txtsplit-revers span {
  color: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
:root {
  --banner-border-width: 1px;
  --banner-border-color: #ddd;
  --banner-border-color--hover: #555;
  --banner-border-type: solid;
}
.u-img-fluid {
  width: 100%;
  height: auto;
}
.u-img-thumbnail {
  border: var(--banner-border-width) var(--banner-border-type)
    var(--banner-border-color);
  width: 100%;
  height: auto;
  border-radius: 6px;
}
a:hover .u-img-thumbnail {
  border: var(--banner-border-width) var(--banner-border-type)
    var(--banner-border-color--hover);
}
.u-keep {
  min-height: calc(100vh - 8rem);
}
@media screen and (max-width: 768px) {
  .u-keep {
    min-height: calc(100vh - 6rem);
  }
}
.u-link {
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}
.u-link-line {
  display: inline-block;
  text-decoration: none;
}
.u-link-line__txt {
  padding-bottom: 0.2em;
  text-decoration: none;
  will-change: background-size;
  -webkit-transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  background: url(/assets/image/common/line.gif) no-repeat right bottom/0 1px;
}
.u-link-line__txt.-type2 {
  padding-bottom: 0 !important;
}
.is-current .u-link-line__txt,
.u-link-line__txt:hover,
a:hover .u-link-line__txt {
  background-size: 100% 1px;
  background-position: left bottom;
}
.u-link-line .u-link-line__txt.-vertical {
  background-size: 1px 0;
  padding-bottom: 0;
  padding-right: 0.3em;
}
.is-current .u-link-line .u-link-line__txt.-vertical,
.u-link-line .u-link-line__txt.-vertical:hover,
a:hover .u-link-line .u-link-line__txt.-vertical {
  background-size: 1px 100%;
  background-position: right top;
}
.u-link-line .u-link-line__txt.-revers {
  background-size: 100% 1px;
  background-position: left bottom;
}
.ua-safari .u-link-line .u-link-line__txt.-revers {
  background-size: 100% 2px;
}
@media screen and (max-width: 768px) {
  .ua-safari .u-link-line .u-link-line__txt.-revers {
    background-size: 100% 1px;
  }
}
.u-link-line .u-link-line__txt.-revers:hover,
.u-link-line:hover .u-link-line .u-link-line__txt.-revers,
a:hover .u-link-line .u-link-line__txt.-revers {
  background-size: 0% 1px;
  background-position: right bottom;
}
.u-link-line .u-link-line__txt.-white {
  background-image: url(/assets/image/common/line-white.gif);
}
.u-link-line .u-link-line__txt.-yellow {
  background-image: url(/assets/image/common/line-yellow.gif);
}
.u-fixed {
  position: fixed !important;
  overflow-y: scroll;
  top: 0;
}
.u-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.u-sticky.-pos-l {
  top: 6.4rem;
}
:root {
  --space-xlarge: 10rem;
  --space-large: 8rem;
  --space-medium: 6.4rem;
  --space-small: 3.2rem;
  --space-xsmall: 2.4rem;
  --space-xxsmall: 1rem;
  --space-xxxsmall: 0.5rem;
}
@media screen and (max-width: 768px) {
  :root {
    --space-xlarge: 5rem;
    --space-large: 4rem;
    --space-medium: 3.2rem;
    --space-small: 3.2rem;
    --space-xsmall: 1.6rem;
    --space-xxsmall: 1rem;
    --space-xxxsmall: 0.5rem;
  }
}
.u-mt-xl {
  margin-top: var(--space-xlarge);
}
@media screen and (max-width: 768px) {
  .u-mt-xl-small {
    margin-top: var(--space-xlarge) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-xl {
  margin-bottom: var(--space-xlarge);
}
@media screen and (max-width: 768px) {
  .u-mb-xl-small {
    margin-bottom: var(--space-xlarge) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-xl {
  padding-top: var(--space-xlarge);
}
@media screen and (max-width: 768px) {
  .u-pt-xl-small {
    padding-top: var(--space-xlarge) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-xl {
  padding-bottom: var(--space-xlarge);
}
@media screen and (max-width: 768px) {
  .u-pb-xl-small {
    padding-bottom: var(--space-xlarge) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-l {
  margin-top: var(--space-large);
}
@media screen and (max-width: 768px) {
  .u-mt-l-small {
    margin-top: var(--space-large) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-l {
  margin-bottom: var(--space-large);
}
@media screen and (max-width: 768px) {
  .u-mb-l-small {
    margin-bottom: var(--space-large) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-l {
  padding-top: var(--space-large);
}
@media screen and (max-width: 768px) {
  .u-pt-l-small {
    padding-top: var(--space-large) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-l {
  padding-bottom: var(--space-large);
}
@media screen and (max-width: 768px) {
  .u-pb-l-small {
    padding-bottom: var(--space-large) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-m {
  margin-top: var(--space-medium);
}
@media screen and (max-width: 768px) {
  .u-mt-m-small {
    margin-top: var(--space-medium) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-m {
  margin-bottom: var(--space-medium);
}
@media screen and (max-width: 768px) {
  .u-mb-m-small {
    margin-bottom: var(--space-medium) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-m {
  padding-top: var(--space-medium);
}
@media screen and (max-width: 768px) {
  .u-pt-m-small {
    padding-top: var(--space-medium) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-m {
  padding-bottom: var(--space-medium);
}
@media screen and (max-width: 768px) {
  .u-pb-m-small {
    padding-bottom: var(--space-medium) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-s {
  margin-top: var(--space-small);
}
@media screen and (max-width: 768px) {
  .u-mt-s-small {
    margin-top: var(--space-small) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-s {
  margin-bottom: var(--space-small);
}
@media screen and (max-width: 768px) {
  .u-mb-s-small {
    margin-bottom: var(--space-small) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-s {
  padding-top: var(--space-small);
}
@media screen and (max-width: 768px) {
  .u-pt-s-small {
    padding-top: var(--space-small) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-s {
  padding-bottom: var(--space-small);
}
@media screen and (max-width: 768px) {
  .u-pb-s-small {
    padding-bottom: var(--space-small) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-xs {
  margin-top: var(--space-xsmall);
}
@media screen and (max-width: 768px) {
  .u-mt-xs-small {
    margin-top: var(--space-xsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-xs {
  margin-bottom: var(--space-xsmall);
}
@media screen and (max-width: 768px) {
  .u-mb-xs-small {
    margin-bottom: var(--space-xsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-xs {
  padding-top: var(--space-xsmall);
}
@media screen and (max-width: 768px) {
  .u-pt-xs-small {
    padding-top: var(--space-xsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-xs {
  padding-bottom: var(--space-xsmall);
}
@media screen and (max-width: 768px) {
  .u-pb-xs-small {
    padding-bottom: var(--space-xsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-xxs {
  margin-top: var(--space-xxsmall);
}
@media screen and (max-width: 768px) {
  .u-mt-xxs-small {
    margin-top: var(--space-xxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-xxs {
  margin-bottom: var(--space-xxsmall);
}
@media screen and (max-width: 768px) {
  .u-mb-xxs-small {
    margin-bottom: var(--space-xxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-xxs {
  padding-top: var(--space-xxsmall);
}
@media screen and (max-width: 768px) {
  .u-pt-xxs-small {
    padding-top: var(--space-xxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-xxs {
  padding-bottom: var(--space-xxsmall);
}
@media screen and (max-width: 768px) {
  .u-pb-xxs-small {
    padding-bottom: var(--space-xxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-mt-xxxs {
  margin-top: var(--space-xxxsmall);
}
@media screen and (max-width: 768px) {
  .u-mt-xxxs-small {
    margin-top: var(--space-xxxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-clear-small {
    margin-top: 0;
  }
}
.u-mb-xxxs {
  margin-bottom: var(--space-xxxsmall);
}
@media screen and (max-width: 768px) {
  .u-mb-xxxs-small {
    margin-bottom: var(--space-xxxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-clear-small {
    margin-bottom: 0;
  }
}
.u-pt-xxxs {
  padding-top: var(--space-xxxsmall);
}
@media screen and (max-width: 768px) {
  .u-pt-xxxs-small {
    padding-top: var(--space-xxxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-clear-small {
    padding-top: 0;
  }
}
.u-pb-xxxs {
  padding-bottom: var(--space-xxxsmall);
}
@media screen and (max-width: 768px) {
  .u-pb-xxxs-small {
    padding-bottom: var(--space-xxxsmall) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-clear-small {
    padding-bottom: 0;
  }
}
.u-space-m {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .u-space-m {
    padding-bottom: 6.4rem;
  }
}
.u-space-l {
  padding-bottom: 10rem;
}
.u-space-xl {
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .u-space-xl {
    padding-bottom: 6.4rem;
  }
}
.u-over-hidden {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .u-over-hidden {
    overflow: visible;
  }
}
@media screen and (min-width: 1600px) {
  .visible-large-less {
    display: none !important;
  }
  .visible-large-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 1599px) {
  .visible-large-less {
    display: block !important;
  }
  .visible-large-less-inline {
    display: inline-block !important;
  }
  table.visible-large-less {
    display: table;
  }
  tr.visible-large-less {
    display: table-row !important;
  }
  td.visible-large-less,
  th.visible-large-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 1599px) {
  .hidden-large-less {
    display: none !important;
  }
}
@media screen and (min-width: 1265px) {
  .visible-medium-less {
    display: none !important;
  }
  .visible-medium-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 1264px) {
  .visible-medium-less {
    display: block !important;
  }
  .visible-medium-less-inline {
    display: inline-block !important;
  }
  table.visible-medium-less {
    display: table;
  }
  tr.visible-medium-less {
    display: table-row !important;
  }
  td.visible-medium-less,
  th.visible-medium-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 1264px) {
  .hidden-medium-less {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .visible-medium3-less {
    display: none !important;
  }
  .visible-medium3-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .visible-medium3-less {
    display: block !important;
  }
  .visible-medium3-less-inline {
    display: inline-block !important;
  }
  table.visible-medium3-less {
    display: table;
  }
  tr.visible-medium3-less {
    display: table-row !important;
  }
  td.visible-medium3-less,
  th.visible-medium3-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 1023px) {
  .hidden-medium3-less {
    display: none !important;
  }
}
@media screen and (min-width: 1023px) {
  .visible-medium5-less {
    display: none !important;
  }
  .visible-medium5-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 1022px) {
  .visible-medium5-less {
    display: block !important;
  }
  .visible-medium5-less-inline {
    display: inline-block !important;
  }
  table.visible-medium5-less {
    display: table;
  }
  tr.visible-medium5-less {
    display: table-row !important;
  }
  td.visible-medium5-less,
  th.visible-medium5-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 1022px) {
  .hidden-medium5-less {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .visible-small-less {
    display: none !important;
  }
  .visible-small-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .visible-small-less {
    display: block !important;
  }
  .visible-small-less-inline {
    display: inline-block !important;
  }
  table.visible-small-less {
    display: table;
  }
  tr.visible-small-less {
    display: table-row !important;
  }
  td.visible-small-less,
  th.visible-small-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-small-less {
    display: none !important;
  }
}
@media screen and (min-width: 668px) {
  .visible-xsmall-less {
    display: none !important;
  }
  .visible-xsmall-less-inline {
    display: none !important;
  }
}
@media screen and (max-width: 667px) {
  .visible-xsmall-less {
    display: block !important;
  }
  .visible-xsmall-less-inline {
    display: inline-block !important;
  }
  table.visible-xsmall-less {
    display: table;
  }
  tr.visible-xsmall-less {
    display: table-row !important;
  }
  td.visible-xsmall-less,
  th.visible-xsmall-less {
    display: table-cell !important;
  }
}
@media screen and (max-width: 667px) {
  .hidden-xsmall-less {
    display: none !important;
  }
}
.u-mail {
  display: inline-block;
}
.u-mail:after {
  content: "@" attr(data-mail);
}
.u-hide {
  display: none;
}
.js-objectfit {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.js-objectfit.-size-fit {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ua-edge .c-hero__movie.js-objectfit,
.ua-ie .c-hero__movie.js-objectfit {
  display: block;
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: center;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  margin: auto;
  width: auto;
  height: auto;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  position: absolute;
}
.c-rollup {
  position: relative;
  overflow: hidden;
  height: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-rollup__nom {
  position: relative;
}
.c-rollup__hov {
  position: absolute;
  top: 0;
  left: 0;
}
.js-txt-split__cell {
  display: inline-block;
}
.c-rollup .js-txt-split__cell {
  display: inline-block;
  will-change: transform;
  -webkit-transition: color 0s,
    -webkit-transform 0.4s ease calc(var(--split-delay) * 30ms);
  transition: color 0s,
    -webkit-transform 0.4s ease calc(var(--split-delay) * 30ms);
  -o-transition: transform 0.4s ease calc(var(--split-delay) * 30ms), color 0s;
  transition: transform 0.4s ease calc(var(--split-delay) * 30ms), color 0s;
  transition: transform 0.4s ease calc(var(--split-delay) * 30ms), color 0s,
    -webkit-transform 0.4s ease calc(var(--split-delay) * 30ms);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(0) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 0ms;
  transition: color 0s, -webkit-transform 0.4s ease 0ms;
  -o-transition: transform 0.4s ease 0ms, color 0s;
  transition: transform 0.4s ease 0ms, color 0s;
  transition: transform 0.4s ease 0ms, color 0s, -webkit-transform 0.4s ease 0ms;
}
.ua-ie .c-rollup .js-txt-split__cell:first-of-type {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 30ms;
  transition: color 0s, -webkit-transform 0.4s ease 30ms;
  -o-transition: transform 0.4s ease 30ms, color 0s;
  transition: transform 0.4s ease 30ms, color 0s;
  transition: transform 0.4s ease 30ms, color 0s,
    -webkit-transform 0.4s ease 30ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(2) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 60ms;
  transition: color 0s, -webkit-transform 0.4s ease 60ms;
  -o-transition: transform 0.4s ease 60ms, color 0s;
  transition: transform 0.4s ease 60ms, color 0s;
  transition: transform 0.4s ease 60ms, color 0s,
    -webkit-transform 0.4s ease 60ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(3) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 90ms;
  transition: color 0s, -webkit-transform 0.4s ease 90ms;
  -o-transition: transform 0.4s ease 90ms, color 0s;
  transition: transform 0.4s ease 90ms, color 0s;
  transition: transform 0.4s ease 90ms, color 0s,
    -webkit-transform 0.4s ease 90ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(4) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 120ms;
  transition: color 0s, -webkit-transform 0.4s ease 120ms;
  -o-transition: transform 0.4s ease 120ms, color 0s;
  transition: transform 0.4s ease 120ms, color 0s;
  transition: transform 0.4s ease 120ms, color 0s,
    -webkit-transform 0.4s ease 120ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(5) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 150ms;
  transition: color 0s, -webkit-transform 0.4s ease 150ms;
  -o-transition: transform 0.4s ease 150ms, color 0s;
  transition: transform 0.4s ease 150ms, color 0s;
  transition: transform 0.4s ease 150ms, color 0s,
    -webkit-transform 0.4s ease 150ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(6) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 180ms;
  transition: color 0s, -webkit-transform 0.4s ease 180ms;
  -o-transition: transform 0.4s ease 180ms, color 0s;
  transition: transform 0.4s ease 180ms, color 0s;
  transition: transform 0.4s ease 180ms, color 0s,
    -webkit-transform 0.4s ease 180ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(7) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 210ms;
  transition: color 0s, -webkit-transform 0.4s ease 210ms;
  -o-transition: transform 0.4s ease 210ms, color 0s;
  transition: transform 0.4s ease 210ms, color 0s;
  transition: transform 0.4s ease 210ms, color 0s,
    -webkit-transform 0.4s ease 210ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(8) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 240ms;
  transition: color 0s, -webkit-transform 0.4s ease 240ms;
  -o-transition: transform 0.4s ease 240ms, color 0s;
  transition: transform 0.4s ease 240ms, color 0s;
  transition: transform 0.4s ease 240ms, color 0s,
    -webkit-transform 0.4s ease 240ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(9) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 270ms;
  transition: color 0s, -webkit-transform 0.4s ease 270ms;
  -o-transition: transform 0.4s ease 270ms, color 0s;
  transition: transform 0.4s ease 270ms, color 0s;
  transition: transform 0.4s ease 270ms, color 0s,
    -webkit-transform 0.4s ease 270ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(10) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 300ms;
  transition: color 0s, -webkit-transform 0.4s ease 300ms;
  -o-transition: transform 0.4s ease 300ms, color 0s;
  transition: transform 0.4s ease 300ms, color 0s;
  transition: transform 0.4s ease 300ms, color 0s,
    -webkit-transform 0.4s ease 300ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(11) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 330ms;
  transition: color 0s, -webkit-transform 0.4s ease 330ms;
  -o-transition: transform 0.4s ease 330ms, color 0s;
  transition: transform 0.4s ease 330ms, color 0s;
  transition: transform 0.4s ease 330ms, color 0s,
    -webkit-transform 0.4s ease 330ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(12) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 360ms;
  transition: color 0s, -webkit-transform 0.4s ease 360ms;
  -o-transition: transform 0.4s ease 360ms, color 0s;
  transition: transform 0.4s ease 360ms, color 0s;
  transition: transform 0.4s ease 360ms, color 0s,
    -webkit-transform 0.4s ease 360ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(13) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 390ms;
  transition: color 0s, -webkit-transform 0.4s ease 390ms;
  -o-transition: transform 0.4s ease 390ms, color 0s;
  transition: transform 0.4s ease 390ms, color 0s;
  transition: transform 0.4s ease 390ms, color 0s,
    -webkit-transform 0.4s ease 390ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(14) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 420ms;
  transition: color 0s, -webkit-transform 0.4s ease 420ms;
  -o-transition: transform 0.4s ease 420ms, color 0s;
  transition: transform 0.4s ease 420ms, color 0s;
  transition: transform 0.4s ease 420ms, color 0s,
    -webkit-transform 0.4s ease 420ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(15) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 450ms;
  transition: color 0s, -webkit-transform 0.4s ease 450ms;
  -o-transition: transform 0.4s ease 450ms, color 0s;
  transition: transform 0.4s ease 450ms, color 0s;
  transition: transform 0.4s ease 450ms, color 0s,
    -webkit-transform 0.4s ease 450ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(16) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 480ms;
  transition: color 0s, -webkit-transform 0.4s ease 480ms;
  -o-transition: transform 0.4s ease 480ms, color 0s;
  transition: transform 0.4s ease 480ms, color 0s;
  transition: transform 0.4s ease 480ms, color 0s,
    -webkit-transform 0.4s ease 480ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(17) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 510ms;
  transition: color 0s, -webkit-transform 0.4s ease 510ms;
  -o-transition: transform 0.4s ease 510ms, color 0s;
  transition: transform 0.4s ease 510ms, color 0s;
  transition: transform 0.4s ease 510ms, color 0s,
    -webkit-transform 0.4s ease 510ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(18) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 540ms;
  transition: color 0s, -webkit-transform 0.4s ease 540ms;
  -o-transition: transform 0.4s ease 540ms, color 0s;
  transition: transform 0.4s ease 540ms, color 0s;
  transition: transform 0.4s ease 540ms, color 0s,
    -webkit-transform 0.4s ease 540ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(19) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 570ms;
  transition: color 0s, -webkit-transform 0.4s ease 570ms;
  -o-transition: transform 0.4s ease 570ms, color 0s;
  transition: transform 0.4s ease 570ms, color 0s;
  transition: transform 0.4s ease 570ms, color 0s,
    -webkit-transform 0.4s ease 570ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(20) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 600ms;
  transition: color 0s, -webkit-transform 0.4s ease 600ms;
  -o-transition: transform 0.4s ease 600ms, color 0s;
  transition: transform 0.4s ease 600ms, color 0s;
  transition: transform 0.4s ease 600ms, color 0s,
    -webkit-transform 0.4s ease 600ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(21) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 630ms;
  transition: color 0s, -webkit-transform 0.4s ease 630ms;
  -o-transition: transform 0.4s ease 630ms, color 0s;
  transition: transform 0.4s ease 630ms, color 0s;
  transition: transform 0.4s ease 630ms, color 0s,
    -webkit-transform 0.4s ease 630ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(22) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 660ms;
  transition: color 0s, -webkit-transform 0.4s ease 660ms;
  -o-transition: transform 0.4s ease 660ms, color 0s;
  transition: transform 0.4s ease 660ms, color 0s;
  transition: transform 0.4s ease 660ms, color 0s,
    -webkit-transform 0.4s ease 660ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(23) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 690ms;
  transition: color 0s, -webkit-transform 0.4s ease 690ms;
  -o-transition: transform 0.4s ease 690ms, color 0s;
  transition: transform 0.4s ease 690ms, color 0s;
  transition: transform 0.4s ease 690ms, color 0s,
    -webkit-transform 0.4s ease 690ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(24) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 720ms;
  transition: color 0s, -webkit-transform 0.4s ease 720ms;
  -o-transition: transform 0.4s ease 720ms, color 0s;
  transition: transform 0.4s ease 720ms, color 0s;
  transition: transform 0.4s ease 720ms, color 0s,
    -webkit-transform 0.4s ease 720ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(25) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 750ms;
  transition: color 0s, -webkit-transform 0.4s ease 750ms;
  -o-transition: transform 0.4s ease 750ms, color 0s;
  transition: transform 0.4s ease 750ms, color 0s;
  transition: transform 0.4s ease 750ms, color 0s,
    -webkit-transform 0.4s ease 750ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(26) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 780ms;
  transition: color 0s, -webkit-transform 0.4s ease 780ms;
  -o-transition: transform 0.4s ease 780ms, color 0s;
  transition: transform 0.4s ease 780ms, color 0s;
  transition: transform 0.4s ease 780ms, color 0s,
    -webkit-transform 0.4s ease 780ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(27) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 810ms;
  transition: color 0s, -webkit-transform 0.4s ease 810ms;
  -o-transition: transform 0.4s ease 810ms, color 0s;
  transition: transform 0.4s ease 810ms, color 0s;
  transition: transform 0.4s ease 810ms, color 0s,
    -webkit-transform 0.4s ease 810ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(28) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 840ms;
  transition: color 0s, -webkit-transform 0.4s ease 840ms;
  -o-transition: transform 0.4s ease 840ms, color 0s;
  transition: transform 0.4s ease 840ms, color 0s;
  transition: transform 0.4s ease 840ms, color 0s,
    -webkit-transform 0.4s ease 840ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(29) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 870ms;
  transition: color 0s, -webkit-transform 0.4s ease 870ms;
  -o-transition: transform 0.4s ease 870ms, color 0s;
  transition: transform 0.4s ease 870ms, color 0s;
  transition: transform 0.4s ease 870ms, color 0s,
    -webkit-transform 0.4s ease 870ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(30) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 900ms;
  transition: color 0s, -webkit-transform 0.4s ease 900ms;
  -o-transition: transform 0.4s ease 900ms, color 0s;
  transition: transform 0.4s ease 900ms, color 0s;
  transition: transform 0.4s ease 900ms, color 0s,
    -webkit-transform 0.4s ease 900ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(31) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 930ms;
  transition: color 0s, -webkit-transform 0.4s ease 930ms;
  -o-transition: transform 0.4s ease 930ms, color 0s;
  transition: transform 0.4s ease 930ms, color 0s;
  transition: transform 0.4s ease 930ms, color 0s,
    -webkit-transform 0.4s ease 930ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(32) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 960ms;
  transition: color 0s, -webkit-transform 0.4s ease 960ms;
  -o-transition: transform 0.4s ease 960ms, color 0s;
  transition: transform 0.4s ease 960ms, color 0s;
  transition: transform 0.4s ease 960ms, color 0s,
    -webkit-transform 0.4s ease 960ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(33) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 990ms;
  transition: color 0s, -webkit-transform 0.4s ease 990ms;
  -o-transition: transform 0.4s ease 990ms, color 0s;
  transition: transform 0.4s ease 990ms, color 0s;
  transition: transform 0.4s ease 990ms, color 0s,
    -webkit-transform 0.4s ease 990ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(34) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1020ms;
  transition: color 0s, -webkit-transform 0.4s ease 1020ms;
  -o-transition: transform 0.4s ease 1020ms, color 0s;
  transition: transform 0.4s ease 1020ms, color 0s;
  transition: transform 0.4s ease 1020ms, color 0s,
    -webkit-transform 0.4s ease 1020ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(35) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1050ms;
  transition: color 0s, -webkit-transform 0.4s ease 1050ms;
  -o-transition: transform 0.4s ease 1050ms, color 0s;
  transition: transform 0.4s ease 1050ms, color 0s;
  transition: transform 0.4s ease 1050ms, color 0s,
    -webkit-transform 0.4s ease 1050ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(36) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1080ms;
  transition: color 0s, -webkit-transform 0.4s ease 1080ms;
  -o-transition: transform 0.4s ease 1080ms, color 0s;
  transition: transform 0.4s ease 1080ms, color 0s;
  transition: transform 0.4s ease 1080ms, color 0s,
    -webkit-transform 0.4s ease 1080ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(37) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1110ms;
  transition: color 0s, -webkit-transform 0.4s ease 1110ms;
  -o-transition: transform 0.4s ease 1110ms, color 0s;
  transition: transform 0.4s ease 1110ms, color 0s;
  transition: transform 0.4s ease 1110ms, color 0s,
    -webkit-transform 0.4s ease 1110ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(38) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1140ms;
  transition: color 0s, -webkit-transform 0.4s ease 1140ms;
  -o-transition: transform 0.4s ease 1140ms, color 0s;
  transition: transform 0.4s ease 1140ms, color 0s;
  transition: transform 0.4s ease 1140ms, color 0s,
    -webkit-transform 0.4s ease 1140ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(39) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1170ms;
  transition: color 0s, -webkit-transform 0.4s ease 1170ms;
  -o-transition: transform 0.4s ease 1170ms, color 0s;
  transition: transform 0.4s ease 1170ms, color 0s;
  transition: transform 0.4s ease 1170ms, color 0s,
    -webkit-transform 0.4s ease 1170ms;
}
.ua-ie .c-rollup .js-txt-split__cell:nth-of-type(40) {
  -webkit-transition: color 0s, -webkit-transform 0.4s ease 1200ms;
  transition: color 0s, -webkit-transform 0.4s ease 1200ms;
  -o-transition: transform 0.4s ease 1200ms, color 0s;
  transition: transform 0.4s ease 1200ms, color 0s;
  transition: transform 0.4s ease 1200ms, color 0s,
    -webkit-transform 0.4s ease 1200ms;
}
.c-rollup .c-rollup__nom .js-txt-split__cell {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.c-rollup .c-rollup__hov .js-txt-split__cell {
  -webkit-transform: translateY(1em);
  -ms-transform: translateY(1em);
  transform: translateY(1em);
}
.c-rollup.is-hover .c-rollup__nom .js-txt-split__cell {
  -webkit-transform: translateY(-1em);
  -ms-transform: translateY(-1em);
  transform: translateY(-1em);
}
.c-rollup.is-hover .c-rollup__hov .js-txt-split__cell {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.is-hover .c-rollup .c-rollup__nom .js-txt-split__cell {
  -webkit-transform: translateY(-1em);
  -ms-transform: translateY(-1em);
  transform: translateY(-1em);
}
.is-hover .c-rollup .c-rollup__hov .js-txt-split__cell {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.p-home-features__block .c-rollup .c-rollup__nom .js-txt-split__cell {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  transition: color 0s, opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  -o-transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
}
.p-home-features__block .c-rollup .c-rollup__hov .js-txt-split__cell {
  -webkit-transform: translateY(2.2em);
  -ms-transform: translateY(2.2em);
  transform: translateY(2.2em);
  opacity: 0;
  -webkit-transition: color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  transition: color 0s, opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  -o-transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
}
.p-home-features__block
  > a.is-hover
  .c-rollup
  .c-rollup__nom
  .js-txt-split__cell {
  -webkit-transform: translateY(-2.2em);
  -ms-transform: translateY(-2.2em);
  transform: translateY(-2.2em);
  opacity: 0;
  -webkit-transition: color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  transition: color 0s, opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  -o-transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
}
.p-home-features__block
  > a.is-hover
  .c-rollup
  .c-rollup__hov
  .js-txt-split__cell {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  transition: color 0s, opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
  -o-transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms);
  transition: transform 0.8s ease calc(var(--split-delay) * 30ms), color 0s,
    opacity 0.8s ease calc(var(--split-delay) * 30ms),
    -webkit-transform 0.8s ease calc(var(--split-delay) * 30ms);
}
#js-moreShowWrap .js-moreContent:nth-of-type(n + 13) {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(5rem);
  -ms-transform: translateY(5rem);
  transform: translateY(5rem);
}
@media screen and (max-width: 768px) {
  #js-moreShowWrap .js-moreContent:nth-of-type(n + 13) {
    -webkit-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    transform: translateY(3rem);
  }
}
#js-moreShowWrap2 .js-moreContent:nth-of-type(n + 11) {
  display: none;
  opacity: 0;
}
.js-moreContent {
  -webkit-transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.js-moreContent.is-show .c-card__pict img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  will-change: transform;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
}
.js-moreContent.is-show.is-fadeUp {
  opacity: 1 !important;
}
.js-moreContent.is-show.is-fadeUp .c-card__pict img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#js-moreShowWrap .js-moreContent.is-show.is-fadeUp {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.js-moreContent.is-show2 .c-card__pict img {
  -webkit-transition: all 0s !important;
  -o-transition: all 0s !important;
  transition: all 0s !important;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  will-change: transform;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.3, 1);
}
.js-moreContent.is-show2.is-fadeUp2 {
  opacity: 1 !important;
  -webkit-transition: all 0s !important;
  -o-transition: all 0s !important;
  transition: all 0s !important;
}
.js-moreContent.is-show2.is-fadeUp2 .c-card__pict img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0s !important;
  -o-transition: all 0s !important;
  transition: all 0s !important;
}
#js-moreShowWrap .js-moreContent.is-show2.is-fadeUp2 {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
  -webkit-transition: all 0s !important;
  -o-transition: all 0s !important;
  transition: all 0s !important;
}

/*! jQuery UI - v1.10.4 - 2014-01-17
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}
.ui-front {
  z-index: 100;
}
.ui-state-disabled {
  cursor: default !important;
}
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0;
}
.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
  padding-left: 0.7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
}
.ui-button,
.ui-button:active,
.ui-button:hover,
.ui-button:link,
.ui-button:visited {
  text-decoration: none;
}
.ui-button-icon-only {
  width: 2.2em;
}
button.ui-button-icon-only {
  width: 2.4em;
}
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}
.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
input.ui-button {
  padding: 0.4em 1em;
}
.ui-button-icon-only .ui-icon,
.ui-button-icons-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-icons-only .ui-button-icon-primary,
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary {
  left: 0.5em;
}
.ui-button-icons-only .ui-button-icon-secondary,
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary {
  right: 0.5em;
}
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
button.ui-button::-moz-focus-inner,
input.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.ui-datepicker-calendar {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td a,
.ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0;
  font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-active,
.ui-menu .ui-menu-item a.ui-state-focus {
  font-weight: normal;
  margin: -1px;
}
.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
  background: url("images/animated-overlay.gif");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
}
.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}
.ui-tabs {
  position: relative;
  padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
  border-width: 2px;
}
.ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50%
    top repeat-x;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #e78f08;
  background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50%
    repeat-x;
  color: #ffffff;
  font-weight: bold;
}
.ui-widget-header a {
  color: #ffffff;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #cccccc;
  background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50%
    repeat-x;
  font-weight: bold;
  color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}
.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
  border: 1px solid #fbcb09;
  background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50%
    repeat-x;
  font-weight: bold;
  color: #c77405;
}
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #c77405;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50%
    repeat-x;
  font-weight: bold;
  color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50%
    top repeat-x;
  color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50%
    50% repeat;
  color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(images/ui-icons_ffffff_256x240.png);
}
.ui-state-default .ui-icon {
  background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
  background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-active .ui-icon {
  background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(images/ui-icons_228ef1_256x240.png);
}
.ui-state-error-text .ui-icon,
.ui-state-error .ui-icon {
  background-image: url(images/ui-icons_ffd27a_256x240.png);
}
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
.ui-corner-all,
.ui-corner-left,
.ui-corner-tl,
.ui-corner-top {
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
  border-bottom-right-radius: 4px;
}
.ui-widget-overlay {
  background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50%
    50% repeat;
  opacity: 0.5;
  filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50%
    repeat-x;
  opacity: 0.2;
  filter: Alpha(Opacity=20);
  border-radius: 5px;
}
#ui-datepicker-div {
  font-size: 1.5rem;
  background: #fff;
  padding: 2rem;
  border: none;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.2);
  font-family: "Helvetica Neue LT W01_55 Roman", hsn-zhcn-sans-demilight,
    hsn-zhtw-sans-demilight, "FOT-筑紫ゴシック Pr5 R{pm}", sans-serif;
}
.ui-datepicker th {
  font-weight: normal;
  font-size: 1.2rem;
  color: #777;
}
.ui-datepicker .ui-datepicker-header {
  background: #fff;
  color: #333;
}
.ui-datepicker-title {
  font-size: 1.2rem;
  font-weight: normal;
}
.ui-datepicker-month {
  font-size: 1.8rem;
  font-weight: bold;
}
.ui-datepicker-trigger {
  margin-left: 1rem;
}
.ui-widget-header {
  border: none;
  background: #555;
  border-radius: 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #fff;
  color: #555;
  text-align: center;
  font-weight: normal;
  font-size: 1.3rem;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  border-color: #777;
}
.ui-datepicker td a,
.ui-datepicker td span {
  padding: 0.85rem 0.6rem;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border-color: #777;
  background: rgba(0, 0, 0, 0.07);
}
.ui-state-default.ui-state-highlight {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-color: #777;
}
.ui-datepicker-next.ui-corner-all,
.ui-datepicker-prev.ui-corner-all {
  background: #f2f2f2;
  border-radius: 2px;
  top: 0;
  color: #fff;
  border: 1px solid #cacaca;
}
.ui-datepicker-next.ui-corner-all:hover,
.ui-datepicker-prev.ui-corner-all:hover {
  background: #e8e8e8;
  border: 1px solid #cacaca;
}
.ui-datepicker-next.ui-corner-all span,
.ui-datepicker-prev.ui-corner-all span {
  color: #fff;
  background: none;
}
.ui-datepicker-prev.ui-corner-all:after {
  content: "<";
  font-size: 1.2rem;
  line-height: 1;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.2rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ui-datepicker-next.ui-corner-all:after {
  content: ">";
  font-size: 1.2rem;
  line-height: 1;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.2rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
  top: 0;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}
.js-parallaxBox {
  overflow: hidden;
}
.js-parallaxBox__move {
  height: 130%;
}
.js-parallax-wrap {
  position: relative;
}
.js-parallax-item {
  width: 100%;
  height: 130% !important;
  position: absolute;
  top: -15%;
  opacity: 0;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .js-parallax-item {
    height: 140% !important;
    top: -20%;
  }
}
.js-parallax-item.is-visible {
  opacity: 1;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
@-webkit-keyframes textFadeInUp {
  0% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes textFadeInUp {
  0% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes textFadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.35em);
    transform: translateY(0.35em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes textFadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.35em);
    transform: translateY(0.35em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes textFadeDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}
@keyframes textFadeDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}
.c-logo {
  width: 12.4rem;
  height: 2.3rem;
}
.is-home .c-logo svg {
  fill: #fff;
}
.is-home.is-header-switch .c-logo svg {
  fill: #231815;
}
.is-home.is-header-switch.is-white-mode .c-logo svg {
  fill: #fff;
}
.is-menu-open .c-logo svg {
  fill: #fff !important;
}
@media screen and (max-width: 768px) {
  .c-logo {
    width: 8.4rem;
    height: 1.6rem;
  }
}
.js-toggle-nav {
  position: relative;
}
.js-toggle-nav__list {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.is-hover .js-toggle-nav__list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-popupList {
  width: 16rem;
  color: #fff;
  background: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2px;
  display: block;
}
.c-popupList li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.c-popupList li:last-child {
  border-bottom: none;
}
.c-popupList li a {
  display: block;
  padding: 1.6rem 1.6rem 1.2rem;
}
.c-popupList li a:hover {
  opacity: 0.6;
}
