@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2024_softcream/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2024_softcream/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* COLUMN COMPORENT
=============================*/
main {
  display: flex;
}

.center {
  width: 600px;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

.leftside {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}
.leftside .left-bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-size: 660px;
  background-repeat: repeat;
  background-position: top;
}
@media screen and (max-width: ) {
  .leftside .left-bg {
    background-size: 532px;
  }
}

.rightside {
  position: sticky;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}
.rightside .right-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 100vh;
  width: 100%;
  background-size: 660px;
  background-repeat: repeat;
  background-position: top;
}
@media screen and (max-width: ) {
  .rightside .right-bg {
    background-size: 532px;
  }
}

@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2024_softcream/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2024_softcream/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2024_softcream/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2024_softcream/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2024_softcream/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2024_softcream/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* LP Original Style
===============================*/
img {
  width: 100%;
}

.center {
  margin: 175px auto 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1535px) {
  .center {
    margin-top: 145px;
  }
}
@media screen and (max-width: ) {
  .center {
    margin-top: 140px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    margin-top: 0;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.posrel {
  position: relative;
}

.loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/lp/2024_softcream/images/loading_bg.png) repeat center center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loading .loading_content {
  width: 150px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .loading .loading_content {
    width: 120px;
  }
}
.loading .scene {
  position: relative;
  opacity: 0;
}
.loading .scene:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.loading .decoration {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.loading .decoration img {
  position: absolute;
  opacity: 0;
}
.loading .decoration .deco1 {
  width: 23px;
  top: -11px;
  right: 11px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco1 {
    width: 20px;
    top: -11px;
    right: 11px;
  }
}
.loading .decoration .deco2 {
  width: 19px;
  top: 23px;
  right: -8px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco2 {
    width: 17px;
    top: 23px;
    right: -8px;
  }
}
.loading .decoration .deco3 {
  width: 15px;
  top: 49%;
  left: 8px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco3 {
    width: 13px;
    top: 49%;
    left: 8px;
  }
}
.loading .decoration .deco4 {
  width: 48px;
  top: -9px;
  right: 13px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco4 {
    width: 42px;
    top: -9px;
    right: 10px;
  }
}
.loading .decoration .deco5 {
  width: 36px;
  top: -9px;
  left: 25px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco5 {
    width: 32px;
    top: -9px;
    left: 23px;
  }
}
.loading .decoration .deco6 {
  width: 48px;
  top: -20px;
  right: 15px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco6 {
    width: 42px;
    top: -20px;
    right: 8px;
  }
}
.loading .decoration .deco7 {
  width: 45px;
  top: 12px;
  left: 3px;
}
@media screen and (max-width: 600px) {
  .loading .decoration .deco7 {
    width: 40px;
    top: 8px;
    left: 2px;
  }
}
.loading.active .scene1 {
  animation: scene_fade 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 0.5s;
}
.loading.active .scene1 .deco1 {
  animation: deco_fade 0.4s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 0.5s;
}
.loading.active .scene1 .deco2 {
  animation: deco_fade 0.4s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 0.9s;
}
.loading.active .scene1 .deco3 {
  animation: deco_fade 0.4s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 0.9s;
}
.loading.active .scene2 {
  animation: scene_fade 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 1.4s;
}
.loading.active .scene2 .deco4 {
  animation: deco_fade 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 1.4s;
}
.loading.active .scene3 {
  animation: scene_fade 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 2.3s;
}
.loading.active .scene3 .deco5 {
  animation: deco_fade 0.4s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 2.3s;
}
.loading.active .scene3 .deco6 {
  animation: deco_fade 0.4s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 2.7s;
}
.loading.active .scene4 {
  animation: scene_fade_end 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 3.3s;
}
.loading.active .scene4 .deco7 {
  animation: deco_fade 1.2s cubic-bezier(0.39, 0.57, 0.56, 1) forwards 3.3s;
}
@keyframes scene_fade {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scene_fade_end {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes deco_fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.bgslide {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 600px) {
  .bgslide {
    opacity: 0;
  }
}
.bgslide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.07);
}
.bgslide .swiper-img {
  height: 100vh;
}
.bgslide .swiper-slide-active .swiper-img img,
.bgslide .swiper-slide-duplicate-active .swiper-img img,
.bgslide .swiper-slide-prev .swiper-img img {
  transform: scale(1.07);
  animation: zoomOutFade 10s linear 0s normal both;
}

@keyframes zoomOutFade {
  0% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
.mv_about {
  padding-bottom: 120%;
  position: relative;
  background: url(/lp/2024_softcream/images/mv_about_bg.jpg) no-repeat center top 75%;
  background-size: 750px auto;
  background-attachment: fixed;
}
@media screen and (max-width: 600px) {
  .mv_about {
    background: none;
  }
}
.mv_about::before {
  content: none;
  width: 600px;
  height: 120vh;
  display: block;
  background: url(/lp/2024_softcream/images/mv_about_bg.jpg) no-repeat center top 75%;
  background-size: 750px auto;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
@media screen and (max-width: 1535px) {
  .mv_about::before {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .mv_about::before {
    content: "";
    width: 750px;
  }
}

#mv {
  margin-top: -12%;
  margin-bottom: 30%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  #mv {
    margin-top: 0;
  }
}
#mv p {
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  top: 15%;
  right: 8%;
  z-index: 2;
}
#mv p img {
  width: 8%;
  margin-left: 7%;
  transform: translateY(-10px);
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1), transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#mv p img:nth-child(1) {
  order: 2;
  transition-delay: 1.5s;
}
#mv p img:nth-child(2) {
  order: 1;
  margin-top: 13%;
  transition-delay: 1.9s;
}
#mv p img:nth-child(3) {
  margin-top: 9%;
  transition-delay: 2.3s;
}
#mv .clip {
  position: relative;
}
#mv .clip svg {
  width: 132.5%;
  position: relative;
  left: -16.25%;
  z-index: 1;
}
#mv .clip .clip_mv {
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1), filter 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  transition-delay: 1s;
  opacity: 0;
  filter: blur(10px);
}
#mv .clip .clip_mv_bg {
  position: absolute;
  top: 0;
  z-index: 0;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  transition-delay: 1.5s;
}
#mv.active p img {
  transform: translateY(0);
  opacity: 1;
}
#mv.active .clip_mv {
  opacity: 1;
  filter: blur(0);
}
#mv.active .clip_mv_bg {
  opacity: 0;
}

