@charset "UTF-8";
/*ブレークポイント*/
body.open {
  height: 100vh;
  overflow-y: hidden;
}

header {
  position: fixed;
  width: 100%;
  line-height: 1;
  z-index: 999;
  background-color: #ffffff;
  filter: drop-shadow(0px 0px 5px rgba(34, 22, 19, 0.25));
}
header .inner {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 95%;
  max-width: 1180px;
}
header h1 {
  padding: 8px 0;
  width: 170px;
}
header h1 a img {
  shape-rendering: geometricPrecision;
  image-rendering: pixelated;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
header h1 + p {
  display: none;
  flex: 1;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  text-align: right;
}
header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -3%;
  width: clamp(140px, 18vw, 161px);
  height: 40px;
  background: url("/cream-and/assets/img/globalnav_sizzle.png") no-repeat right top;
  background-size: contain;
  pointer-events: none;
}
header::after {
  display: none;
}
@media print, screen and (min-width: 768px) {
  header {
    position: relative;
    filter: none;
  }
  header::after {
    display: none;
  }
  header h1 + p {
    display: block;
  }
}

.nav-button-wrap {
  position: fixed;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  align-items: center;
  right: 2.5%;
  top: 8px;
  z-index: 1100;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}
.nav-button-wrap .logo-cs {
  margin-right: 10px;
  width: 30px;
}
.nav-button-wrap .nav-button,
.nav-button-wrap .nav-button span {
  display: inline-block;
  transition: all 0.3s;
}
.nav-button-wrap .nav-button {
  z-index: 20;
  padding: 12px 10px;
}
.nav-button-wrap .nav-button > div {
  position: relative;
  width: 20px;
  height: 15px;
}
.nav-button-wrap .nav-button > div span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(34, 34, 34, 0.6);
  border-radius: 2px;
}
.nav-button-wrap .nav-button > div span:nth-of-type(1) {
  top: 0;
}
.nav-button-wrap .nav-button > div span:nth-of-type(2) {
  top: 6px;
}
.nav-button-wrap .nav-button > div span:nth-of-type(3) {
  bottom: 0;
}
.nav-button-wrap.active .logo-cs {
  opacity: 0;
  pointer-events: none;
}
.nav-button-wrap.active .nav-button span {
  background-color: white;
}
.nav-button-wrap.active .nav-button span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.nav-button-wrap.active .nav-button span:nth-of-type(2) {
  opacity: 0;
}
.nav-button-wrap.active .nav-button span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}
@media print, screen and (min-width: 768px) {
  .nav-button-wrap {
    opacity: 0;
    pointer-events: none;
  }
}

