@charset "UTF-8";

/*all----------------------------*/
html {
  font-size: 62.5%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display:none;
}

body {
  -webkit-tap-highlight-color: transparent;
}

.header_wrap {
  padding-top: 0 !important;
}

#header_txt_slider,
#header_img_slider {
  display: none;
}

#Wrap {
  width: auto;
  padding-top: 0 !important;
}

#FooterWrap {
  background: #fff;
}

header {
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

header.visible {
  opacity: 1;
  pointer-events: auto;
}

:root {
  --font_regular: "gill-sans-nova", "Noto Sans JP", sans-serif;
  --color_regular: #774631;
  --color_01: #CDE9EA;
  --color_02: #FFDDDE;
}

.LP_page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: .05em;
}

.LP_page {
  width: 100%;
  font-family: var(--font_regular);
  color: var(--color_regular);
  overflow-x: clip;
}

.LP_page input {
  display: none;
}

.LP_page_inner {
  position: relative;
  z-index: 1;
  background: var(--color_01);
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.LP_page.active {
  opacity: 1;
}

.LP_page a {
  display: block;
}

.LP_page a:hover {
  opacity: 1 !important;
}

.LP_page img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*----------------------------all*/

/*loading------------------------*/
body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

.loadingScreen {
  position: fixed;
  top: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  background: var(--color_01);
  animation: hidden 1s 5s forwards;
  pointer-events: none;
}

@keyframes hidden {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.loadingScreen .logo_peanutsCK_wrap::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - calc(2 * (60rem / 390)));
  height: calc(100% - calc(2 * (60rem / 390)));
  mask-image: url(../img/shape_heart.svg);
  mask-position: center center;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/shape_heart.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  background: linear-gradient(transparent 50%, var(--color_regular) 50%) top center / 100% calc(600 * (60rem / 390));
  content: "";
  animation: fill 1s 2.5s linear forwards;
}

@keyframes fill {
  0% {
    background-position: top center;
  }

  100% {
    background-position: bottom center;
  }
}

.loadingScreen .logo_peanutsCK_wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: calc(310 * (60rem / 390));
  height: calc(270 * (60rem / 390));
}

.logo_peanutsCK {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.loadingScreen .logo_peanutsCK {
  padding-bottom: calc(20 * (60rem / 390));
  scale: 0;
  animation: scale .8s 3.5s forwards;
}

.logo_peanutsCK span {
  display: block;
  font-size: 0;
}

.logo_peanutsCK .logo_peanuts {
  position: relative;
  margin: 0 auto;
}

.logo_peanutsCK .logo_peanuts::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  mask-image: url(../img/shape_footprint.svg);
  mask-position: center center;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/shape_footprint.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  background: var(--color_regular);
  content: "";
}

.loadingScreen .logo_peanutsCK .logo_peanuts {
  width: calc(148 * (60rem / 390));
  margin-bottom: calc(10 * (60rem / 390));
  padding-bottom: calc(35 * (60rem / 390));
}

.loadingScreen .logo_peanutsCK .logo_peanuts::before {
  width: calc(24 * (60rem / 390));
  height: calc(24 * (60rem / 390));
  background: #fff;
}

.loadingScreen .logo_peanutsCK .logo_cosmekitchen {
  position: relative;
  width: calc(166 * (60rem / 390));
}

.loadingScreen .logo_peanutsCK .logo_cosmekitchen img {
  opacity: 0;
}

.loadingScreen .logo_peanutsCK .logo_cosmekitchen::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: url(../img/logo_cosmekitchen.svg);
  mask-position: center center;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/logo_cosmekitchen.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  background: #fff;
  content: "";
}


@keyframes scale {
  0% {
    scale: 0;
  }

  100% {
    scale: 1;
  }
}

.loadingScreen .pathFrame {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  scale: -1 1;
}

.loadingScreen .pathFrame path {
  stroke-dasharray: 950;
  stroke-dashoffset: 950;
  stroke-width: calc(3 * (60rem / 390));
  fill: none;
  stroke: var(--color_regular);
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: line-stroke 2s .5s linear forwards;
}