.about {
  height: 600vh;
}

#about {
  height: 600vh;
  position: relative;
}
#about .about_content_wrap {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#about .about_content_wrap.fixed {
  width: 600px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1535px) {
  #about .about_content_wrap.fixed {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  #about .about_content_wrap.fixed {
    width: 100%;
  }
}
#about .about_content_wrap.absolute {
  position: absolute;
  top: auto;
  bottom: 0;
}
#about .about_content_body {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 1535px) {
  #about .about_content_body {
    padding-top: 72px;
  }
}
@media screen and (max-width: 1110px) {
  #about .about_content_body {
    padding-top: 65px;
  }
}
@media screen and (max-width: 600px) {
  #about .about_content_body {
    padding-top: 60px;
  }
}
#about .about_content_body .photo {
  width: 75%;
  margin: 0 auto 7% auto;
  position: relative;
}
@media screen and (max-width: 1535px) {
  #about .about_content_body .photo {
    width: 81.3%;
  }
}
@media screen and (max-width: 600px) {
  #about .about_content_body .photo {
    width: 75%;
    margin: 0 auto 9% auto;
  }
}
#about .about_content_body .photo img {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .photo img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#about .about_content_body .photo img.active {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .scroll {
  width: 23.2%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 59.5%;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}
@media screen and (max-width: 600px) {
  #about .about_content_body .scroll {
    top: 58%;
  }
}
@media screen and (max-width: 375px) {
  #about .about_content_body .scroll {
    top: 59%;
  }
}
#about .about_content_body .scroll.active {
  opacity: 1;
}
#about .about_content_body .tab {
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  position: relative;
}
#about .about_content_body .tab.active {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .tab span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 600px) {
  #about .about_content_body .tab span {
    width: 8px;
    height: 8px;
  }
}
#about .about_content_body .tab span:not(:last-child) {
  margin-right: 23px;
}
#about .about_content_body .tab span::before {
  content: "";
  width: 42px;
  height: 43px;
  display: block;
  background: url(/lp/2024_softcream/images/about_tab_active.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .tab span.active::before {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .text {
  width: 100%;
  margin: -8% auto -18% auto;
  position: relative;
}
@media screen and (max-width: 1535px) {
  #about .about_content_body .text {
    width: 106%;
    left: -3%;
  }
}
@media screen and (max-width: 600px) {
  #about .about_content_body .text {
    width: 100%;
    margin: -6% auto -17% auto;
    left: 0;
  }
}
#about .about_content_body .text img {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#about .about_content_body .text img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#about .about_content_body .text img:nth-child(4) {
  top: 12%;
}
#about .about_content_body .text img:nth-child(5) {
  top: 28%;
}
#about .about_content_body .text img:nth-child(6) {
  top: 45%;
}
#about .about_content_body .text img.active {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1);
}

