@charset "UTF-8";
/*
---------------------------------------------
style.scssはサイト構成に必要な最低デザインのみを読み込むこと。
---------------------------------------------
*/
/*
---------------------------------------------
ベースとなるcssファイルをまとめて読み込む設定
・リセットcss
・mixinの設定
---------------------------------------------
*/
/* reset.css */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
main,
header,
section,
article,
aside,
footer,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* list style none */
ul,
ol,
li {
  list-style: none;
}

/* image reset */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/*
---------------------------------------------
button
---------------------------------------------
*/
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/*
---------------------------------------------
aタグに対するリセット
---------------------------------------------
*/
a {
  text-decoration: none;
}

/* input style reset */
input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
---------------------------------------------
事前に読み込むscssファイル
---------------------------------------------
*/
/*
---------------------------------------------
色設定など、外部ファイル化できる設定値をここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
各要素の表示/非表示を操作する設定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
グラデーション設定を入れる場合はここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
テキストブランクの設定が必要であればここに記述する
※テキスト自体を1行で表示させつつ、SP版の時に横スクロールが発生するようなデザインの時に使用する
---------------------------------------------
*/
:root {
  --col-main: #8A384E;
  --col-sub: #F0BA53;
  --col-text: #fff;
}

/*
---------------------------------------------
基本的なサイトレイアウトを構成するcssを読み込むファイルです。
---------------------------------------------
*/
/*---------------------------

ヘッダー   

---------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
}
header .header_inner {
  background: var(--col-main);
  background-blend-mode: multiply;
  height: 13.68vw;
  position: relative;
}
header h1 img {
  width: 50.5vw;
  margin: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    height: 78px;
  }
  header h1 img {
    width: 260px;
  }
}

/*---------------------------

ナビ 

---------------------------*/
/* ハンバーガーメニュー */
#menu-button {
  position: absolute;
  right: 0;
  display: grid;
  place-items: center;
  place-content: center;
  width: min(13.68vw, 72px);
  height: min(13.68vw, 72px);
  border: none;
  cursor: pointer;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}

/* バー */
.bar, .bar::before, .bar::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s;
  border-radius: 10px;
}

.bar {
  display: grid;
}
.bar::before, .bar::after {
  content: "";
  grid-area: 1/1;
}
.bar::before {
  transform: translateY(-10px);
}
.bar::after {
  transform: translateY(10px);
}

/* オープン時のバー */
.menu-open #menu-button {
  border-radius: 50%;
  width: min(11.68vw, 64px);
  height: min(11.68vw, 64px);
  right: min(3vw, 15px);
}
.menu-open .bar {
  background-color: transparent;
}
.menu-open .bar::before {
  transform: rotate(45deg);
  background-color: #fff;
}
.menu-open .bar::after {
  transform: rotate(-45deg);
  background-color: #fff;
}

/* オーバーレイ */
#overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 997;
  transition: opacity 0.3s;
  /* オープン時のオーバーレイ */
}
.menu-open #overlay {
  visibility: visible;
  opacity: 1;
}

/* メニュー */
#menu {
  /*構成*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 998;
  overflow-y: auto;
  overflow: hidden;
  /*バックグランド*/
  background-color: #A13F72;
  background-image: url(./../img/kv/nav_bg.webp);
  /*サイズ・整形*/
  max-width: 402px;
  width: 100%;
  height: 100vh;
  max-height: 610px;
  aspect-ratio: 1/2;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
#menu div {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}
#menu div ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
#menu div ul li {
  width: 100%;
  /*文字設定*/
  font-family: "Noto Serif JP", serif;
  font-size: min(4.97vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.4px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-left: 10px;
}
#menu div ul li.nav_line {
  background-color: var(--col-sub);
  width: 100%;
  height: 2px;
}
#menu div ul li a {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #fff;
  line-height: 1.2;
}

/* オープン時のメニュー */
.menu-open #menu {
  transform: translateX(0);
}

.main {
  font-family: "Noto Serif JP";
  background: #D83D5F;
  overflow-y: hidden;
}