@keyframes line-stroke {
  0% {
    stroke-dashoffset: 950;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/*------------------------loading*/
.teaser_wrap {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  padding: calc(60 * (60rem / 390)) 0;
  overflow: clip;
}

.teaser_inner {
  position: relative;
  width: 100%;
  padding-bottom: calc(60 * (60rem / 390));
}

.teaser_inner::after {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  margin-top: calc(-60 * (60rem / 390));
  background: linear-gradient(transparent, #BFD6D6 calc(150 * (60rem / 390)));
  content: "";
}

.teaser_wrap .main_ttl {
  position: relative;
  z-index: 2;
  margin-bottom: calc(40 * (60rem / 390));
  font-size: calc(30 * (60rem / 390));
  font-weight: 600;
  text-align: center;
}

.teaser_wrap .main_ttl::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, transparent, #BFD6D6 calc(50 * (60rem / 390)));
  content: "";
}

.teaser_wrap .main_ttl .logo_peanutsCK {
  margin-bottom: calc(20 * (60rem / 390));
}

.teaser_wrap .main_ttl .logo_peanuts {
  width: calc(98 * (60rem / 390));
  margin-bottom: calc(5 * (60rem / 390));
  padding-bottom: calc(23 * (60rem / 390));
}

.teaser_wrap .main_ttl .logo_peanuts::before {
  width: calc(16 * (60rem / 390));
  height: calc(16 * (60rem / 390));
}

.teaser_wrap .main_ttl .logo_cosmekitchen {
  width: calc(110 * (60rem / 390));
}

.teaser_wrap .schedule_list {
  position: relative;
  z-index: 1;
  padding-left: calc(50% - calc(15 * (60rem / 390)));
}

.teaser_wrap .schedule_list::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc(250 * (60rem / 390));
  height: calc(645 * (60rem / 390));
  margin-top: calc(-90 * (60rem / 390));
  background: url(../img/bg_teaser.jpg) center center / cover no-repeat;
  content: "";
}

.teaser_wrap .schedule_list::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc(220 * (60rem / 390));
  height: calc(645 * (60rem / 390));
  margin-top: calc(-90 * (60rem / 390));
  background: linear-gradient(to right, transparent, #BFD6D6 38%);
  content: "";
}

.teaser_wrap .txt_comingsoon {
  margin-bottom: calc(20 * (60rem / 390));
  font-size: calc(22 * (60rem / 390));
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.teaser_wrap .each_schedule:nth-of-type(n+2) {
  margin-top: calc(25 * (60rem / 390));
}

.teaser_wrap .each_schedule > dt {
  display: grid;
  place-items: center;
  width: calc(140 * (60rem / 390));
  height: calc(25 * (60rem / 390));
  margin: 0 auto calc(10 * (60rem / 390));
  border-radius: calc(100 * (60rem / 390));
  background: var(--color_regular);
  font-size: calc(14 * (60rem / 390));
  font-weight: 500;
  color: #fff;
}

.teaser_wrap .each_schedule .txt_date {
  width: fit-content;
  margin: 0 auto;
  font-size: calc(30 * (60rem / 390));
  font-weight: 500;
  letter-spacing: -.05em;
}

.teaser_wrap .each_schedule .txt_date.date_last {
  position: relative;
  margin-top: calc(5 * (60rem / 390));
  padding-left: calc(15 * (60rem / 390));
}

.teaser_wrap .each_schedule .txt_date.date_last::before {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 -50%;
  width: calc(10 * (60rem / 390));
  height: calc(1 * (60rem / 390));
  margin-bottom: calc(8 * (60rem / 390));
  background: var(--color_regular);
  content: "";
}

.teaser_wrap .each_schedule .txt_dot {
  letter-spacing: .05em;
}

.teaser_wrap .each_schedule .txt_year {
  font-size: calc(16 * (60rem / 390));
  letter-spacing: 0;
}

.teaser_wrap .each_schedule .txt_dayofweek {
  position: relative;
  z-index: 1;
  margin-left: calc(10 * (60rem / 390));
  font-size: calc(12 * (60rem / 390));
  text-align: center;
  color: #fff;
  vertical-align: .4em;
}

.teaser_wrap .each_schedule .txt_dayofweek::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(20 * (60rem / 390));
  height: calc(20 * (60rem / 390));
  border-radius: 50%;
  background-color: var(--color_regular);
  content: "";
}

.teaser_wrap .each_schedule .txt_time {
  margin-left: calc(8 * (60rem / 390));
  font-size: calc(17 * (60rem / 390));
  vertical-align: .2em;
}

.teaser_wrap .store_wrap {
  margin-top: calc(20 * (60rem / 390));
}

.teaser_wrap .store_wrap dt {
  width: fit-content;
  margin: 0 auto calc(6 * (60rem / 390));
  padding: calc(3 * (60rem / 390)) calc(12 * (60rem / 390));
  border: solid var(--color_regular) calc(1.5 * (60rem / 390));
  border-radius: calc(3 * (60rem / 390));
  font-size: calc(11 * (60rem / 390));
  font-weight: 700;
}

.teaser_wrap .store_wrap dd {
  font-size: calc(16 * (60rem / 390));
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.teaser_wrap .store_wrap dd sup {
  font-size: calc(8 * (60rem / 390));
}

.teaser_wrap .store_wrap dd .notes {
  display: block;
  margin-top: calc(12 * (60rem / 390));
  font-size: calc(10 * (60rem / 390));
  font-weight: 500;
}

.teaser_wrap .txt_copyright {
  width: calc(78 * (60rem / 390));
  margin: calc(40 * (60rem / 390)) auto 0;
}
 

/*shareボタン、shareテキスト---------------------------*/
@media screen and  (max-width:768px) {
#share {
  z-index: 10 !important;
}

.share-txt {
  display: none;
}

.only_pc {
  display: none;
}

}
/*---------------------------shareボタン、shareテキスト*/


/*PC------------------------------------------------------*/
@media screen and  (min-width:769px) {
  .only_sp {
    display: none !important;
  }

  .LP_page_inner {
    position: relative;
    z-index: 1;
    width: 60rem;
    min-height: 100vh;
    margin: -100vh auto 0;
    overflow: clip;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  }

  .fixed_area {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background: var(--color_01);
  }
  
  .fixed_left,
  .fixed_right {
    display: grid;
    place-items: center;
    width: calc((100% - 60rem) / 2);
    height: 100%;
  }

.fixed_left .logo_peanuts {
  width: 23rem;
  margin-bottom: 1rem;
  padding-bottom: 5.5rem;
}

.fixed_left .logo_peanuts::before {
  width: 3.6rem;
  height: 3.6rem;
}

.fixed_left .logo_cosmekitchen {
  width: 26rem;
}

.fixed_right .collaboration_ttl {
  font-size: 4rem;
  font-weight: 600;
}
}
/*------------------------------------------------------PC*/


/*レスポンシブ対応-------------------------------*/
@media screen and (max-width: 1600px) and (min-width: 769px) {
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 600));
  }
}
/*-------------------------------レスポンシブ＆タブレット対応*/