:root {
  --color-black: #333;
  --color-white: #FFF;
  --color-beige01: #DDCCB0;
  --color-base: #FBF9F6;
  --color-base-beige: #F3F0EB;
  --color-gray01: #D9D9D9;
  --color-dark-gray: #666;
  --color-orange01: #EC7C3F;
  --color-green: #00AD4B;
  --color-yellow: #E3CF1A;
  --color-line-brand: #06C755;
  --color-coffee-blue: #0026BD;
  --color-coffee-blue-gray: #2E3645;
  --color-coffee-light-gray: #EBEBEB;
  --font-snas: "Noto Sans JP", sans-serif;
  --font-avenir: "Avenir","Arial", sans-serif;
  --gutter-sp: 24px;
  --gutter-pc: 48px;
}

/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-snas);
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}

a {
  color: currentColor;
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  vertical-align: bottom;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
	layout
----------------------------------------*/
.wrapper {
  position: relative;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 var(--gutter-sp);
  box-sizing: content-box;
}
.container._narrow {
  max-width: 800px;
}
.container._wide {
  max-width: 1200px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 var(--gutter-pc);
  }
}

/*----------------------------------------
	Component
----------------------------------------*/
.button {
  display: inline-block;
  border-radius: 100vmax;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  background: #8A6ED7;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.7;
  }
}

/* fixed header
------------------------------------------------------ */
.fixed-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  padding: 20px 0 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  visibility: hidden;
  transition-property: transform, visibility;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.fixed-header.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.fixed-header.is-hidden {
  visibility: hidden;
}

.fixed-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.fixed-header__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fixed-header__logo {
  line-height: 0;
}
.fixed-header__logo img {
  width: auto;
  height: 14px;
}

.fixed-header__title {
  color: var(--color-dark-gray);
}

.fixed-header__button {
  flex-shrink: 0;
  padding: 4px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.fixed-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .fixed-header {
    padding: 24px 0 16px;
  }
  .fixed-header__inner {
    gap: 40px;
    padding: 0 40px;
  }
  .fixed-header__meta {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .fixed-header__logo img {
    height: 18px;
  }
  .fixed-header__button {
    padding: 8px 40px;
    font-size: 16px;
  }
  .fixed-header__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fixed-header__nav {
    position: relative;
    display: block;
    line-height: 0;
  }
  .fixed-header__nav ul {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 40px;
    display: flex;
    gap: 16px 32px;
  }
  .fixed-header__nav ul::-webkit-scrollbar {
    display: none;
  }
  .fixed-header__nav li {
    flex-shrink: 0;
  }
  .fixed-header__nav a {
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    color: var(--color-dark-gray);
  }
  .fixed-header__nav::after {
    position: absolute;
    top: 0;
    left: calc(100% - 40px);
    content: "";
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff);
  }
}
@media (min-width: 992px) {
  .fixed-header__inner {
    gap: 80px;
    padding: 0 80px;
  }
}
/* header
------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 16px var(--gutter-sp) 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: auto;
  height: 14px;
}

.header__button {
  margin-right: calc(-1 * var(--gutter-sp) + 16px);
  padding: 8px 42px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .header {
    padding: 24px 32px 0;
  }
  .header__inner {
    align-items: flex-start;
  }
  .header__logo img {
    height: 20px;
  }
  .header__button {
    margin-right: 0;
    padding: 16px 58px;
  }
}
@media (min-width: 992px) {
  .header {
    padding: 32px 64px 0;
  }
}
/* kv
------------------------------------------------------ */
.kv {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 640px;
  color: #fff;
}

.kv__video {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.kv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kv__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.kv__copy {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.kv__copy:has(wbr) {
  word-break: keep-all;
}

.kv__title {
  margin: 8px calc(50% - 50vw);
  font-family: var(--font-avenir);
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.kv__title:has(wbr) {
  word-break: keep-all;
}

@media (min-width: 768px) {
  .kv {
    height: 794px;
  }
  .kv__copy {
    font-size: min(2.1428571429vw, 30px);
    line-height: 1.7;
  }
  .kv__title {
    margin: 0 calc(50% - 50vw);
    font-size: min(8.5714285714vw, 120px);
    line-height: 1.3666666667;
  }
}
/* achievement
------------------------------------------------------ */
.achievement {
  padding: 16px 0 0;
}

.achievement__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 calc(var(--gutter-sp) * -1);
}
.achievement__list img {
  width: auto;
  height: 72px;
}

@media (min-width: 768px) {
  .achievement {
    padding: 32px 0 0;
  }
  .achievement__list {
    gap: 33px;
  }
  .achievement__list img {
    height: 86px;
  }
}
/* cta
------------------------------------------------------ */
.cta {
  padding: 48px 0;
}

.cta__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .cta {
    padding: 64px 0;
  }
}
@media (min-width: 992px) {
  .cta__inner {
    flex-direction: row-reverse;
    gap: 80px;
  }
}
/* product
------------------------------------------------------ */
.product__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.product__img-wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.product__img-wrap .product__img img {
  width: auto;
  height: 140px;
}

.product__name:has(wbr) {
  word-break: keep-all;
}

.product__en-name {
  margin-top: 36px;
  font-family: var(--font-avenir);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.product__tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.product__tag span {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 7px 1px;
  border-radius: 4px;
  border: 1px solid;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}

.product__color {
  margin-top: 4px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
}
.product__color:has(wbr) {
  word-break: keep-all;
}

.product__price {
  margin: 8px auto;
  font-family: var(--font-avenir);
  font-size: 21px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
}
.product__price em {
  font-size: 28px;
  font-style: normal;
}
.product__price span {
  font-family: var(--font-snas);
  font-size: 9px;
}

.product__button-wrap {
  display: flex;
  justify-content: center;
}

.product__button {
  min-width: 248px;
  padding: 12px 64px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.product__note {
  max-width: 311px;
  margin: 16px auto 0;
  padding: 1px 7px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  color: var(--color-orange01);
  border: 1px solid;
}

.product__banner {
  display: block;
  max-width: 345px;
  margin: 24px auto 0;
}

@media (min-width: 768px) {
  .product__heading {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .product__en-name {
    font-size: 18px;
    margin-top: 40px;
  }
  .product__img-wrap {
    gap: 24px;
  }
  .product__img-wrap .product__img img {
    height: 160px;
  }
  .product__note {
    margin: 24px auto 0;
    padding: 3px 7px;
  }
  .product__banner {
    max-width: none;
  }
  .product__banner img {
    width: auto;
    height: 174px;
  }
}
/* movie
------------------------------------------------------ */
.movie {
  height: 56.2340966921vw;
  max-height: 560px;
}
.movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* overview
------------------------------------------------------ */
.overview {
  padding: 64px 0;
  color: var(--color-white);
  background: var(--color-coffee-blue);
}

.overview__row {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.overview__heading {
  margin-top: 8px;
}

.overview__text {
  margin-top: 32px;
}

.overview__img {
  margin: 0 calc(var(--gutter-sp) * -1);
  text-align: center;
}
.overview__img img {
  width: 100%;
  max-width: 400px;
}

.overview-arrange {
  margin: 56px calc(50% - 50vw) 0;
  border-top: 1px solid;
  padding-top: 56px;
}

.overview-arrange__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.overview-arrange__slider {
  margin-top: 32px;
}
.overview-arrange__slider .swiper {
  width: 100%;
}
.overview-arrange__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.overview-arrange__slider .swiper-slide {
  width: 120px;
  margin-right: 1px;
}

@media (min-width: 768px) {
  .overview {
    padding: 72px 0;
  }
  .overview__text {
    margin-top: 48px;
  }
  .overview__img {
    margin: 0;
  }
  .overview-arrange {
    margin: 76px calc(50% - 50vw) 0;
    padding-top: 76px;
  }
  .overview-arrange__title {
    font-size: 30px;
  }
  .overview-arrange__slider {
    margin-top: 40px;
  }
  .overview-arrange__slider .swiper-slide {
    width: 240px;
    margin-right: 2px;
  }
}
@media (min-width: 992px) {
  .overview {
    padding: 80px 0;
  }
  .overview__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .overview__content {
    flex-shrink: 0;
    margin: 0 auto;
  }
  .overview__img {
    width: 53.3333333333%;
  }
  .overview__img img {
    max-width: none;
  }
  .overview-arrange {
    margin: 96px calc(50% - 50vw) 0;
    padding-top: 96px;
  }
}
/* espresso
------------------------------------------------------ */
.espresso {
  padding: 64px 0;
}
.espresso.essential {
  color: var(--color-gray01);
  background: var(--color-coffee-blue-gray);
}
.espresso.essential .espresso-card__body h3 {
  color: var(--color-white);
}
.espresso.essential .espresso__head p p {
  color: var(--color-white);
}
.espresso.effortless {
  color: var(--color-coffee-blue);
}
.espresso.effortless .espresso-card__body h3,
.espresso.effortless .espresso-card__body p {
  color: var(--color-black);
}

.espresso__head {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.espresso__body {
  display: grid;
  grid-template-rows: auto;
  gap: 64px;
  max-width: 400px;
  margin: 56px auto 0;
}

.espresso-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

.espresso-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.espresso-card__body svg {
  fill: currentColor;
}
.espresso-card__body h3 sup {
  font-size: 80%;
  vertical-align: super;
}
.espresso-card__body p {
  margin-top: 16px;
}

.espresso-card__media {
  position: relative;
  aspect-ratio: 345/246;
}
.espresso-card__media::before {
  position: absolute;
  top: 16px;
  right: 16px;
  content: attr(data-label);
  font-family: var(--font-avenir);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  color: var(--color-white);
}
.espresso-card__media img,
.espresso-card__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .espresso {
    padding: 88px 0;
  }
  .espresso__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 40px;
    max-width: none;
  }
  .espresso-card__body h3 {
    display: grid;
    place-content: center start;
    min-height: 3.4em;
  }
}
@media (min-width: 992px) {
  .espresso {
    padding: 112px 0;
  }
  .espresso__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .espresso__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 40px;
  }
}
/* crema
------------------------------------------------------ */
.crema {
  position: relative;
  z-index: 0;
  padding: 64px 0;
  color: var(--color-white);
}

.crema__heading span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.crema__text {
  margin-top: 24px;
}

.crema__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.crema__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .crema {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .crema {
    padding: 112px 0;
  }
}
/* third
------------------------------------------------------ */
.third {
  overflow: hidden;
  padding: 64px 0;
  background: var(--color-coffee-light-gray);
}

.third__row {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 56px;
}

.third__content h2 {
  color: var(--color-coffee-blue);
}
.third__content p {
  margin-top: 24px;
}

.third__img {
  max-width: 605px;
  margin: 0 -130px;
}

.third-difference-block {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.third-difference {
  width: 50%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.third-difference:not(:first-child) {
  border-left: 1px solid #B2B2B2;
}

.third-difference__title {
  flex-shrink: 0;
  min-height: 149px;
  display: grid;
  place-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
.third-difference__title span {
  font-size: 10px;
  line-height: 1.6;
}

.third-difference__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.third-difference__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.third-difference__item img {
  width: 88px;
  height: 88px;
}
.third-difference__item span {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .third {
    padding: 88px 0;
  }
  .third-difference {
    width: 100%;
    max-width: none;
  }
  .third-difference__list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin: auto 16px;
  }
  .third-difference__item {
    width: calc((100% - 32px) / 2);
    max-width: 125px;
  }
}
@media (min-width: 992px) {
  .third {
    padding: 112px 0;
  }
  .third__row {
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  .third__img {
    flex-shrink: 0;
    width: 60.8%;
    max-width: none;
    margin: 0;
  }
  .third-difference-block {
    margin-top: 80px;
    flex-direction: column;
  }
  .third-difference {
    flex-direction: row;
    gap: min(4.7445255474vw, 52px);
    padding: 40px min(1.2773722628vw, 14px);
  }
  .third-difference:not(:first-child) {
    border-left: none;
    border-top: 1px solid #B2B2B2;
  }
  .third-difference__title {
    width: min(12.4087591241vw, 136px);
    font-size: min(1.4598540146vw, 16px);
  }
  .third-difference__title img {
    width: min(10.9489051095vw, 120px);
  }
  .third-difference__list {
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: min(2.9197080292vw, 32px);
  }
  .third-difference__item {
    width: min(9.8540145985vw, 108px);
  }
  .third-difference__item img {
    width: min(8.0291970803vw, 88px);
    height: min(8.0291970803vw, 88px);
  }
  .third-difference__item span {
    font-size: min(1.0948905109vw, 12px);
  }
}
/* techonology
------------------------------------------------------ */
.technology__head {
  position: relative;
  z-index: 0;
  margin: 0 calc(50% - 50vw);
  padding: 80px calc(50vw - 50%);
  color: var(--color-white);
}

.technology__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.technology__bg img,
.technology__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.technology__title {
  text-align: center;
}
.technology__title h2 {
  font-family: var(--font-avenir);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
.technology__title h2 sup {
  font-size: 60%;
  vertical-align: super;
}
.technology__title p {
  margin-top: 8px;
}

.technology__row {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.technology__content p {
  margin-top: 16px;
}

.technology__media {
  position: relative;
  aspect-ratio: 760/507;
}
.technology__media img,
.technology__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.technology__media[aria-label]::after {
  position: absolute;
  top: -16px;
  left: calc(var(--gutter-sp) * -1);
  padding: 12px 16px;
  content: attr(aria-label);
  font-family: var(--font-avenir);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  background: #002AD4;
}

.technology__row._reverse .technology__media[aria-label]::after {
  left: initial;
  right: calc(var(--gutter-sp) * -1);
}

.technology__headline {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.technology__headline h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -24px;
  padding: 12.5px 24px;
  border-right: 1px solid #000;
  font-family: var(--font-avenir);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.375;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .technology__head {
    padding: 96px calc(50vw - 50%);
  }
  .technology__title h2 {
    font-size: 64px;
  }
  .technology__row {
    gap: 32px;
  }
  .technology__content p {
    margin-top: 32px;
  }
  .technology__media[aria-label]::after {
    top: 40px;
    left: calc(var(--gutter-pc) * -1);
    padding: 24px 40px;
    font-size: 16px;
  }
  .technology__row._reverse .technology__media[aria-label]::after {
    right: calc(var(--gutter-pc) * -1);
  }
  .technology__headline h3 {
    margin-left: -96px;
    padding: 23px 96px;
    font-size: 32px;
    line-height: 1.375;
  }
}
@media (min-width: 992px) {
  .technology__head {
    padding: 112px calc(50vw - 50%);
  }
  .technology__title h2 {
    font-size: min(5.7142857143vw, 80px);
    line-height: 1.8;
  }
  .technology__title p {
    margin-top: -16px;
  }
  .technology__row {
    flex-direction: row-reverse;
    align-items: center;
    gap: 88px;
  }
  .technology__row._reverse {
    flex-direction: row;
  }
  .technology__content p {
    margin-top: 32px;
  }
  .technology__media {
    flex-shrink: 0;
    width: 59%;
  }
}
/* system
------------------------------------------------------ */
.system-block {
  position: relative;
  margin: 48px auto;
}

.system-line {
  width: 100%;
  height: 1px;
  margin: 48px auto;
  background: var(--color-coffee-light-gray);
}

.system-blade-block {
  margin: 72px auto 0;
  max-width: 400px;
}

.system-blade {
  margin: 40px auto;
}
.system-blade:not(:first-child) {
  padding-top: 40px;
  border-top: 1px solid var(--color-coffee-light-gray);
}

.system-blade__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.system-blade__head + * {
  margin-top: 16px;
}
.system-blade__head p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: #002AD4;
}
.system-blade__head p span {
  margin-right: 4px;
  padding: 0 4px;
  color: #FFF;
  background: #002AD4;
}

.system-blade__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
}

.system-blade__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.system-blade__content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.system-blade__tag {
  padding: 0 7px;
  border-radius: 100vmax;
  font-size: 14px;
  line-height: 1;
  color: var(--color-coffee-blue);
  border: 1px solid;
}

.system-blade__img {
  flex-shrink: 0;
  width: 112px;
}

.system-blade__list {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.system-blade__data {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 9px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-coffee-blue);
  border: 1px solid;
  border-radius: 4px;
}
.system-blade__data._em {
  background: #E1E7FF;
}

.system-card-block {
  max-width: 400px;
  margin: 72px auto 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.system-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.system-card__img {
  order: -1;
}

.system-card__content p {
  margin-top: 16px;
}

.system-card__graph {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .system-block {
    margin: 72px auto;
  }
  .system-line {
    margin: 72px auto;
  }
  .system-blade-block {
    max-width: none;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    align-items: end;
  }
  .system-blade {
    margin: 0;
    padding: 24px;
  }
  .system-blade:not(:first-child) {
    padding-top: 24px;
    border-top: none;
  }
  .system-blade__tag {
    font-size: 15px;
    line-height: 1.2666666667;
  }
  .system-card-block {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .system-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .system-card__graph {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .system-block {
    margin: 96px auto;
  }
  .system-line {
    margin: 96px auto;
  }
  .system-blade-block {
    margin: 24px auto 0;
  }
  .system-blade {
    padding: 56px 40px;
  }
  .system-blade:not(:first-child) {
    padding-top: 56px;
  }
  .system-blade__body {
    gap: 16px;
  }
  .system-card-block {
    margin: 80px auto 0;
  }
}
@media (min-width: 1200px) {
  .system-blade-block {
    grid-template-columns: repeat(3, 1fr);
  }
  .system-blade:not(:first-child) {
    border-left: 1px solid var(--color-coffee-light-gray);
  }
}
/* mode & arrangement
------------------------------------------------------ */
.mode-arrangement {
  background: var(--color-coffee-light-gray);
}

.mode-arrangement-block {
  margin: 72px 0;
}

.mode {
  padding: 0 0 72px;
}

.mode-card-block {
  max-width: 400px;
  margin: 40px auto 0;
}

.mode-card-list {
  display: grid;
  grid-template-rows: auto;
  gap: 24px;
  margin-top: 24px;
}

.mode-card {
  color: #2E3645;
  background: #FFF;
}

.mode-card__img {
  aspect-ratio: 345/194;
}
.mode-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mode-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mode__table-block {
  max-width: 400px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mode__table table {
  width: 100%;
  table-layout: fixed;
  margin: 6px 0;
}
.mode__table table thead {
  background: var(--color-base-beige);
}
.mode__table table tbody {
  background: var(--color-white);
}
.mode__table table tr > th:first-of-type, .mode__table table tr td:first-of-type {
  width: 40%;
}
.mode__table table tr > th:not(:first-of-type), .mode__table table tr td:not(:first-of-type) {
  width: 20%;
}
.mode__table table th, .mode__table table td {
  padding: 6px 0;
  border: 1px solid var(--color-coffee-light-gray);
  text-align: center;
  vertical-align: middle;
}

.arrangement {
  padding: 0 0 64px;
}

.arrangement__list-block {
  max-width: 400px;
  margin: 40px auto 0;
}

.arrangement__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 32px 2px;
  margin-top: 24px;
}
.arrangement__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #0B1956;
}
.arrangement__list li:nth-of-type(1), .arrangement__list li:nth-of-type(2), .arrangement__list li:nth-of-type(3), .arrangement__list li:nth-of-type(4) {
  grid-column: span 3;
}
.arrangement__list li:nth-of-type(5), .arrangement__list li:nth-of-type(6), .arrangement__list li:nth-of-type(7) {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .mode {
    padding: 0 0 80px;
  }
  .mode-arrangement-block {
    margin: 80px 0;
  }
  .mode-card-block {
    max-width: none;
    margin: 48px auto 0;
  }
  .mode-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .mode-card__img {
    aspect-ratio: initial;
  }
  .mode__table-block {
    max-width: 1000px;
  }
  .arrangement {
    padding: 0 0 88px;
  }
  .arrangement__list-block {
    max-width: none;
    margin: 48px auto 0;
  }
  .arrangement__list {
    grid-template-columns: repeat(12, 1fr);
    margin-top: 40px;
  }
  .arrangement__list li:nth-of-type(1), .arrangement__list li:nth-of-type(2), .arrangement__list li:nth-of-type(3) {
    grid-column: span 4;
  }
  .arrangement__list li:nth-of-type(4), .arrangement__list li:nth-of-type(5), .arrangement__list li:nth-of-type(6), .arrangement__list li:nth-of-type(7) {
    grid-column: span 3;
  }
}
@media (min-width: 992px) {
  .mode {
    padding: 0 0 88px;
  }
  .mode-card-block {
    margin: 56px auto 0;
  }
  .mode-card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .mode__table-block {
    flex-direction: row;
  }
  .arrangement {
    padding: 0 0 112px;
  }
  .arrangement__list {
    grid-template-columns: repeat(7, 1fr);
    margin-top: 40px;
  }
  .arrangement__list li {
    grid-column: span 1 !important;
  }
}
/* slim & minimal
------------------------------------------------------ */
.slim-minimal {
  padding: 0 0 64px;
  color: var(--color-white);
  background: #2E3645;
}

.slim-minimal__img {
  max-width: 560px;
  margin: 0 auto;
}
.slim-minimal__img figcaption {
  margin-top: 32px;
}

.slim-minimal-block {
  max-width: 400px;
  margin: 64px auto 80px;
}

.slim-minimal__row {
  display: grid;
  grid-template-rows: auto;
  gap: 48px;
  max-width: 400px;
  margin: 80px auto 72px;
}

.slim-minimal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-block {
  display: grid;
  grid-template-columns: auto;
  gap: 40px;
  max-width: 400px;
  margin: 72px auto 0;
}

.detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.detail:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.detail__content {
  flex: 1;
}

.detail__title {
  padding: 8px 0 7px;
  border-bottom: 1px solid;
  font-family: var(--font-avenir);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.detail__text {
  margin-top: 16px;
}

.detail__img {
  flex-shrink: 0;
  width: 128px;
}

@media (min-width: 768px) {
  .slim-minimal {
    padding: 0 0 88px;
  }
  .slim-minimal-block {
    max-width: none;
    margin: 76px auto 80px;
  }
  .slim-minimal__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    max-width: none;
    margin: 80px auto;
  }
  .slim-minimal-card__title {
    font-size: 18px !important;
  }
  .detail-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    max-width: none;
    margin: 80px auto 0;
  }
  .detail:nth-of-type(odd) {
    flex-direction: row;
  }
  .detail__text {
    font-size: 14px !important;
  }
}
@media (min-width: 992px) {
  .slim-minimal {
    padding: 0 0 112px;
  }
  .slim-minimal-block {
    margin: 88px auto 80px;
  }
  .slim-minimal-card__title {
    font-size: 20px !important;
  }
  .detail-block {
    margin: 88px auto 0;
  }
  .detail__title {
    font-size: 24px;
  }
  .detail__text {
    margin-top: 24px;
    font-size: 16px !important;
  }
}
/* easy maintenance
------------------------------------------------------ */
.easy-maintenance {
  padding: 0 0 64px;
  background: var(--color-coffee-light-gray);
}

.easy-maintenance-block {
  margin: 64px auto 72px;
}

.maintenance {
  margin: 72px auto 0;
}

.maintenance-card-block {
  display: grid;
  grid-template-rows: auto;
  gap: 32px;
  max-width: 400px;
  margin: 56px auto 0;
}

.maintenance-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maintenance-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.maintenance-card__text {
  font-size: 14px;
  line-height: 1.6;
}

.maintenance-card__media {
  order: -1;
  aspect-ratio: 345/226;
}
.maintenance-card__media img,
.maintenance-card__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .easy-maintenance {
    padding: 0 0 88px;
  }
  .easy-maintenance-block {
    margin: 76px auto 80px;
  }
  .maintenance {
    margin: 80px auto 0;
  }
  .maintenance-card-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 32px;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .easy-maintenance {
    padding: 0 0 112px;
  }
  .easy-maintenance-block {
    margin: 88px auto 80px;
  }
  .maintenance-card-block {
    grid-template-columns: repeat(4, 1fr);
  }
  .maintenance-card__title {
    font-size: 16px;
  }
}
/* routine
------------------------------------------------------ */
.routine {
  padding: 64px 0;
  background: var(--color-base);
}

.routine__head, .barista__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.routine__head h2, .barista__head h2 {
  font-family: var(--font-avenir);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-beige01);
}

.switch-block {
  max-width: 400px;
  margin: 80px auto 0;
  display: grid;
  grid-template-rows: auto;
  gap: 56px;
}

.switch {
  display: flex;
  flex-direction: column;
}

.switch__time {
  order: -2;
  font-family: var(--font-avenir);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.375;
  color: #B3B3B3;
}

.switch__img {
  order: -1;
  margin-top: 8px;
}

.switch__content {
  margin-top: 16px;
}
.switch__content p {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .routine {
    padding: 72px 0;
  }
  .routine__head, .barista__head {
    gap: 16px;
  }
  .routine__head h2, .barista__head h2 {
    font-size: 64px;
  }
  .switch-block {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .routine {
    padding: 80px 0;
  }
  .routine__head, .barista__head {
    gap: 0;
  }
  .routine__head h2, .barista__head h2 {
    font-size: min(5.7142857143vw, 80px);
    line-height: 1.8;
  }
  .switch-block {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* barista
------------------------------------------------------ */
.barista {
  padding: 64px 0;
  color: var(--color-white);
  background: var(--color-coffee-blue-gray);
}

.barista__head h2 {
  color: inherit;
}

.barista__img-block {
  margin: 64px calc(50% - 50vw);
  display: grid;
  grid-template-rows: auto;
}
.barista__img-block img {
  width: 100%;
  height: 100%;
  max-height: 317px;
  -o-object-fit: cover;
     object-fit: cover;
}

.barista-card-block {
  max-width: 400px;
  margin: 64px auto 72px;
  display: grid;
  grid-template-rows: auto;
  gap: 56px;
}

.barista-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.barista-profile {
  max-width: 400px;
  margin: 72px auto 0;
  padding: 23px 32px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.barista-profile__img {
  flex-shrink: 0;
  width: 120px;
}

.barista-profile__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .barista {
    padding: 72px 0;
  }
  .barista__img-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .barista-card-block {
    max-width: none;
    margin: 72px auto 80px;
    grid-template-columns: repeat(2, 1fr);
  }
  .barista-card h3 {
    display: grid;
    place-content: center start;
    font-size: 17px !important;
    min-height: 3.4em;
  }
  .barista-profile {
    max-width: none;
    margin: 80px auto 0;
    padding: 31px 32px;
  }
  .barista-profile__img {
    flex-shrink: 0;
    width: 120px;
  }
  .barista-profile__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
@media (min-width: 992px) {
  .barista {
    padding: 80px 0;
  }
  .barista__row {
    display: flex;
    align-items: flex-end;
    gap: 56px;
    margin: 80px auto 0;
  }
  .barista-card-block {
    margin: 0;
  }
  .barista-profile {
    margin: 0;
    flex-direction: column;
    gap: 16px;
  }
  .barista-profile__content {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .barista__row {
    gap: 88px;
  }
  .barista-card h3 {
    font-size: 20px !important;
  }
}
/* faq
------------------------------------------------------ */
.faq {
  padding: 64px 0;
  background: var(--color-base-beige);
}

.faq__title + * {
  margin-top: 40px;
}

.faq__list {
  counter-reset: question;
}

.faq__list-question {
  position: relative;
  margin-top: 16px;
  padding: 8px 24px 8px 68px;
  min-height: 42px;
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.faq__list-question::before {
  position: absolute;
  top: 8px;
  left: 24px;
  counter-increment: question;
  content: "Q" counter(question) ".";
  font-family: var(--font-avenir);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

@media (any-hover: hover) {
  .faq__list-question:hover {
    color: var(--color-beige01);
  }
}
.faq__list-answer {
  position: relative;
  padding: 0 24px 0 48px;
  overflow: hidden;
  max-height: 0;
  transition-property: max-height, margin;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.faq__list-answer::before {
  position: absolute;
  top: 0;
  left: 24px;
  content: "A.";
  font-family: var(--font-avenir);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}
.faq__list-answer > * + * {
  margin-top: 1.6em;
}
.faq__list-answer.is-open {
  margin: 14px 0 16px;
}

@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  .faq__title + * {
    margin-top: 56px;
  }
  .faq__list-question::before,
  .faq__list-answer::before {
    font-size: 18px;
  }
}
/* spec
------------------------------------------------------ */
.spec {
  padding: 64px 0;
}

.spec__heading + * {
  margin-top: 48px;
}

.spec .product__button {
  padding: 20px 72px;
  width: 100%;
  max-width: 380px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.spec .product__tag {
  margin: 8px auto;
}
.spec .product__tag span {
  padding: 2px 11px;
  color: var(--color-dispenser-blue-gray);
  border-color: var(--color-gray01);
}

.spec .product__price {
  margin: 24px auto;
  font-size: 24px;
}
.spec .product__price em {
  font-size: 32px;
}
.spec .product__price span {
  font-size: 10px;
}

.spec .product__note {
  max-width: 336px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .spec {
    padding: 80px 0;
  }
  .spec__heading + * {
    margin-top: 56px;
  }
  .spec .product__name {
    font-size: 30px;
  }
  .spec .product__tag {
    margin: 16px auto;
  }
  .spec .product__color {
    font-size: 16px;
  }
  .spec .product__note {
    margin-top: 40px;
    font-size: 14px;
  }
  .spec .product__img-wrap {
    min-width: none;
    gap: 54px;
  }
  .spec .product__img-wrap .product__img img {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .spec {
    padding: 104px 0;
  }
}
/* LINE
------------------------------------------------------ */
.line-block {
  max-width: 400px;
  margin: 48px auto 0;
  padding: 24px 0;
  border-radius: 12px;
  color: var(--color-white);
  background: var(--color-line-brand);
}

.line-block__inner {
  max-width: 570px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.line-block__content {
  flex-grow: 1;
}

.line-block__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}

.line-block__text {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
}
.line-block__text span {
  padding: 1px 7px;
  border: 1px solid;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}

.line-block__button {
  padding: 12px 72px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  white-space: nowrap;
  color: var(--color-green);
  background: var(--color-white);
}

.line-block__qr {
  display: none;
}

@media (min-width: 768px) {
  .line-block {
    max-width: none;
    margin: 56px auto 0;
  }
  .line-block__inner {
    flex-direction: row;
  }
  .line-block__title {
    font-size: 20px;
    text-align: left;
  }
  .line-block__text {
    align-items: flex-start;
  }
  .line-block__text span {
    padding: 3px 15px;
    font-size: 16px;
  }
  .line-block__button {
    display: none;
  }
  .line-block__qr {
    display: block;
    flex-shrink: 0;
    width: 100px;
  }
}
/* footer
------------------------------------------------------ */
.footer {
  display: flex;
  flex-direction: column;
}
.footer::before {
  content: "";
  height: 56.2340966921vw;
  max-height: 600px;
  background: url("../images/footer-bg_sp.webp") center/cover;
}

.footer__bottom {
  width: 100%;
  padding: 48px 0 32px;
  color: #FFF;
  background: var(--color-black);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 32px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.footer__logo {
  line-height: 1;
}
.footer__logo img {
  width: auto;
  height: 16px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__nav {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a {
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__nav a:hover {
    opacity: 0.5;
  }
}

.footer__sns {
  display: flex;
  gap: 28px;
}
.footer__sns a {
  width: 32px;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__sns a:hover {
    opacity: 0.5;
  }
}

.footer__copyright {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  color: var(--color-gray01);
}

@media (min-width: 768px) {
  .footer::before {
    background-image: url("../images/footer-bg_pc.webp");
  }
  .footer__bottom {
    padding: 56px 0 40px;
  }
  .footer__bottom-inner {
    align-items: flex-end;
  }
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }
  .footer__info {
    align-items: flex-end;
    gap: 16px;
  }
  .footer__nav ul {
    flex-direction: row;
    gap: 40px;
  }
}
/*----------------------------------------
	Utility
----------------------------------------*/
.h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 30px;
  }
}

.h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 24px;
  }
}

.h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 20px;
  }
}

.body-l {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .body-l {
    font-size: 20px;
  }
}

.body-m {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-m {
    font-size: 16px;
  }
}

.body-s {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-s {
    font-size: 14px;
  }
}

.body-ss {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-ss {
    font-size: 12px;
  }
}

.caption {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
}

.el-title {
  font-family: var(--font-avenir);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .el-title {
    font-size: 80px;
    line-height: 1.8;
  }
}

.el-number {
  font-family: var(--font-avenir);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .el-number {
    font-size: 56px;
  }
}

.text-bold {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.md-visible {
  display: none;
}
@media (min-width: 768px) {
  .md-visible {
    display: initial;
  }
}

@media (min-width: 768px) {
  .md-hidden {
    display: none;
  }
}

@media (min-width: 992px) {
  .lg-hidden {
    display: none;
  }
}

.lg-visible {
  display: none;
}
@media (min-width: 992px) {
  .lg-visible {
    display: initial;
  }
}

/*----------------------------------------
	Animation
----------------------------------------*/
[data-scroll-anima] {
  opacity: 0;
}

.fadeIn {
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease-out;
  opacity: 0;
}
.fadeIn[data-scroll-anima=true] {
  opacity: 1;
}

.scaleIn {
  transition-property: opacity, scale;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
  opacity: 0;
  scale: 0.95;
}
.scaleIn[data-scroll-anima=true] {
  opacity: 1;
  scale: 1;
}/*# sourceMappingURL=style.css.map */