#silverspoon {
  padding-bottom: 80%;
  position: relative;
  z-index: 3;
}
#silverspoon img {
  width: 141.3%;
  position: absolute;
  bottom: -1%;
  left: 9.8%;
  z-index: 3;
  transform: translateY(300px) rotate(-30deg);
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1), transform 1s cubic-bezier(0.39, 0.57, 0.56, 1);
}
#silverspoon.active img {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

#item {
  margin-top: -174%;
  position: relative;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  transition-delay: 0.5s;
  overflow: hidden;
  opacity: 0;
}
#item.active {
  opacity: 1;
}
#item .item_bg {
  padding: 0 0 2% 0;
  background: url(/lp/2024_softcream/images/item_bg.jpg) no-repeat center center;
  background-size: auto 100%;
}
@media screen and (max-width: 600px) {
  #item .item_bg {
    padding: 0 0 2% 0;
  }
}
#item .item_bg_top {
  padding-top: 78.5%;
  background: url(/lp/2024_softcream/images/item_bg_top.png) no-repeat center top;
  background-size: 100% 100%;
}
#item .item_bg_btm {
  padding-bottom: 48.8%;
  background: url(/lp/2024_softcream/images/item_bg_btm.png) no-repeat center bottom;
  background-size: 100% 100%;
}
#item .item_blk:not(:last-child) {
  margin-bottom: 40%;
}
#item .item_blk .item_img {
  width: 500px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1535px) {
  #item .item_blk .item_img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk .item_img {
    width: 90%;
  }
}
#item .item_blk .item_img .photo {
  width: 36.2%;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1), opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
}
@media screen and (max-width: 1535px) {
  #item .item_blk .item_img .photo {
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk .item_img .photo {
    margin: 0 auto 30px auto;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk .item_img .photo {
    margin: 0 auto 20px auto;
  }
}
#item .item_blk .parts .parts_text {
  font-size: 17px;
  font-weight: bold;
  color: #42a9d1;
  text-align: center;
  line-height: 1.4;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  #item .item_blk .parts .parts_text {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk .parts .parts_text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk .parts .parts_text {
    font-size: 1.2rem;
  }
}
#item .item_blk .parts .parts_text span {
  display: inline-block;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.6s linear, transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#item .item_blk .parts .parts_text span.on {
  transform: none;
  opacity: 1;
}
#item .item_blk .parts .parts_line {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  position: absolute;
  z-index: 1;
}
#item .item_blk .cloud {
  position: absolute;
}
#item .item_blk.item1 {
  height: 350vh;
  margin-bottom: 0;
  position: relative;
}
#item .item_blk.item1 .item_img .photo {
  width: 42.4%;
  left: 3%;
}
#item .item_blk.item1 .cloud {
  width: 127.9%;
  left: -24%;
  bottom: -10%;
}
@media screen and (max-width: 1535px) {
  #item .item_blk.item1 .cloud {
    width: 110.9%;
    left: -16%;
    bottom: -12%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk.item1 .cloud {
    width: 120.9%;
    left: -21%;
    bottom: -10%;
  }
}
#item .item_blk.item2 {
  height: 350vh;
  margin-bottom: 32%;
  position: relative;
}
#item .item_blk.item2 .item_img .photo {
  width: 37.3%;
}
#item .item_blk.item2 .cloud {
  width: 116.4%;
  left: 1%;
  bottom: -4%;
}
@media screen and (max-width: 1535px) {
  #item .item_blk.item2 .cloud {
    width: 99.4%;
    left: 9%;
    bottom: -4%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk.item2 .cloud {
    width: 109.4%;
    left: 4%;
    bottom: -4%;
  }
}
#item .item_blk.item3 .parts .text1 {
  top: 4%;
  right: 9%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item3 .parts .text1 {
    right: 8%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item3 .parts .text1 {
    top: 2%;
    right: 7%;
  }
}
#item .item_blk.item3 .parts .text2 {
  top: 16%;
  left: 3%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item3 .parts .text2 {
    left: 0;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item3 .parts .text2 {
    top: 14%;
    left: -3%;
  }
}
#item .item_blk.item3 .parts .text3 {
  top: 50%;
  right: 4%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item3 .parts .text3 {
    right: 2%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item3 .parts .text3 {
    top: 48%;
    right: 0;
  }
}
#item .item_blk.item3 .parts .line1 {
  width: 25.6%;
  padding-top: 29%;
  background-image: url(/lp/2024_softcream/images/item3_border1.png);
  top: 12%;
  right: 19%;
}
#item .item_blk.item3 .parts .line2 {
  width: 29.6%;
  padding-top: 27.7%;
  background-image: url(/lp/2024_softcream/images/item3_border2.png);
  top: 23%;
  left: 16.5%;
}
#item .item_blk.item3 .parts .line3 {
  width: 27.7%;
  padding-top: 10%;
  background-image: url(/lp/2024_softcream/images/item3_border3.png);
  top: 57%;
  right: 19.5%;
}
#item .item_blk.item3 .cloud {
  width: 129.5%;
  left: -17%;
  bottom: -1%;
}
@media screen and (max-width: 1535px) {
  #item .item_blk.item3 .cloud {
    width: 112.5%;
    left: -9%;
    bottom: -6%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk.item3 .cloud {
    width: 122.5%;
    left: -14%;
    bottom: -2%;
  }
}
#item .item_blk.item4 .parts .text1 {
  top: -1%;
  right: 9%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item4 .parts .text1 {
    top: -2%;
    right: 8%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item4 .parts .text1 {
    top: -3%;
    right: 6%;
  }
}
#item .item_blk.item4 .parts .text2 {
  top: 11%;
  left: 3%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item4 .parts .text2 {
    top: 10%;
    left: 0;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item4 .parts .text2 {
    top: 9%;
    left: -1%;
  }
}
#item .item_blk.item4 .parts .text3 {
  top: 47%;
  right: 8%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item4 .parts .text3 {
    top: 46%;
    right: 4%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item4 .parts .text3 {
    right: 0;
  }
}
#item .item_blk.item4 .parts .line1 {
  width: 17.8%;
  padding-top: 12.2%;
  background-image: url(/lp/2024_softcream/images/item4_border1.png);
  top: 6%;
  right: 23%;
}
#item .item_blk.item4 .parts .line2 {
  width: 29.6%;
  padding-top: 27.7%;
  background-image: url(/lp/2024_softcream/images/item4_border2.png);
  top: 18%;
  left: 17%;
}
#item .item_blk.item4 .parts .line3 {
  width: 24%;
  padding-top: 7.7%;
  background-image: url(/lp/2024_softcream/images/item4_border3.png);
  top: 55%;
  right: 22.5%;
}
#item .item_blk.item4 .cloud {
  width: 130.6%;
  left: -33%;
  bottom: -2%;
}
@media screen and (max-width: 1535px) {
  #item .item_blk.item4 .cloud {
    width: 113.6%;
    left: -25%;
    bottom: -4%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk.item4 .cloud {
    width: 123.6%;
    left: -30%;
    bottom: -3%;
  }
}
#item .item_blk.item5 {
  margin-bottom: 25%;
}
#item .item_blk.item5 .parts .text1 {
  top: -12%;
  left: 22%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .parts .text1 {
    left: 22%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item5 .parts .text1 {
    left: 21%;
  }
}
#item .item_blk.item5 .parts .text2 {
  top: 2%;
  left: 8%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .parts .text2 {
    left: 4%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item5 .parts .text2 {
    top: 1%;
    left: 3%;
  }
}
#item .item_blk.item5 .parts .text2_btm {
  top: 7%;
  left: 5%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .parts .text2_btm {
    left: 2%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item5 .parts .text2_btm {
    left: 0;
  }
}
#item .item_blk.item5 .parts .text3 {
  top: 3%;
  right: 7%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .parts .text3 {
    right: 3%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item5 .parts .text3 {
    right: 0;
  }
}
#item .item_blk.item5 .parts .text4 {
  top: 42%;
  right: 9%;
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .parts .text4 {
    top: 41%;
    right: 5%;
  }
}
@media screen and (max-width: 375px) {
  #item .item_blk.item5 .parts .text4 {
    right: 4%;
  }
}
#item .item_blk.item5 .parts .line1 {
  width: 12.5%;
  padding-top: 8.2%;
  background-image: url(/lp/2024_softcream/images/item5_border1.png);
  top: -4.5%;
  left: 36%;
}
#item .item_blk.item5 .parts .line2 {
  width: 28%;
  padding-top: 12.8%;
  background-image: url(/lp/2024_softcream/images/item5_border2.png);
  top: 15%;
  left: 20.5%;
}
#item .item_blk.item5 .parts .line3 {
  width: 15.2%;
  padding-top: 16%;
  background-image: url(/lp/2024_softcream/images/item5_border3.png);
  top: 11%;
  right: 22%;
}
#item .item_blk.item5 .parts .line4 {
  width: 25.3%;
  padding-top: 13.6%;
  background-image: url(/lp/2024_softcream/images/item5_border4.png);
  top: 49.5%;
  right: 23%;
}
#item .item_blk.item5 .cloud {
  width: 136.7%;
  left: 4%;
  bottom: -4%;
}
@media screen and (max-width: 1535px) {
  #item .item_blk.item5 .cloud {
    width: 119.7%;
    left: 12%;
    bottom: -7%;
  }
}
@media screen and (max-width: 600px) {
  #item .item_blk.item5 .cloud {
    width: 129.7%;
    left: 7%;
    bottom: -5%;
  }
}
#item .name {
  width: 57.3%;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1535px) {
  #item .name {
    margin: 0 auto 20px auto;
  }
}
@media screen and (max-width: 600px) {
  #item .name {
    margin: 0 auto 15px auto;
  }
}
@media screen and (max-width: 375px) {
  #item .name {
    margin: 0 auto 10px auto;
  }
}
#item .price {
  font-family: "rubik";
  font-weight: 700;
  height: 40px;
  align-items: flex-end;
  justify-content: center;
}
#item .price img {
  width: auto;
  height: 26px;
}
@media screen and (max-width: 600px) {
  #item .price img {
    height: 20px;
  }
}
@media screen and (max-width: 375px) {
  #item .price img {
    height: 18px;
  }
}
#item .price .tax {
  font-size: 28px;
  font-family: fredoka one;
  font-weight: 400;
  line-height: 1.2;
  margin-right: 5px;
}
@media screen and (max-width: 1535px) {
  #item .price .tax {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  #item .price .tax {
    font-size: 1.6rem;
  }
}
#item .price .num {
  font-size: 44px;
  line-height: 1;
}
@media screen and (max-width: 1535px) {
  #item .price .num {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  #item .price .num {
    font-size: 3.2rem;
  }
}
#item .cap {
  margin: 35px auto 0 auto;
}
@media screen and (max-width: 1535px) {
  #item .cap {
    margin: 30px auto 0 auto;
  }
}
@media screen and (max-width: 600px) {
  #item .cap {
    margin: 25px auto 0 auto;
  }
}
@media screen and (max-width: 375px) {
  #item .cap {
    margin: 20px auto 0 auto;
  }
}
#item .item_scroll {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
#item .item_scroll.fixed {
  width: 600px;
  margin: 0 auto;
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
@media screen and (max-width: 1535px) {
  #item .item_scroll.fixed {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  #item .item_scroll.fixed {
    width: 100%;
  }
}
#item .item_scroll.absolute {
  position: absolute;
  top: auto;
  bottom: 0;
}
#item .item_scroll .item_scroll_in {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 1535px) {
  #item .item_scroll .item_scroll_in {
    padding-top: 72px;
  }
}
@media screen and (max-width: 1110px) {
  #item .item_scroll .item_scroll_in {
    padding-top: 65px;
  }
}
@media screen and (max-width: 600px) {
  #item .item_scroll .item_scroll_in {
    padding-top: 60px;
  }
}
#item .item_scroll .item_img .photo img {
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#item .item_scroll .item_img .photo img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#item .item_scroll .item_nav {
  width: 3.7%;
  position: absolute;
  top: 50%;
  left: 22%;
  z-index: 2;
  transform: translateY(calc(-50% + 30px));
  transition: transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1), opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#item .item_scroll .item_nav a {
  display: block;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0.3;
}
#item .item_scroll .item_nav a::before {
  content: "";
  width: 50%;
  padding-top: 57.1%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(150%, -50%);
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#item .item_scroll .item_nav a:nth-child(1)::before {
  background: url(/lp/2024_softcream/images/item_nav_arrow_plane.png) no-repeat center center;
  background-size: 100% 100%;
}
#item .item_scroll .item_nav a:nth-child(2)::before {
  background: url(/lp/2024_softcream/images/item_nav_arrow_chocolate.png) no-repeat center center;
  background-size: 100% 100%;
}
#item .item_scroll .item_nav a:nth-child(3)::before {
  background: url(/lp/2024_softcream/images/item_nav_arrow_strawberry.png) no-repeat center center;
  background-size: 100% 100%;
}
#item .item_scroll .item_nav a:not(:last-child) {
  margin-bottom: 25px;
}
#item .item_scroll .name {
  position: relative;
}
#item .item_scroll .name img {
  transition: opacity 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#item .item_scroll .name img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#item .item_scroll.phase1 .item_img .photo img:nth-child(1) {
  opacity: 1;
}
#item .item_scroll.phase1 .item_nav a:nth-child(1) {
  opacity: 1;
}
#item .item_scroll.phase1 .item_nav a:nth-child(1)::before {
  opacity: 1;
}
#item .item_scroll.phase1 .name img:nth-child(1) {
  opacity: 1;
}
#item .item_scroll.phase2 .item_img .photo img:nth-child(2) {
  opacity: 1;
}
#item .item_scroll.phase2 .item_nav a:nth-child(2) {
  opacity: 1;
}
#item .item_scroll.phase2 .item_nav a:nth-child(2)::before {
  opacity: 1;
}
#item .item_scroll.phase2 .name img:nth-child(2) {
  opacity: 1;
}
#item .item_scroll.phase3 .item_img .photo img:nth-child(3) {
  opacity: 1;
}
#item .item_scroll.phase3 .item_nav a:nth-child(3) {
  opacity: 1;
}
#item .item_scroll.phase3 .item_nav a:nth-child(3)::before {
  opacity: 1;
}
#item .item_scroll.phase3 .name img:nth-child(3) {
  opacity: 1;
}
#item .item_blk.active .item_img .photo {
  transform: translateY(0);
  opacity: 1;
}
#item .item_blk.active .item_img .item_nav {
  transform: translateY(-50%);
  opacity: 1;
}

#factory {
  padding-top: 33.3%;
  padding-bottom: 32.5%;
  margin-top: -50%;
  background: url(/lp/2024_softcream/images/factory_bg.jpg) no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
#factory .factory_title {
  margin-bottom: 40%;
}
#factory .factory_title h2 {
  width: 84.8%;
  margin: 0 auto;
  transform: translateY(100px);
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1), transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
}
#factory .factory_title h2.active {
  transform: translateY(0);
  opacity: 1;
}
#factory .factory_blk {
  width: calc(100% - 25px);
  padding: 22.5% 0 25.5% 0;
  background: url(/lp/2024_softcream/images/factory_blk_bg.jpg) repeat center center;
  box-shadow: 0 0 15px rgba(23, 33, 76, 0.2);
  position: relative;
  z-index: 1;
  transform: translateY(100px);
  transition: opacity 0.5s cubic-bezier(0.39, 0.57, 0.56, 1), transform 0.8s cubic-bezier(0.39, 0.57, 0.56, 1);
  opacity: 0;
  overflow: hidden;
}
#factory .factory_blk.active {
  transform: translateY(0);
  opacity: 1;
}
#factory .factory_blk.blk1 {
  margin-bottom: 24%;
}
#factory .factory_blk.blk1 .photo {
  width: 97.7%;
  margin-left: -5%;
  margin-bottom: 11%;
}
#factory .factory_blk.blk2 {
  margin-left: auto;
  margin-bottom: 5%;
}
#factory .factory_blk.blk2 .photo {
  width: 88.3%;
  margin-left: auto;
  margin-bottom: 14.2%;
}
#factory .factory_blk h3 {
  width: 48.8%;
  margin: 0 auto 8.5% auto;
}
#factory .factory_blk .text {
  width: 81.5%;
  margin: 0 auto;
}
#factory .cloud {
  position: relative;
}
#factory .cloud.cloud1 {
  width: 59.4%;
  margin-bottom: 8%;
  left: -18%;
}
#factory .cloud.cloud2 {
  width: 52%;
  position: absolute;
  bottom: -120%;
  left: -8%;
  z-index: 2;
}
#factory .cloud.cloud3 {
  width: 66.4%;
  position: absolute;
  bottom: -66%;
  right: -21%;
}
#factory .cloud.cloud4 {
  width: 57.1%;
  position: absolute;
  top: 30%;
  right: -18.5%;
}
#factory .cloud.cloud5 {
  width: 57.3%;
  position: absolute;
  top: -5.5%;
  left: -15%;
  z-index: 2;
}
#factory .cloud.cloud6 {
  width: 67.8%;
  position: absolute;
  top: -6.7%;
  right: -6%;
}
#factory .cloud.cloud7 {
  width: 49.1%;
  position: absolute;
  bottom: 5%;
  left: -19%;
}
#factory .cloud.cloud8 {
  width: 54.5%;
  position: absolute;
  bottom: -5.5%;
  right: -9%;
  z-index: 2;
}
#factory .cloud.cloud9 {
  width: 64.5%;
  left: -14%;
}
#factory .cloud .cloud_img {
  opacity: 0;
  transition: opacity 1s;
}
#factory .cloud .cloud_img.active {
  opacity: 1;
}

.shop_spoon {
  padding-top: 55%;
  margin-top: -60%;
  background: url(/lp/2024_softcream/images/shop_bg.png) no-repeat center bottom;
  background-size: 100% 100%;
  position: relative;
  z-index: 3;
}
.shop_spoon #shop {
  overflow: hidden;
}
.shop_spoon #shop h2 {
  width: 75.7%;
  margin: 0 auto;
}
.shop_spoon #shop .softslide {
  margin-bottom: 5.3%;
}
.shop_spoon #shop .softslide_reverse {
  margin-bottom: 15%;
}
.shop_spoon #shop .swiper-wrapper {
  height: auto;
  transition-timing-function: linear;
}
.shop_spoon #shop .swiper-wrapper .swiper-slide {
  height: auto;
  margin: 0 2%;
}
.shop_spoon #shop .swiper-wrapper .swiper-slide:nth-child(odd) {
  animation: 4s ease-in-out infinite bound;
}
.shop_spoon #shop .swiper-wrapper .swiper-slide:nth-child(even) {
  animation: 4s ease-in-out infinite bound_reverse;
}
.shop_spoon #shop .search_reserve {
  justify-content: center;
  margin-bottom: 1%;
}
.shop_spoon #shop .search_reserve a {
  width: 42.1%;
  position: relative;
  transition: opacity 0.5s;
}
.shop_spoon #shop .search_reserve a:hover {
  opacity: 0.8;
}
.shop_spoon #shop .search_reserve .search {
  animation: 2s ease-in-out infinite bound;
}
.shop_spoon #shop .search_reserve .reserve {
  animation: 2s ease-in-out infinite bound_reverse;
}
.shop_spoon #shop .search_reserve .text {
  width: 51.2%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.spoon {
  overflow: hidden;
}
.spoon p {
  margin-bottom: -13%;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.5s;
}
.spoon .spoon_soft {
  background: url(/lp/2024_softcream/images/spoon_sfot_bg.png) no-repeat center bottom;
  background-size: 100% auto;
}
.spoon .spoon_soft img {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s;
}
.spoon.active p {
  opacity: 1;
}
.spoon.active .spoon_soft img {
  opacity: 1;
  transform: translateY(0);
}

@keyframes FadeUp_cloud {
  0% {
    filter: blur(8px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bound {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes bound_reverse {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
footer {
  position: relative;
  z-index: 1;
}
footer.contentHidden::after {
  content: "";
  width: 100%;
  height: 300px;
  display: block;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */