@charset "UTF-8";


/*==================================
sweets＆bake
==================================*/
.section--sweets {
  background-color: var(--primary-lightgray);
}

.pc__mainimg {
  height: 100vh;
  /* 画面の高さ100% */
  overflow: hidden;
}

.pc__mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像をはみ出さずに拡大・トリミングして表示 */
}

.section--sweets .title__box {
  padding-top: 88px;
  width: 168px;
  height: auto;
  margin: 0 auto;
}

.section--sweets .section__title {
  text-align: center;
  color: #232321;
  font-size: 3.6rem;
  line-height: 1;
}

.section--sweets .section__title::before {
  content: '';
  display: block;
  width: 0.5px;
  height: 49px;
  background-color: var(--primary-darkgray);
  margin-left: 50%;
}

.section--sweets .section__subtitle {
  padding: 24px 14%;
  font-size: 1.2rem;
  letter-spacing: 0.18px;
}

.section--sweets .topic {
  padding: 0 9% 66px;
}

.section--sweets .topic__img {
  width: 310px;
  height: auto;
}

.section--sweets .topic__title {
  color: #232321;
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 20px;
  text-align: center;
}

.section--sweets .topic__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 20px 2% 0;
  text-align: justify;
}


/* pc */
@media screen and (min-width:769px) {
  .sweets__contents {
    margin: 0 auto;
  }

  .section--sweets .topic__img {
    width: 420px;
    height: auto;
  }
}

.section--sweets .section__subtitle {
  font-size: 1.4rem;
}

.section--sweets .topic__txt {
  line-height: 28px;
  /* 175% */
  letter-spacing: 1.36px;
  margin-right: 8%;
  margin-left: 6%;
}

/* フェードアップアニメーション */
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp {
  opacity: 0;
}

.fadeUp.animated {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}