@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
.fv {
  position: relative;
}
.fv::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../img/top/mv-bg-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
}
.fv .fv-text {
  position: absolute;
  width: 120%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.fv .fv-img {
  padding-top: 40%;
  padding-bottom: 20%;
}

.shake-left-right {
  display: block;
  animation: shake 1.5s linear 2s;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20%, 40%, 60% {
    transform: rotate(-10deg);
  }
  30%, 50%, 70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
}
.jello-vertical {
  display: block;
  animation: jello-vertical 1s linear 2s both;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/*====================================
intro
====================================*/
.sec-intro {
  background-color: #FFFBD4;
  padding-top: 20px;
}
.sec-intro .intro-img:first-of-type {
  padding-left: 30px;
  margin-bottom: 30px;
}
.sec-intro .intro-img:last-child {
  padding-right: 30px;
}
.sec-intro .intro-text {
  padding-left: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}
.sec-intro .intro-text span {
  border-bottom: 2px dotted #03B200;
  display: inline-block;
  padding: 0.35em 0;
}

/* =================================================
こだわり
==================================================*/
.sec-kodawari {
  background-color: #03B200;
}
.sec-kodawari::after {
  background-image: url(../../img/common/bg/bg-object-zigzag-white.svg);
}
.sec-kodawari .sec-ttl::after {
  content: "";
  width: calc(100% + 60px);
  height: 1px;
  display: block;
  background-color: #FFFFFF;
  margin-top: 1em;
  transform: translateX(-30px);
}
.sec-kodawari .wrapper {
  padding: 0 45px;
}
.sec-kodawari .kodawari-item {
  margin-top: 80px;
}
.sec-kodawari .kodawari-item:last-of-type {
  margin-bottom: 40px;
}
.sec-kodawari .kodawari-item .kodawari-img {
  position: relative;
}
.sec-kodawari .kodawari-item .kodawari-img span {
  position: absolute;
  top: -50px;
  left: -20px;
}
.sec-kodawari .kodawari-item .kodawari-img figure {
  border-radius: 10px;
  overflow: hidden;
}
.sec-kodawari .kodawari-item:nth-child(3) .kodawari-img span {
  left: inherit;
  right: -20px;
}
.sec-kodawari .kodawari-item .kodawari-text {
  padding-top: 1em;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* =================================================
商品一覧
==================================================*/
.sec-product .product-contents {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.sec-product .product-contents .product-cat {
  position: relative;
  background-color: #03B200;
  color: #FFFFFF;
  display: inline-block;
  padding: 0.2em 2em;
  margin: 0 auto 1em;
  border-radius: 20px;
}
.sec-product .product-contents .product-cat::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #03B200;
  border-bottom: 0;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.sec-product .product-contents .product-cat.cat-chara {
  background-color: #0C6EC9;
}
.sec-product .product-contents .product-cat.cat-chara::after {
  border-top: 8px solid #0C6EC9;
}
.sec-product .product-contents .product-cat.cat-season {
  background-color: #E98C02;
}
.sec-product .product-contents .product-cat.cat-season::after {
  border-top: 8px solid #E98C02;
}
.sec-product .product-contents .product-list {
  width: 55%;
  margin: 0 auto;
}

/* =================================================
使い方
==================================================*/
.sec-howto {
  border-top: 10px solid #03B200;
  background-image: url(../../img/common/bg/bg-math.png);
  padding-top: 0;
}
.sec-howto .sec-ttl {
  position: relative;
  width: 100%;
  max-width: 400px;
  top: -10px;
  margin-bottom: 50px;
}
.sec-howto .howto-item {
  position: relative;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
.sec-howto .howto-item span {
  position: absolute;
  width: 40%;
  top: -20px;
  left: -10px;
}
.sec-howto .howto-item:last-of-type span {
  left: initial;
  right: -10px;
}

.howto-point {
  --badge-color: #fe9903;
  background-color: #fefbd4;
  position: relative;
  padding: 40px 0 30%;
}
.howto-point .wrapper {
  overflow: hidden;
}
.howto-point::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url(../../img/common/bg/bg-object-zigzag-cream.svg);
  position: absolute;
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 100%;
  background-position: bottom;
}
.howto-point .howto-point-title {
  color: #ff585e;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.howto-point .howto-point-title p {
  font-size: 1.5em;
}
.howto-point .howto-point-title span {
  font-size: 1em;
}
.howto-point .howto-point-content {
  position: relative;
}
.howto-point .howto-point-content-inner {
  background-color: white;
  color: #03b007;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin: 3em auto;
  align-items: center;
}
.howto-point .second .howto-point-content-inner {
  flex-direction: row-reverse;
}
.howto-point .howto-point-content .howto-point-content-message {
  flex: 5 1 0;
  font-size: 1.4em;
  line-height: 1.2;
  color: #03b007;
  font-weight: bold;
  text-align: center;
  -webkit-transform: rotate(-5deg) translateX(10%);
  -moz-transform: rotate(-5deg) translateX(10%);
  rotation: -5deg
}
.howto-point .howto-point-content .howto-point-content-img {
  flex: 5 1 0;
}
.howto-point .howto-point-content .howto-point-content-img img {
  flex: 5 1 0;
  padding-top: 2em;
}
.howto-point .howto-point-content.second .howto-point-content-message {
  flex: 7 1 0;
  padding: 1.7em 0;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  rotation: -5deg
}
.howto-point .howto-point-content.second .howto-point-content-img {
  flex: 3 1 0;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  rotation: -5deg;
}
.howto-point .howto-point-content.second .howto-point-content-img img {
  padding: 1em;
  padding-left: 1.5em;
}
.howto-point .badge {
  position: absolute;
  top: -0.3em;
  left: -0.3em;
} 
.howto-point .second .badge {
  left: auto;
  right: -0.3em;
}
.howto-point .badge p {
  font-size: 1.5em;
} 
.howto-point .howto-point-remarks {
  color: #f99800;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: bold;
}

/* =================================================
動画
==================================================*/
.sec-movie {
  background-color: #03B200;
  padding-bottom: 30%;
}
.sec-movie .wrapper {
  padding: 0 45px;
}
.sec-movie .wrapper .movie-item {
  margin-bottom: 50px;
}
.sec-movie .wrapper .movie-item a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.sec-movie .wrapper .movie-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.sec-movie .wrapper .movie-img::before {
  content: url(../../img/common/icon/icon-play.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* =================================================
お客様の声
==================================================*/
.sec-voice {
  background-color: #FFFBD4;
  padding-top: 10px;
}
.sec-voice .sec-ttl {
  width: 80%;
  max-width: 380px;
}
.sec-voice .voice-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  /*偶数のスタイル*/
}
.sec-voice .voice-item .voice-img {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
}
.sec-voice .voice-item .voice-text {
  background-color: #FFFFFF;
  padding: 1em 1em 1em 2.5em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #F4EEAC;
  width: 85%;
}
.sec-voice .voice-item:nth-child(even) {
  justify-content: flex-start;
}
.sec-voice .voice-item:nth-child(even) .voice-img {
  bottom: -15px;
  left: initial;
  right: 0;
}
.sec-voice .voice-item:nth-child(even) .voice-text {
  padding: 1em 2.5em 1em 1em;
}

/* =================================================
お知らせ
==================================================*/
.sec-news {
  background-image: url(../../img/common/bg/bg-dotted.png);
  padding: 30px;
}
.sec-news.wrapper {
  max-width: none;
}
.sec-news .sec-ttl {
  margin-left: 0;
  margin-bottom: 1em;
  width: 30%;
}
.sec-news .news-inner {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 1.5em 1em;
  font-family: sans-serif;
  font-size: 0.875rem;
}
.sec-news .news-inner .news-item:not(:last-of-type) {
  margin-bottom: 1em;
}
.sec-news .news-inner .news-item .news-label {
  background-color: #0C6EC9;
  display: inline-block;
  color: #FFFFFF;
  line-height: 24px;
  padding: 0 1em;
  border-radius: 5px;
  font-size: 0.75em;
  margin-bottom: 0.5em;
}

/* =================================================
受賞
==================================================*/
.sec-award .award-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sec-award .award-item .award-img {
  width: 40%;
  margin: 0 auto 1em;
}
.sec-award .award-item .award-text {
  font-family: sans-serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}
.sec-award .award-item a {
  text-decoration: none;
}

/* =================================================

コンテンツ幅768以下の表示はここからです

==================================================*/
@media screen and (max-width: 768px) {
  .fv .fv-text {
    width: 100%;
  }
}
.sec-about .about-ttl {
  color: #0C6EC9;
  font-weight: 600;
  font-size: 1.25rem;
  border-bottom: 2px solid #0C6EC9;
  padding: 0.75em 0;
  margin-bottom: 1em;
  text-align: center;
}
.sec-about .about-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sec-about .about-item .about-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.sec-about::after {
  background-image: url(../../img/common/bg/bg-object-zigzag-cream.svg);
}

/*================================
制作過程
================================*/
.sec-process {
  background-color: #FFFBD4;
}
.sec-process .process-item {
  counter-increment: title;
  display: flex;
  align-items: center;
  gap: 30px;
}
.sec-process .process-item:nth-child(even) {
  flex-direction: row-reverse;
}
.sec-process .process-item .process-img {
  width: 170px;
}
.sec-process .process-item .process-text {
  flex: 1;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  position: relative;
}
.sec-process .process-item .process-text::before {
  content: counter(title);
  font-size: 1rem;
  color: #FFFFFF;
  background-color: #FF5A5A;
  display: block;
  font-size: 1rem;
  line-height: 20px;
  margin-bottom: 5px;
}
.sec-process .process-item .process-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #FF5A5A;
  border-left: 0;
  top: 0;
  left: -10px;
}
.sec-process .process-item:nth-child(even) .process-text::after {
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #FF5A5A;
  border-right: 0;
  top: 0;
  left: initial;
  right: -10px;
}
.sec-process .factory-list {
  display: flex;
}
.sec-process .factory-list .factory-item {
  width: 30%;
  margin-right: 10px;
}
.sec-process .process-list + p {
  margin: 2em 0;
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}

/*================================
誕生秘話
================================*/
.sec-story {
  background-color: #03B200;
  padding-bottom: 30%;
}
.sec-story::after {
  background-image: url(../../img/common/bg/bg-object-circle-white.svg);
}
.sec-story .wrapper {
  padding: 0 45px;
}
.sec-story .story-img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.sec-story p {
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-top: 2em;
}

/*================================
歩み
================================*/
.sec-history {
  padding-top: 0;
}
.sec-history .history-contents:last-child .history-item:last-child {
  padding-bottom: 0;
}
.sec-history .history-yeay {
  background-color: #0C6EC9;
  border-radius: 0 20px 20px 0;
  padding: 0.25em 30px;
  width: calc(100% - 30px);
  color: #FFFFFF;
  font-family: sans-serif;
  font-size: 1rem;
}
.sec-history .history-item {
  border-left: 1px dashed #A8A8A8;
  position: relative;
  padding-top: 15px;
}
.sec-history .history-item:not(:last-child) {
  padding-bottom: 40px;
}
.sec-history .history-item:last-child {
  padding-bottom: 50px;
}
.sec-history .history-item h5 {
  font-weight: bold;
  color: #FF5A5A;
  font-size: 1.125rem; /*18px*/
  display: flex;
  margin: 0 0 10px -10px;
}
.sec-history .history-item h5::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #0C6EC9;
  display: block;
  margin-right: 10px;
  margin-top: 5px;
}
.sec-history .history-item .history-img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 20px;
  margin-bottom: 1em;
}
.sec-history .history-item .history-text {
  font-family: sans-serif;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-left: 20px;
}

/* =================================================

コンテンツ幅768以下の表示はここからです

==================================================*/
#movie .sec-movie {
  background-color: transparent;
}
#movie .sec-movie .movie-item a {
  color: #333333;
}

#voice .sec-voice-detail:not(:last-of-type) {
  margin-bottom: 50px;
}
#voice .voice-item {
  /*偶数のスタイル*/
}
#voice .voice-item:not(:last-child) {
  margin-bottom: 30px;
}
#voice .voice-item .voice-item-ttl {
  display: flex;
  align-items: center;
}
#voice .voice-item .voice-item-ttl .voice-img {
  width: 100px;
}
#voice .voice-item .voice-item-ttl p {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  padding-left: 0.5em;
}
#voice .voice-item .voice-item-ttl p::before, #voice .voice-item .voice-item-ttl p::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #FF5A5A;
  display: block;
}
#voice .voice-item .voice-item-ttl p::before {
  transform: rotate(-15deg);
  margin-bottom: 10px;
}
#voice .voice-item .voice-item-ttl p::after {
  transform: rotate(15deg);
  margin-top: 10px;
}
#voice .voice-item:nth-child(even) .voice-item-ttl {
  flex-direction: row-reverse;
}
#voice .voice-item:nth-child(even) .voice-item-ttl p {
  align-items: flex-end;
}
#voice .voice-item:nth-child(even) .voice-item-ttl p::before {
  transform: rotate(15deg);
}
#voice .voice-item:nth-child(even) .voice-item-ttl p::after {
  transform: rotate(-15deg);
}
#voice .voice-item .voice-text {
  background-color: #FFFBD4;
  padding: 1em;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 5px;
  margin-top: 10px;
}

#howto .sec-howto {
  border-top: none;
  padding-top: 60px;
  padding-bottom: 40px;
}
/* #howto .sec-howto::after {
  background-image: url(../../img/common/bg/bg-object-circle-green.svg);
} */
#howto .sec-howto-movie {
  border-radius: 0 0 10px 10px;
  padding-top: 20px;
  padding-bottom: 80px;
}
#howto .howto-point::after {
  background-image: url(../../img/common/bg/bg-object-circle-green.svg);
}

#product .wrapper {
  padding: 50px 30px 10px;
}
#product .product-cat {
  margin-bottom: 2em;
}
#product .product-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em 6%;
}
#product .product-item {
  width: 47%;
  margin-bottom: 10px;
}
#product .product-item a {
  text-decoration: none;
}
#product .product-item .product-img {
  padding: 1em;
  background-color: #F5F5F5;
  transition: all 0.5s;
}
#product .product-item .product-img:hover {
  padding: 0.5em;
  transition: all 0.5s;
}
#product .product-item .product-text {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 5px;
  font-family: sans-serif;
}

.page-link {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  gap: 6px;
  margin-bottom: 50px;
}
.page-link .link-item {
  padding: 0.75em;
  border-radius: 5px;
}
.page-link .link-item a {
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-link .link-item a::after {
  content: "";
  right: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(135deg);
  margin-left: 0.5em;
}
.page-link .link-item.cat-sta {
  width: 100%;
  background-color: #03B200;
}
.page-link .link-item.cat-chara {
  width: calc(50% - 3px);
  background-color: #0C6EC9;
}
.page-link .link-item.cat-season {
  width: calc(50% - 3px);
  background-color: #E98C02;
}

#shop .market-list-item:not(:last-of-type) {
  margin-bottom: 30px;
}
#shop .market-name {
  color: #03B200;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 5px 5px;
  border-bottom: 1px solid #03B200;
}
#shop .market-name::before {
  content: "";
  background-image: url(../../img/common/icon/icon-shop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
}
#shop .shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
#shop .shop-list-name {
  width: 48%;
  border-bottom: 1px dotted #A8A8A8;
  padding: 0.25em 0.5em;
  font-size: 0.75rem;
  font-family: sans-serif;
  font-weight: 700;
}
#shop .market-list + p {
  margin-top: 2em;
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */