@charset "utf-8";

/* --------------------------------------------------
initial settings
-------------------------------------------------- */
:root {
  --color-black: #1f1f33;
  --color-yellow: #f3c03e;
  --color-orange: #c38321;
  --color-green: #2b909c;
  --color-purple: #6254a1;
  --color-purple-light: #c7c7ff;
  --color-purple-dark: #353556;


  --color-gray-light: #EEEEEE;
  --color-gray-normal: #bebebe;
  --color-gray-dark: #747474;

  --color-gray-005: rgba(0, 0, 0, 0.05);
  --color-gray-010: rgba(0, 0, 0, 0.1);
  --color-gray-020: rgba(0, 0, 0, 0.2);
  --color-gray-030: rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: var(--color-black);
  background-color: var(--color-gray-light);
  overflow-x: hidden;
}

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

ol, ul {
  list-style: none;
}

ol.need-list-style, ul.need-list-style {
  list-style-type: disc;
  padding-inline-start: 16px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-black);
}

img {
  display: block;
  width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

input, textarea {
  font-size: 16px;
  font-family: inherit;
}

small {
  font-size: 12px;
}

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

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

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

@media screen and (min-width: 768px) {
  .md_text-left {
    text-align: left;
  }

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

  .md_text-right {
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }

  p {
    font-size: 18px;
  }

  small {
    font-size: 14px;
  }

  .lg_text-left {
    text-align: left;
  }

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

  .lg_text-right {
    text-align: right;
  }
}


/* --------------------------------------------------
display hidden or block
-------------------------------------------------- */
.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .md_hidden {
    display: none !important;
  }

  .md_block {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .lg_hidden {
    display: none !important;
  }

  .lg_block {
    display: block !important;
  }
}

@media screen and (min-width: 1280px) {
  .xl_hidden {
    display: none !important;
  }

  .xl_block {
    display: block !important;
  }
}


/* --------------------------------------------------
button setting
-------------------------------------------------- */
.btn {
  display: block;
  border-radius: 32px;
  transition: all 0.3s;
  font-weight: bold;
  text-align: center;
}

.btn-thick {
  padding: 16px 24px;
}

.btn-thin {
  padding: 8px 24px;
}

.btn:hover {
  opacity: 0.9;
}

.btn.btn-black {
  background-color: var(--color-black);
  color: white;
}

.btn.btn-white {
  background-color: white;
  color: var(--color-black);
}

.btn.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}


/* --------------------------------------------------
common
-------------------------------------------------- */
.bg-colored {
  color: white;
  background-color: var(--color-purple-dark);
}

.color-yellow {
  color: var(--color-yellow);
}

.marker-yellow {
  display: inline;
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}

.marker-all-yellow {
  display: inline;
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 4px;
  margin: 0 2px;
}

.marker-all-white {
  display: inline;
  background-color: white;
  color: var(--color-black);
  padding: 4px;
  margin: 0 2px;
}

.md_container {
  max-width: calc(768px - 48px);
  margin: 0 auto;
}

.lg_container {
  max-width: calc(1024px - 48px);
  margin: 0 auto;
}

.xl_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding-y {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading-title-text {
  text-align: center;
  font-size: 20px;
}

.section-heading-desc {
  margin-top: 16px;
}

.box-padding-t {
  padding-top: 48px;
}

.box-heading-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.border-radius-16px {
  border-radius: 16px;
}

.box-shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 1024px) {
  .section-padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading-title-text {
    font-size: 36px;
  }
  
  .section-heading-desc {
    margin-top: 24px;
  }

  .box-padding-t {
    padding-top: 80px;
  }

  .box-heading-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}


/* --------------------------------------------------
header
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.header-outer {
  position: relative;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: height 1s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s, box-shadow 0.5s;
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  position: relative;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo a img {
  width: auto;
  height: 32px;
}

.header-logo-normal {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.header-logo-white {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
}

.header-btn a {
  padding: 6px 16px;
  background-color: var(--color-yellow);
  font-size: 14px;
  display: none;
  opacity: 0;
}

.header-btn a:hover {
  opacity: 1.0;
  background-color: #f6c955;
}

@media screen and (min-width: 1024px) {
  .header-inner {
    height: 96px;
  }

  .header-btn a {
    padding: 12px 24px;
    font-size: 16px;
  }
}


/* --------------------------------------------------
header - is-scroll
-------------------------------------------------- */
#header.is-scroll .header-bg {
  background-color: white;
  box-shadow: 0 0 4px var(--color-gray-030);
}

#header.is-scroll .header-logo-normal {
  display: block;
  opacity: 1;
}

#header.is-scroll .header-logo-white {
  display: none;
  opacity: 0;
}

#header.is-scroll .header-btn a {
  display: block;
  opacity: 1;
}


/* --------------------------------------------------
hero
-------------------------------------------------- */
.hero {
  position: relative;
  height: 800px;
}

.hero-img-wrapper {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}

.hero-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  animation: hero-img-slider 32s linear infinite;
}

.hero-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(53, 53, 86, 0.5));
}

.hero-img:nth-child(1) {
  background-image: url("../images/hero/hero-01.jpg");
  animation-delay: -2s;
  z-index: 40;
}

.hero-img:nth-child(2) {
  background-image: url("../images/hero/hero-02.jpg");
  animation-delay: 6s;
  z-index: 30;
}

.hero-img:nth-child(3) {
  background-image: url("../images/hero/hero-03.jpg");
  animation-delay: 14s;
  z-index: 20;
}

.hero-img:nth-child(4) {
  background-image: url("../images/hero/hero-04.jpg");
  animation-delay: 22s;
  z-index: 10;
}

@keyframes hero-img-slider {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-box-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-box {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-box-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-box-right {
  display: none;
}

.hero-title {
  color: white;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.hero-main-title {
  margin: 8px 0 -8px;
  font-size: 24px;
}

.hero-prod-name {
  background-color: white;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

.hero-img-sp {
  width: 50%;
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .hero-box-left {
    gap: 32px;
  }

  .hero-main-title {
    margin: 16px 0 -8px;
    font-size: 28px;
  }

  .hero-prod-name {
    padding: 8px 16px;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .hero-cta .btn {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width: 1024px) {
  .hero-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .hero-box-left {
    width: calc(60% - 12px);
  }

  .hero-box-right {
    display: block;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
    width: calc(40% - 12px);
  }

  .hero-title {
    text-align: left;
  }

  .hero-sub-title {
    font-size: 20px;
  }

  .hero-main-title {
    font-size: 36px;
  }

  .hero-prod-name {
    margin-left: 0;
  }

  .hero-img-sp {
    display: none;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-cta .btn {
    width: fit-content;
    padding: 16px 32px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-box {
    gap: 48px;
  }

  .hero-box-left {
    gap: 40px;
    width: calc(60% - 24px);
  }

  .hero-box-right {
    width: calc(40% - 24px);
  }

  .hero-main-title {
    margin: 16px 0 -12px;
    font-size: 44px;
  }

  .hero-prod-name {
    font-size: 24px;
  }

  .hero-cta .btn {
    width: 320px;
  }
}

/* --------------------------------------------------
cta
-------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../images/cta/cta-bg.jpg");
}

.cta-bg:nth-of-type(2) {
  filter: blur(4px);
}

.cta-box {
  position: relative;
}

.cta-box-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cta-box-right {
  display: none;
}

.cta-text {
  width: 100%;
}

.cta-text h2 {
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.cta-btns li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cta-box-left {
    gap: 24px;
  }

  .cta-btns {
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-box-left {
    width: 70%;
  }

  .cta-box-right {
    width: 30%;
    display: flex;
    justify-content: end;
  }

  .cta-box-right img {
    max-width: 340px;
  }

  .cta-text h2 {
    font-size: 20px;
    text-align: left;
  }

  .cta-btns {
    justify-content: start;
  }

  .cta-btns li {
    width: fit-content;
  }

  .cta-btns li a {
    padding: 16px 32px;
  }
}

@media screen and (min-width: 1280px) {
  .cta-text h2 {
    font-size: 26px;
  }

  .cta-btns li {
    width: 360px;
  }

}


/* --------------------------------------------------
question
-------------------------------------------------- */
.question-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.question-item {
  background-color: white;
  border: 4px solid var(--color-purple-dark);
  padding: 32px 24px;
  border-radius: 16px;
  color: var(--color-black);
  position: relative;
}

.question-item img {
  width: 60%;
  max-width: 240px;
  margin: -16px auto 0;
}

.question-item h4 {
  font-size: 16px;
  margin: 8px 0 16px;
  text-align: center;
  line-height: 1.5;
}

.question-item .need-list-style {
  font-size: 14px;
}

.question-solution {
  margin-top: 32px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .question-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .question-item {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .question-list {
    justify-content: space-between;
    gap: 32px;
  }
  
  .question-item {
    width: calc((100% - 64px) / 3);
    padding: 40px 24px;
  }

  .question-item h4 {
    font-size: 18px;
    margin: 12px 0 20px;
  }

  .question-item .need-list-style {
    font-size: 16px;
  }

  .question-solution {
    margin-top: 48px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .question-solution {
    font-size: 28px;
  }

  .question-item h4 {
    font-size: 20px;
  }
}


/* --------------------------------------------------
about
-------------------------------------------------- */
.about-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-desc-img {
  position: relative;
  max-width: 480px;
  margin: -8px auto;
}

.about-desc-img img:nth-of-type(1) {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  max-width: 160px;
}

.about-desc-img img:nth-of-type(2) {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

@media screen and (min-width: 1024px) {
  .about-desc {
    flex-direction: row;
    align-items: center;
  }

  .about-desc-img {
      margin: -16px auto;
    }
  
  .about-desc-text, .about-desc-img {
    width: calc((100% - 24px) / 2);
  }
}


/* --------------------------------------------------
market
-------------------------------------------------- */
.market-data {
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 32px 24px;
  border-radius: 16px;
}

.market-data + .market-data {
  margin-top: 24px;
}

.market-data-text {
  margin-bottom: 16px;
  text-align: center;
}

.market-data-text h3 {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .market-data {
    padding: 48px;
  }

  .market-data-text h3 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .market-data + .market-data {
    margin-top: 48px;
  }

  .market-data-text h3 {
    font-size: 24px;
  }
}


/* --------------------------------------------------
features
-------------------------------------------------- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  background-color: white;
  border: 4px solid var(--color-purple-dark);
  padding: 32px 24px;
  border-radius: 16px;
  color: var(--color-black);
  position: relative;
}

.feature-info img {
  width: 60%;
  max-width: 240px;
  margin: -16px auto 0;
}

.feature-info h4 {
  font-size: 16px;
  margin: 8px 0 16px;
  text-align: center;
  line-height: 1.5;
}

.feature-info p {
  font-size: 14px;
}

.adnw-img img {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  .features-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .features-list {
    justify-content: space-between;
    gap: 32px;
  }
  
  .feature-item {
    width: calc((100% - 64px) / 3);
    padding: 40px 24px;
  }

  .feature-info h4 {
    font-size: 18px;
    margin: 12px 0 20px;
  }

  .feature-info p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .feature-info h4 {
    font-size: 20px;
  }
}


/* --------------------------------------------------
flow
-------------------------------------------------- */
.flow-list-swiper {
  position: relative;
}

.flow-list-swiper .flow-list-bar {
  display: none;
  position: absolute;
  top: 104px;
  left: 80px;
  right: 80px;
  height: 1px;
  background-color: var(--color-gray-normal);
}

.flow-list-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.flow-list-swiper .swiper-slide .flow-num {
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}

.flow-list-swiper .swiper-slide .flow-img {
  background-color: var(--color-yellow);
  color: var(--color-purple-dark);
  font-size: 40px;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.flow-list-swiper .swiper-slide .flow-text {
  text-align: center;
}

.flow-list-swiper .swiper-slide .flow-text h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.flow-list-swiper .swiper-slide .flow-text p {
  color: var(--color-gray-light);
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  .flow-list-swiper .swiper-slide .flow-text h3 {
    font-size: 18px;
  }

  .flow-list-swiper .swiper-slide .flow-text p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .flow-list-swiper .flow-list-bar {
    display: block;
  }

  .flow-list-swiper.this-swiper.has-pagination .swiper-slide {
    margin-bottom: 0;
  }
}


/* --------------------------------------------------
creation
-------------------------------------------------- */
.creation-project-swiper .swiper-slide {
  background-color: white;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 4px solid var(--color-black);
}

.creation-project-swiper .swiper-slide h3, .creation-project-swiper .swiper-slide p {
  color: var(--color-black);
}

.creation-project-swiper .swiper-slide h3 {
  margin-bottom: -8px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.creation-project-swiper .swiper-slide p {
  flex-grow: 1;
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  .creation-project-swiper .swiper-slide h3 {
    font-size: 18px;
  }

  .creation-project-swiper .swiper-slide p {
    font-size: 16px;
  }

  .creation-project-swiper.this-swiper.has-pagination .swiper-slide {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .creation-project-swiper .swiper-slide h3 {
    font-size: 20px;
  }
}


/* --------------------------------------------------
faq
-------------------------------------------------- */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.faq-box {
  background-color: white;
  color: var(--color-black);
  padding: 24px;
  border-radius: 16px;
}

.faq-box dt {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.faq-box dd {
  font-size: 14px;
}

.faq-box:nth-of-type(odd) dt {
  color: var(--color-orange);
}

.faq-box:nth-of-type(even) dt {
  color: var(--color-green);
}

@media screen and (min-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .faq-list {
    gap: 32px;
  }

  .faq-box dt {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .faq-box dd {
    font-size: 16px;
  }
}


/* --------------------------------------------------
contact
-------------------------------------------------- */
.contact-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.contact-btns li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact-btns {
    flex-direction: row;
    gap: 24px;
  }

  .contact-btns li a {
    padding: 32px 24px;
    border-radius: 48px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-btns li a {
    font-size: 20px;
    border-radius: 64px;
  }
}


/* --------------------------------------------------
footer
-------------------------------------------------- */
.footer {
  background-color: var(--color-black);
  border-top: 1px solid var(--color-gray-normal);
}

.footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  width: fit-content;
}

.footer-logo a {
  display: flex;
  align-items: center;
}

.footer-logo a img {
  width: auto;
  height: 32px;
}

.footer-text {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  color: white;
}

.footer-small {
  font-size: 12px;
}

.footer-links {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: var(--color-yellow);
}


.footer-links a + a {
  border-left: 1px solid white;
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .footer-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}


/* --------------------------------------------------
swiper setting
-------------------------------------------------- */
.swiper {
  overflow-x: hidden;
}

.this-swiper.has-pagination .swiper-slide {
  margin-bottom: 48px;
  height: auto;
}

.this-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-black);
}

.this-swiper .swiper-button-prev, .this-swiper .swiper-button-next {
  color: var(--color-black);
  --swiper-navigation-size: 20px;
  top: calc(100% - 18px);
}

.bg-colored .this-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
}

.bg-colored .this-swiper .swiper-button-prev, .bg-colored .this-swiper .swiper-button-next {
  color: white;
}


/* --------------------------------------------------
fade-up setting
-------------------------------------------------- */
.fade-up-item {
  transition: opacity 0.7s, transform 0.7s ease;
  transform: translateY(50px);
  opacity: 0;
}

.fade-up-hero {
  transition: opacity 1.2s, transform 1.2s ease;
  transform: translateY(50px);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-04, .fade-up-item-grid-04_lg-same {
    transform: translateY(150px);
  }

  .fade-up-item-grid-05, .fade-up-item-grid-04_lg-same {
    transform: translateY(50px);
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(250px);
  }

  .fade-up-item-grid-04, .fade-up-item-grid-04_lg-same {
    transform: translateY(50px);
  }

  .fade-up-item-grid-05, .fade-up-item-grid-05_lg-same {
    transform: translateY(150px);
  }

  .fade-up-item.lg_no-fade-up-item {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(100px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-04 {
    transform: translateY(200px);
  }

  .fade-up-item-grid-05 {
    transform: translateY(250px);
  }
}

.is-fade-up {
  transform: translateY(0);
  opacity: 1;
}