/*---------------------------

コンテンツ

---------------------------*/
/* キービジュアル */
.kv_wrap {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(./../img/kv/kvBg_sp.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 9.7vw 0 10vw;
}
@media screen and (min-width: 1024px) {
  .kv_wrap {
    background-image: url(./../img/kv/kvBg_pc.webp);
    background-size: cover;
    height: auto;
    gap: 4.2vw;
    padding: 2.7vw 0 5.9vw;
  }
}
.kv_wrap .kv_ttl_txt {
  position: relative;
  z-index: 3;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kv_wrap .kv_ttl_txt h2 img {
  width: 79.6vw;
}
@media screen and (min-width: 1024px) {
  .kv_wrap .kv_ttl_txt h2 img {
    width: 42vw;
  }
}
.kv_wrap .kvImg_main {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .kv_wrap .kvImg_main {
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100vw;
  }
}
.kv_wrap .kv_texttbox_1 {
  color: #fff;
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .kv_wrap .kv_texttbox_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    font-size: 1.3vw;
  }
}
.kv_wrap .kv_day {
  position: absolute;
  top: 49vw;
  left: 25vw;
  width: 50vw;
}
@media screen and (min-width: 1024px) {
  .kv_wrap .kv_day {
    position: unset;
    width: 29vw;
    transform: none;
  }
}
.kv_wrap .kv_label {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.6vw;
  height: auto;
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .kv_wrap .kv_label {
    width: 15.6vw;
  }
}
.kv_wrap .kv_bgImo {
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: auto;
}
.kv_wrap .effect {
  width: 95vw;
  bottom: 8.5vw;
  left: 2.2vw;
}

/* プロダクト */
.productArea {
  overflow: clip;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20vw;
  padding: 0 0 20vw 0;
  z-index: auto;
}
.productArea .light_bg {
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 0;
}
.productArea .chococroEfext01 {
  width: 82.8vw;
  top: 192vw;
  left: 6.2vw;
}
.productArea .chococroEfext02 {
  width: 94.8vw;
  top: 303vw;
  left: 2.5vw;
}
.productArea .smoothEfext01 {
  width: 91vw;
  top: 456.7vw;
}
.productArea .smoothEfext02 {
  width: 88.6vw;
  top: 596vw;
  left: 0;
}
.productArea .pafeEfext01 {
  width: 91vw;
  bottom: 205.4vw;
  right: 0.5vw;
}
.productArea .pafeEfext02 {
  width: 88.6vw;
  bottom: 73.9vw;
  left: 2vw;
}
@media screen and (min-width: 1024px) {
  .productArea {
    padding-bottom: 8.3vw;
    gap: 10.4vw;
  }
  .productArea .chococroEfext01 {
    width: 71.9vw;
    top: 57vw;
    left: 10.4vw;
  }
  .productArea .chococroEfext02 {
    width: 29.9vw;
    top: 96vw;
    left: 27.3vw;
  }
  .productArea .smoothEfext01 {
    width: 52.1vw;
    top: 143vw;
    left: 0;
  }
  .productArea .smoothEfext02 {
    width: 88.3vw;
    top: auto;
    bottom: 124vw;
    left: 1.3vw;
  }
  .productArea .pafeEfext01 {
    width: 52.1vw;
    bottom: 57.8vw;
    left: 5.7vw;
  }
  .productArea .pafeEfext02 {
    width: 84.4vw;
    bottom: 23.1vw;
    left: 5.2vw;
  }
}

.productBox {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product_head {
  width: 87vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .product_head {
    position: absolute;
    width: 52vw;
  }
}

.product_detail {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10vw;
}
@media screen and (min-width: 1024px) {
  .product_detail {
    gap: 0;
  }
}

.product_detailInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vw;
}
@media screen and (min-width: 1024px) {
  .product_detailInner {
    position: relative;
    gap: 0;
  }
}

.food_txtArea {
  position: relative;
  width: 87vw;
  height: 27vw;
  background-image: url(./../img/food_txtArea.webp);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3vw;
  line-height: 1.8;
  font-weight: 700;
  color: #F0BA53;
}
@media screen and (min-width: 1024px) {
  .food_txtArea {
    position: absolute;
    width: 36.5vw;
    height: 11.3vw;
    font-size: 1.3vw;
  }
}

.title_label {
  width: 87vw;
  margin-bottom: 10vw;
  font-family: "Noto Sans JP";
  color: #fff;
  font-size: 4vw;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .title_label {
    width: 100%;
    margin-bottom: 0;
    font-size: 1.3vw;
  }
}

.spotImg {
  width: 90vw;
  height: auto;
}

/*チョコクロ*/
#Product1 {
  padding-top: 20vw;
  z-index: 0;
}
#Product1 .chococroBg_imoTop {
  position: absolute;
  z-index: -2;
  top: -1.5px;
  width: 100vw;
}
#Product1 .boxImg {
  width: 74.6vw;
}
@media screen and (min-width: 1024px) {
  #Product1 {
    padding-top: 12.5vw;
  }
  #Product1 .product_head {
    top: 6.9vw;
    left: 6.4vw;
  }
  #Product1 .product_detailInner:nth-child(1) {
    align-items: end;
  }
  #Product1 .product_detailInner:nth-child(1) .food_txtArea {
    bottom: 4vw;
    left: 14.2vw;
  }
  #Product1 .product_detailInner:nth-child(2) {
    align-items: start;
  }
  #Product1 .product_detailInner:nth-child(2) .food_txtArea {
    bottom: 2vw;
    right: 16.2vw;
  }
  #Product1 .product_detailInner:nth-child(3) {
    align-items: end;
  }
  #Product1 .product_detailInner:nth-child(3) .food_txtArea {
    bottom: 50%;
    transform: translateY(50%);
    left: 8.9vw;
  }
  #Product1 .spotImg {
    width: 75.8vw;
    padding-left: 5.3vw;
  }
  #Product1 .boxImg {
    width: 52.1vw;
  }
}