.globalnav-wrap {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.globalnav-wrap .inner {
  width: 100%;
  height: 100%;
}
.globalnav-wrap nav {
  z-index: 1010;
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(34, 22, 19, 0.9);
  transition: opacity 0.6s ease-out;
}
.globalnav-wrap nav ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  width: 100%;
  max-width: 1180px;
  list-style-type: none;
}
.globalnav-wrap nav ul > li {
  padding: 0.25vh 0;
  width: 80%;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.globalnav-wrap nav ul > li a {
  display: block;
  padding: 2vh 0;
  text-decoration: none;
  color: #ffffff;
}
.globalnav-wrap nav ul > li:not(:first-of-type) a {
  transition: opacity 0.5s ease-out;
}
.globalnav-wrap nav ul > li:not(:first-of-type) a:hover {
  opacity: 0.5;
}
@media only screen and (min-width: 550px) {
  .globalnav-wrap nav {
    transition: none;
  }
}
body.open .globalnav-wrap {
  pointer-events: all;
}
body.open .globalnav-wrap nav {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .globalnav-wrap {
    position: sticky;
    top: 0px;
    width: 100%;
    height: auto;
    pointer-events: all;
    background: #411408;
    background: linear-gradient(90deg, rgb(65, 20, 8) 50%, rgb(34, 22, 19) 50%);
  }
  .globalnav-wrap .inner {
    background: #411408;
    background: linear-gradient(90deg, rgb(65, 20, 8) 0%, rgb(34, 22, 19) 100%);
  }
  .globalnav-wrap nav {
    height: auto;
    opacity: 1;
    background-color: transparent;
  }
  .globalnav-wrap nav::before {
    z-index: 1020;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: url("/cream-and/assets/img/globalnav_top.png") repeat-x center top;
    background-size: contain;
  }
  .globalnav-wrap nav::after {
    z-index: 1030;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: url("/cream-and/assets/img/globalnav_bottom.png") repeat-x center top;
    background-size: contain;
  }
  .globalnav-wrap nav ul {
    flex-direction: row;
    position: relative;
    z-index: 1040;
  }
  .globalnav-wrap nav ul::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1%;
    width: clamp(140px, 18vw, 161px);
    height: 46px;
    background: url("/cream-and/assets/img/globalnav_sizzle.png") no-repeat right top;
    background-size: contain;
    pointer-events: none;
  }
  .globalnav-wrap nav ul > li {
    padding: 0 1px;
    width: auto;
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    font-weight: bold;
    text-align: center;
    transition: opacity 0.5s ease-out 0.3s;
    opacity: 0;
  }
  .ready .globalnav-wrap nav ul > li {
    opacity: 1;
  }
  .globalnav-wrap nav ul > li a {
    padding: clamp(25px, 3.2vw, 30px);
  }
  #home .globalnav-wrap nav ul > li a[href="/cream-and/"] {
    padding-left: 1.2em;
    background: url("/cream-and/assets/img/icon_spoon.svg") no-repeat left center;
    background-size: auto 35%;
  }
  #concept .globalnav-wrap nav ul > li a[href="/cream-and/concept/"] {
    padding-left: 1.2em;
    background: url("/cream-and/assets/img/icon_spoon.svg") no-repeat left center;
    background-size: auto 35%;
  }
  #products .globalnav-wrap nav ul > li a[href="/cream-and/products/"] {
    padding-left: 1.2em;
    background: url("/cream-and/assets/img/icon_spoon.svg") no-repeat left center;
    background-size: auto 35%;
  }
  #secrets .globalnav-wrap nav ul > li a[href="/cream-and/secrets/"] {
    padding-left: 1.2em;
    background: url("/cream-and/assets/img/icon_spoon.svg") no-repeat left center;
    background-size: auto 35%;
  }
  #history .globalnav-wrap nav ul > li a[href="/cream-and/history/"] {
    padding-left: 1.2em;
    background: url("/cream-and/assets/img/icon_spoon.svg") no-repeat left center;
    background-size: auto 35%;
  }
}

main {
  position: relative;
  display: block;
  width: 100%;
}
main > .inner {
  position: relative;
  margin: 0 auto;
  width: 95%;
  max-width: 1180px;
}
main img {
  width: 100%;
  height: auto;
}

footer {
  position: relative;
  padding: clamp(25px, 5.5vw, 50px);
  width: 100%;
  text-align: center;
  background-color: #ffffff;
}
footer .imgdesu {
  padding-bottom: 30px;
  font-size: 87.5%;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: left;
}
footer ul li {
  padding: 0 clamp(2px, 0.5vw, 10px);
  text-align: left;
  line-height: 1;
}
footer ul li a {
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
  color: #222222;
}
footer ul li a[target=_blank] {
  padding-left: 1.2em;
  background: url("/cream-and/assets/img/icon_blank.svg") no-repeat left center;
  background-size: auto 40%;
}
footer ul + p {
  padding: clamp(5px, 2vw, 15px) 20px 0 0;
  font-size: 87.5%;
  line-height: 1;
  text-align: left;
}
@media only screen and (min-width: 550px) {
  footer ul {
    text-align: center;
  }
  footer ul li {
    display: inline-block;
  }
  footer ul + p {
    padding-right: 0;
    text-align: center;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  line-height: 1.6;
  word-wrap: break-word;
  color: #222222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
@media print {
  body {
    width: 1180px;
  }
}
@media only screen and (min-width: 375px) {
  body {
    font-size: 1.4em;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
  }
}

body:not(#home) {
  background: #fff6e0;
}

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

::-moz-selection {
  background-color: rgba(65, 20, 8, 0.5);
}

::selection {
  background-color: rgba(65, 20, 8, 0.5);
}

::-moz-selection {
  background-color: rgba(65, 20, 8, 0.5);
}

a {
  text-decoration: underline;
  transition: color 0.3s ease;
  color: #3a5ab3;
  -webkit-tap-highlight-color: rgba(65, 20, 8, 0);
  cursor: pointer;
}
a:hover {
  color: rgba(58, 90, 179, 0.5);
}

.animate__delay-03s {
  animation-delay: 0.3s;
}

.animate__delay-05s {
  animation-delay: 0.5s;
}

.animate__delay-10s {
  animation-delay: 1s;
}

.animate__delay-15s {
  animation-delay: 1.5s;
}

.animate__delay-20s {
  animation-delay: 2s;
}

.animate__delay-25s {
  animation-delay: 2.5s;
}

.animate__delay-30s {
  animation-delay: 3s;
}

.animate__delay-35s {
  animation-delay: 3.5s;
}

.animate__delay-40s {
  animation-delay: 4s;
}

.animate__delay-45s {
  animation-delay: 4.5s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
}
.FI1,
.FIUp1,
.FIDown1,
.Pulse1,
.jackInTheBox1 {
  opacity: 0;
}
.FI1.animate__animated,
.FIUp1.animate__animated,
.FIDown1.animate__animated,
.Pulse1.animate__animated,
.jackInTheBox1.animate__animated {
  opacity: 1;
}

.hov {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.hov:hover {
  opacity: 0.6;
}

#pageTop {
  z-index: 1100;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 0px;
  padding: 0;
  width: 82px;
  height: 118px;
  background: url("/cream-and/assets/img/pagetop.png") no-repeat center center;
  background-size: cover;
  transition: opacity 0.3s ease-out, right 0.6s ease-out, width 0.6s ease-out, height 0.6s ease-out, transform 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
}
body.scroll #pageTop {
  opacity: 1;
  pointer-events: auto;
}
body.scroll #pageTop:hover {
  transform: scale(110%, 110%);
}

#pageTop.fixed {
  position: absolute;
  bottom: -20px;
}
@media only screen and (min-width: 550px) {
  #pageTop {
    right: 2vw;
    width: 103px;
    height: 147px;
  }
}
@media print, screen and (min-width: 768px) {
  #pageTop {
    width: 114px;
    height: 163px;
  }
}

div.products {
  width: 95%;
}
div.products ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}
div.products ul li {
  position: relative;
  width: 33.3333333333%;
}
div.products ul li a.cs_ {
  display: block;
  transition: transform 0.3s ease-out;
}
div.products ul li a.cs_ img {
  transform: scale(110%, 110%);
  transition: transform 0.3s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
div.products ul li a.cs_:hover {
  transform: scale(108%, 108%);
}
div.products ul li a.sticker_topseller {
  display: block;
  position: absolute;
  right: -15%;
  bottom: 10%;
  aspect-ratio: 1;
  width: 43%;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
div.products ul li a.sticker_topseller img {
  transition: transform 0.3s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
div.products ul li a.sticker_topseller:hover img {
  transform: scale(108%, 108%);
}
@media only screen and (min-width: 550px) {
  div.products ul li a.cs_ img {
    transform: scale(110%, 110%);
  }
}
@media print, screen and (min-width: 768px) {
  div.products {
    width: calc(85% - 15vw);
  }
}/*# sourceMappingURL=common.css.map */