.title_chococro {
  width: 87vw;
}

@media screen and (min-width: 1024px) {
  .chococro_mainImg {
    width: 52vw;
  }
}

/*スムージー*/
.smooth_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #F0B01B 20%, #F0B01B 80%, rgba(255, 255, 255, 0) 100%);
}

#Product2 .smoothBg_imoTop {
  position: absolute;
  z-index: -2;
  top: -1.5px;
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  #Product2 .smoothBg_imoTop {
    top: -15vw;
  }
}
@media screen and (min-width: 1024px) {
  #Product2 .product_head {
    top: 0;
    right: 7.3vw;
  }
  #Product2 .product_detailInner:nth-child(1) {
    align-items: start;
  }
  #Product2 .product_detailInner:nth-child(1) .food_txtArea {
    bottom: 7.6vw;
    right: 15vw;
  }
  #Product2 .product_detailInner:nth-child(2) {
    align-items: end;
  }
  #Product2 .product_detailInner:nth-child(2) .food_txtArea {
    bottom: 0;
    left: 13vw;
  }
  #Product2 .product_detailInner:nth-child(3) {
    align-items: start;
  }
  #Product2 .product_detailInner:nth-child(3) .food_txtArea {
    bottom: 50%;
    transform: translateY(50%);
    left: 8.9vw;
  }
  #Product2 .spotImg {
    width: 71vw;
    padding-right: 5.3vw;
  }
  #Product2 .boxImg {
    width: 52.1vw;
  }
}

.title_smooth {
  width: 87vw;
}

@media screen and (min-width: 1024px) {
  .smooth_mainImg {
    width: 52vw;
  }
}

.smoothBg_imoTop {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100vw;
}

/*パフェ*/
.pafe_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(240, 176, 27, 0) 0%, rgba(240, 176, 27, 0.8) 35%, #F0B01B 45%, rgba(185, 101, 141, 0.9) 55%, rgba(185, 101, 141, 0) 100%);
}

@media screen and (min-width: 1024px) {
  #Product3 .product_head {
    top: 0;
    right: 7.3vw;
  }
  #Product3 .product_detailInner:nth-child(1) {
    align-items: start;
  }
  #Product3 .product_detailInner:nth-child(1) .food_txtArea {
    top: 26.6vw;
    right: 15.1vw;
  }
  #Product3 .product_detailInner:nth-child(2) {
    align-items: end;
  }
  #Product3 .product_detailInner:nth-child(2) .food_txtArea {
    bottom: 0;
    left: 15vw;
  }
  #Product3 .spotImg {
    width: 71vw;
    padding-right: 5.3vw;
  }
}

@media screen and (min-width: 1024px) {
  .pafe_mainImg {
    width: 46.9vw;
    margin-left: 3.9vw;
  }
}

.pafeBg_imoTop {
  position: absolute;
  top: -21vw;
  left: 0;
  z-index: -1;
  width: 40vw;
}
@media screen and (min-width: 1024px) {
  .pafeBg_imoTop {
    top: -2vw;
    width: 100vw;
  }
}

.effect {
  position: absolute;
  mix-blend-mode: screen;
}

.bg_circle {
  position: absolute;
  top: 0;
  z-index: 0;
}
.bg_circle img {
  width: 100vw;
}

/*レスポンシブ非表示*/
.md {
  display: block;
}
@media screen and (min-width: 1024px) {
  .md {
    display: none;
  }
}

.nav_title img, .kv_ttl_txt img, .product01_head img {
  filter: drop-shadow(0px 0px 12px rgba(152, 95, 71, 0.2)) drop-shadow(0px 0px 3px #fff);
}

/* フッター */
footer {
  font-family: "Noto Sans JP";
  padding: 40px 30px;
  color: var(--col-sub);
  background: var(--col-main);
  position: relative;
}
footer div {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.48px;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
  position: relative;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
}
footer ul li {
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--col-sub);
  position: relative;
}
footer ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
footer ul li a img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer ul li :nth-child(2) img {
  width: 18px;
}
footer p {
  display: table;
  color: var(--col-text);
  margin: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

/*---------------------------

ボタン　ホバー

---------------------------*/
a:hover {
  opacity: 0.7;
}

/*---------------------------

アニメーション

---------------------------*/
.op0 {
  opacity: 0;
}

/* ポップアップ */
.anim_box.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}
.anim_box.popup.is-animated.txtbox2 {
  animation-delay: 1.25s;
}

.anim02_box.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}
.anim02_box.popup.is-animated.txtbox2 {
  animation-delay: 0.5s;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/* フェードイン */
.anim_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0;
}
.anim_box.fadein.is-animated.kv_ttl {
  animation-delay: 0.75s;
}
.anim_box.fadein.is-animated.kv_catch {
  animation-delay: 1.5s;
}

.anim02_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}

.anim03_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードアップ */
.anim_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}

.anim02_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}

.anim03_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes fadeup {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */