@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;800;900&display=swap");
/* Mixin */
/* Module */
/*==========================

TOPのMV

==========================*/
.top-kv {
  background-image: url(../../img/top/top-kv_pc.png?1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 48%;
  position: relative;
}

.top-kv-ttl {
  position: absolute;
  width: 80%;
  max-width: 1500px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: kvTtl 1s linear 8s both;
}

@keyframes kvTtl {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.jello-vertical {
  display: block;
  animation: jello-vertical 1s linear 8s 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);
  }
}
.top-kv-text {
  position: absolute;
  width: 10%;
  top: 6%;
  right: 5%;
  opacity: 0;
  animation: kvText 2s linear 5s both;
}

@keyframes kvText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-kv-award {
  position: absolute;
  width: 35%;
  bottom: 0;
  right: 5%;
  opacity: 0;
  animation: kvAward 0.6s linear 10s both;
}

@keyframes kvAward {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =================================================

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

==================================================*/
@media screen and (max-width: 767px) {
  .top-kv {
    background-image: url(../../img/top/top-kv_sp.png?1);
    padding-top: 160%;
  }
  .top-kv-ttl {
    width: 95%;
    max-width: 600px;
    top: 2%;
  }
  .top-kv-text {
    width: 50%;
    top: 28%;
    right: 50%;
    transform: translateX(50%);
    animation: kvText 2s linear 5s both;
  }
  .top-kv-award {
    position: absolute;
    width: 80%;
    bottom: 0;
    right: initial;
    left: 50%;
  }
  @keyframes kvAward {
    0% {
      opacity: 0;
      transform: translate(-50%, 100px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
}
/*==========================

下層用のMV

==========================*/
.sub-kv {
  background-image: url(../../img/common/sub/sub-kv.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom: 3px solid #000000;
}
.sub-kv .wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sub-kv .wrapper::before {
  content: "";
  background-image: url(../../img/common/sub/sub-kv-dog.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  display: block;
  width: 120px;
  height: 120px;
}
.sub-kv .wrapper::after {
  content: "";
  background-image: url(../../img/common/sub/sub-kv-kakeru-about.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  display: block;
  width: 150px;
  height: 150px;
}
.sub-kv .page-ttl {
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  padding: 100px 0;
}

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

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

==================================================*/
@media screen and (max-width: 767px) {
  .sub-kv {
    border-width: 2px;
  }
  .sub-kv .wrapper {
    display: block;
  }
  .sub-kv .wrapper::before {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
  }
  .sub-kv .wrapper::after {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 20px;
    bottom: 0;
  }
  .sub-kv .page-ttl {
    padding: 60px 0 70px;
  }
}
/* =================================================
キャラクター紹介 .sec-profile 
==================================================*/
.profile {
  background-color: #CE6F00;
}
.profile .wrapper {
  padding-top: 0;
}
.profile .wrapper-inner {
  width: min(100%, 800px);
  margin: 0 auto;
  background-color: #FFFFFF;
  background-image: url(../../img/common/bg/bg-note.png);
  border-radius: 30px;
  border: 3px solid #000000;
  padding: 0 20px 6vw;
  text-align: center;
  position: relative;
  opacity: 0;
}
.profile .wrapper-inner .sec-ttl {
  margin: -3% 0 3%;
}
.profile .wrapper-inner .sec-ttl::before {
  display: none;
}
.profile-img {
  width: 40%;
  margin: 0 auto;
}
.profile-text {
  color: #C11A1A;
  font-weight: 700;
  padding: 1.5rem 0;
}
.profile-table {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.profile-table dt {
  width: 5em;
  border: 1px solid #9DC0BA;
  border-right: none;
  background: #EDEDED;
  color: #559C90;
  padding: 0.5rem;
}
.profile-table dt:not(:last-of-type) {
  border-bottom: none;
}
.profile-table dd {
  width: calc(100% - 5em);
  border: 1px solid #9DC0BA;
  text-align: left;
  padding: 0.5rem;
}
.profile-table dd:not(:last-of-type) {
  border-bottom: none;
}

/* =================================================
おいしさのひみつ .know 
==================================================*/
/* =================================================
のりカケルくんを知る .about 
==================================================*/
.about {
  position: relative;
  background: url(../../img/common/bg/bg-dotto-red.png), repeat, linear-gradient(180deg, #FFEAA1 0%, #FFC87E 100%);
  padding-top: 10%;
}
.about::before {
  content: "";
  background-image: url(../../img/common/bg/bg-know-object.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 55.1724%;
  top: -1px;
}
.about .wrapper {
  width: 100%;
  background-image: url(../../img/top/about-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.about .sec-ttl::before {
  background-image: url(../../img/common/ttl-icon/ttl-icon02.png);
}
.about-ttl {
  width: max(50%, 600px);
  margin: 0 auto 40px;
}
.about-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
.about-list-item {
  opacity: 0;
}
.about-list-item:nth-of-type(odd) {
  padding-top: 40px;
}

/* =================================================
商品ラインナップ .product 
==================================================*/
.product {
  background-color: #B1D146;
  background-image: url(../../img/top/product-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.product .slick-list {
  height: 400px;
}
.product .sec-ttl::before {
  background-image: url(../../img/common/ttl-icon/ttl-icon03.png);
}
.product-list-item {
  width: 250px;
  margin: 0 10px;
  position: relative;
  top: 30px;
  transition: all 1s;
}
.product-list-item .balloon {
  display: none;
  transition: all 1s;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.product-list-item:hover {
  top: 0;
  transition: all 1s;
}
.product-list-item:hover .balloon {
  display: inline-block;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  padding: 1em;
  border: 2px solid #000000;
  background-color: #FFFFFF;
}
.product-list-item:hover .balloon::before, .product-list-item:hover .balloon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
}
.product-list-item:hover .balloon::before {
  top: -35px;
  border: 15px solid transparent; /*透明指定は先に記述*/
  border-bottom: 20px solid #000000; /*後に記述*/
}
.product-list-item:hover .balloon::after {
  top: -32px;
  border: 15px solid transparent; /*透明指定は先に記述*/
  border-bottom: 20px solid #FFFFFF; /*後に記述*/
}
.product-list-item a:hover {
  opacity: 1;
}

/* =================================================
レシピ .recipe 
==================================================*/
.recipe {
  background-image: url(../../img/top/recipe-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.recipe picture {
  display: block;
  margin-bottom: 5vw;
}

/* =================================================
ギャラリー .sec-movie 
==================================================*/
.movie {
  background-image: url(../../img/common/bg/bg-dotto.png);
  background-color: #FFFFFF;
}
.movie .wrapper {
  padding-bottom: 80px;
}
.movie .wrapper .sec-ttl::before {
  background-image: url(../../img/common/ttl-icon/ttl-icon04.png);
}
.movie-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.movie-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.movie-img {
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.movie-img::before {
  content: url(../../img/common/icon/icon-play.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.movie-text {
  flex: 1;
  font-weight: 600;
}
.movie-text-time {
  color: #FF9900;
  border: 1px solid #FF9900;
  padding: 0 1.5rem;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
}

/* =================================================
スペシャルコンテンツ .sec-special 
==================================================*/
.special {
  background-color: #FFC938;
  padding: 3vw 0 5vw;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  position: relative;
}
.special::before {
  content: "";
  background-image: url(../../img/common/bg/bg-special-object.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom -1px;
  position: absolute;
  width: 100%;
  height: 90px;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.special .sec-ttl {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.special .sec-ttl img {
  width: 100%;
}
.special .sec-ttl::before {
  display: none;
}
.special-list {
  display: flex;
  justify-content: center;
  gap: 3%;
}

/* =================================================
お知らせ .sec-news 
==================================================*/
.news {
  background-image: url(../../img/common/bg/bg-dotto.png);
  background-color: #F4F4F4;
  padding: 50px 0;
}
.news .wrapper {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 10px;
  max-width: 700px;
  padding: 30px 50px;
}
.news .wrapper .sec-ttl {
  width: 20%;
  font-family: "Mochiy Pop One", sans-serif;
  color: #FF9900;
  font-size: 1.25rem; /*20px*/
  align-items: flex-start;
}
.news .wrapper .sec-ttl::before {
  display: none;
}
.news-list {
  flex: 1;
}
.news-list-item {
  display: flex;
  align-items: flex-start;
}
.news-list-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.news-list-item-cat {
  background-color: #0D982C;
  color: #FFFFFF;
  display: inline-block;
  width: 8em;
  text-align: center;
  border-radius: 5px;
  margin-right: 1em;
}
.news-list-item a {
  text-decoration: underline;
}

/* =================================================
インスタグラム .sec-instagram 
==================================================*/
.instagram {
  background-image: url(../../img/top/instagram-kakeru.png);
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  padding-bottom: 17%;
  z-index: -1;
}
.instagram .sec-ttl::before {
  display: none;
}
.instagram .sec-ttl img {
  width: max(40%, 350px);
}
.instagram-list {
  margin-bottom: 4vw;
}
.instagram-list-item {
  margin: 0 10px;
}
.instagram-link {
  width: 90px;
  margin: 50px auto 0;
}

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

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

==================================================*/
@media screen and (max-width: 767px) {
  /* =================================================
  キャラクター紹介 .sec-profile 
  ==================================================*/
  .profile .wrapper-inner {
    border-radius: 20px;
    border-width: 2px;
  }
  .profile .wrapper-inner .sec-ttl {
    margin-top: -6%;
  }
  .profile-img {
    width: 70%;
  }
  .profile-text {
    padding: 1.5rem 0;
  }
  .profile-table {
    width: 100%;
    margin-bottom: 2rem;
  }
  /* =================================================
  おいしさのひみつ .know 
  ==================================================*/
  .know-bg .wrapper {
    flex-direction: column;
  }
  .know-bg .wrapper::before {
    background-image: url(../../img/top/know-bg_sp.png);
    width: 100%;
    padding-top: 117%;
  }
  .know-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: -100px;
    padding: 0 20px;
  }
  .know-list-item {
    width: 80%;
  }
  .know-list-item:nth-child(2) {
    left: -10%;
  }
  .know-list-item:nth-child(3) {
    left: -20%;
  }
  .know .btn {
    position: relative;
    width: 90%;
    margin: 20px auto 0;
  }
  /* =================================================
  のりカケルくんを知る .about 
  ==================================================*/
  .about .wrapper {
    background-image: url(../../img/top/about-bg_sp.png);
    background-position: center top 100px;
  }
  .about-ttl {
    width: 100%;
  }
  .about-list {
    gap: 0;
  }
  .about-list-item:nth-of-type(odd) {
    padding-top: 42%;
  }
  .about-list-item:nth-of-type(1) {
    margin-right: -20%;
  }
  .about-list-item:nth-of-type(3) {
    margin-left: -20%;
  }
  /* =================================================
  商品ラインナップ .product 
  ==================================================*/
  .product .slick-list {
    height: auto;
    margin-bottom: 40px;
  }
  .product-list-item {
    top: 0px;
  }
  .product-list-item .balloon {
    display: none;
  }
  .product-list-item:hover .balloon {
    display: none;
  }
  /* =================================================
  ギャラリー .sec-movie 
  ==================================================*/
  .movie-item {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .movie-item:nth-child(odd) {
    flex-direction: column;
  }
  .movie-img {
    width: 100%;
  }
  .movie-text {
    text-align: center;
  }
  /* =================================================
  スペシャルコンテンツ .sec-special 
  ==================================================*/
  .special {
    border-width: 2px;
    padding-bottom: 8vw;
  }
  .special::before {
    background-image: url(../../img/common/bg/bg-special-object_sp.svg);
    height: 15%;
    top: -15%;
  }
  .special .sec-ttl {
    top: -10%;
    width: 90%;
  }
  .special-list {
    flex-direction: column;
    gap: 20px;
  }
  .special-list-item {
    width: 80%;
    margin: 0 auto;
  }
  /* =================================================
  お知らせ .sec-news 
  ==================================================*/
  .news {
    padding: 30px 0;
  }
  .news .wrapper {
    width: calc(100% - 40px);
    padding: 30px 20px;
    flex-direction: column;
  }
  .news .wrapper .sec-ttl {
    width: 100%;
    margin-bottom: 1em;
  }
  .news-list-item {
    flex-direction: column;
  }
  .news-list-item-cat {
    margin-bottom: 0.25em;
  }
  /* =================================================
  インスタグラム .sec-instagram 
  ==================================================*/
  .instagram {
    background-size: 180%;
    padding-bottom: 32vw;
  }
  .instagram-link {
    width: 16%;
  }
}
.page-voice {
  background-image: url(../../img/common/bg/bg-anim.png), url(../../img/common/bg/bg-math.png);
}
.page-voice .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-voice.png);
}
.page-voice .wrapper {
  padding: 0 100px;
}

.voice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.voice-item {
  position: relative;
  margin-bottom: 50px;
  width: 48%;
  border: 2px solid #FFE100;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 30px;
  position: relative;
}
.voice-item::before, .voice-item::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #CE6F00;
  border-radius: 5px;
  position: absolute;
  top: 10px;
}
.voice-item::before {
  left: 10px;
}
.voice-item::after {
  right: 10px;
}

.voice-ttl {
  color: #116814;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.voice-ttl::before, .voice-ttl::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #CE6F00;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
}
.voice-ttl::before {
  left: 10px;
  z-index: 1;
}
.voice-ttl::after {
  right: 10px;
}

@media screen and (max-width: 768px) {
  .page-voice .wrapper {
    padding: 0 20px;
  }
  .voice-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
#page-product {
  background-image: url(../../img/common/bg/bg-math.png);
}
#page-product .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-recipe.png);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.link-list .link-item a {
  display: block;
  background-color: #eee;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  border-radius: 15px;
  padding: 0 0.5em;
  letter-spacing: 0.05em;
}

.cat-ttl {
  background-color: #116814;
  color: #FFFFFF;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); /*16-20*/
  font-weight: 600;
  padding: 0.5em 1em;
}
.cat-ttl:not(:first-of-type) {
  margin-top: 50px;
}

.recipe-list-item {
  display: flex;
  border-bottom: 1px dotted #999999;
  padding: 30px 0;
}
.recipe-list-item:last-of-type {
  border-bottom: none;
}
.recipe-list-item-img {
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 50px;
}
.recipe-list-item-text {
  flex: 1;
}
.recipe-list-item-text .recipe-ttl {
  color: #116814;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 30px;
}
.recipe-list-item-text .recipe-contents {
  margin-top: 15px;
}
.recipe-list-item-text .recipe-contents dt {
  background-color: #FFE100;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  display: inline-block;
  line-height: 1.7;
  padding: 0 10px;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.recipe-list-item-text .recipe-contents ul {
  list-style-type: disc;
  margin-left: 20px;
  list-style-position: outside;
}
.recipe-list-item-text .recipe-contents ol {
  list-style-type: auto;
  margin-left: 2em;
  list-style-position: outside;
}
.recipe-list-item-text .recipe-contents li.list-none {
  list-style: none;
  text-indent: -1.5em;
  margin-top: 1em;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .cat-ttl {
    margin-bottom: 15px;
  }
  .recipe-list-item {
    flex-direction: column;
    padding: 30px 20px;
  }
  .recipe-list-item:first-of-type {
    border-top: none;
    padding-top: 0;
  }
  .recipe-list-item-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.page-product {
  background-image: url(../../img/common/bg/bg-math.png);
}
.page-product .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-voice.png);
}
.page-product .cat-ttl {
  margin-bottom: 30px;
}
.page-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 4%;
}
.page-product-list-item {
  width: 22%;
  position: relative;
  font-weight: 500;
}
.page-product-list-item a {
  display: block;
  background-color: #F7F7F7;
  border: 1px solid #EDEDED;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .page-product-list {
    gap: 50px 2%;
  }
  .page-product-list-item {
    width: 32%;
    position: relative;
  }
}
@media screen and (max-width: 500px) {
  .page-product-list {
    gap: 50px 4%;
  }
  .page-product-list-item {
    width: 48%;
    position: relative;
  }
}
.page-movie {
  background-image: url(../../img/common/bg/bg-math.png);
}
.page-movie .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-movie.png);
}
.page-movie .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.page-movie .wrapper .movie-item {
  width: 48%;
  flex-direction: column;
}
.page-movie .wrapper .movie-item:nth-child(odd) {
  flex-direction: column;
  margin-right: 4%;
}
.page-movie .wrapper .movie-item .movie-img {
  width: 100%;
}
.page-movie .wrapper .movie-item .movie-text {
  text-align: center;
}
.page-movie .wrapper .movie-item .movie-text p:nth-child(2) {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .page-movie .wrapper {
    flex-direction: column;
  }
  .page-movie .wrapper .movie-item {
    width: 100%;
  }
  .page-movie .wrapper .movie-item:nth-child(odd) {
    margin-right: 0;
  }
}
.page-about {
  background-image: url(../../img/common/bg/bg-dotto-lg.png);
}
.page-about .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-about.png);
}
.page-about .wrapper {
  padding: 0 100px;
}
.page-about .features-contener {
  position: relative;
  background-image: url(../../img/about/about-sta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  border: 3px solid #000000;
  padding: 60px 80px 50px;
}
.page-about .features-ttl {
  position: absolute;
  border: 3px solid #000000;
  border-radius: 30px;
  width: 400px;
  line-height: 46px;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1rem);
}
.page-about .features-img {
  width: 40%;
  margin: 0 auto 20px;
}
.page-about .features-text {
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.page-about .features-list {
  display: flex;
  justify-content: space-between;
}
.page-about .features-list-item {
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  text-align: center;
  opacity: 0;
}
.page-about .features-list-item::after {
  content: "";
  background-image: url(../../img/about/about-sta-objact.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  padding-top: 100%;
  display: block;
  animation: 8s linear infinite rotation1;
}
.page-about .features-list-item span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
.page-about .features .standard {
  background-image: url(../../img/about/about-sta-bg.png);
  margin-bottom: 100px;
}
.page-about .features .standard .features-ttl {
  background-color: #FF9900;
}
.page-about .features .standard .features-list {
  color: #0D982C;
}
.page-about .features .premium {
  background-image: url(../../img/about/about-pre-bg.png);
  margin-bottom: 100px;
}
.page-about .features .premium .features-ttl {
  background-color: #80E8FF;
}
.page-about .features .premium .features-list {
  color: #FF9900;
}
.page-about .features .premium .features-list-item::after {
  background-image: url(../../img/about/about-pre-objact.png);
}
.page-about .features .other {
  background-image: url(../../img/about/about-other-bg.png);
}
.page-about .features .other .features-ttl {
  background-color: #FF9900;
}
.page-about .features .other .features-list {
  color: #4098D8;
}
.page-about .features .other .features-list-item::after {
  background-image: url(../../img/about/about-other-objact.png);
}
.page-about .nori-kodawari {
  background-color: #FFE100;
}
.page-about .nori-kodawari .interview {
  display: flex;
  align-items: center;
  font-weight: 500;
  /* ---------- 吹き出し：左 ---------- */
  /* ---------- 吹き出し：右 ---------- */
}
.page-about .nori-kodawari .interview::after {
  content: "";
  width: calc(100px + 1.3em);
}
.page-about .nori-kodawari .interview .interview-img {
  width: 100px;
}
.page-about .nori-kodawari .interview .block-baloon,
.page-about .nori-kodawari .interview .block-baloon-right,
.page-about .nori-kodawari .interview .block-baloon-left {
  flex: 1;
  padding: 1em;
  position: relative;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 10px;
}
.page-about .nori-kodawari .interview .block-baloon:before,
.page-about .nori-kodawari .interview .block-baloon:after,
.page-about .nori-kodawari .interview .block-baloon-right:before,
.page-about .nori-kodawari .interview .block-baloon-right:after,
.page-about .nori-kodawari .interview .block-baloon-left:before,
.page-about .nori-kodawari .interview .block-baloon-left:after {
  content: "";
  position: absolute;
}
.page-about .nori-kodawari .interview .block-baloon-left {
  margin-left: 1rem;
  max-width: calc(100% - 1rem);
}
.page-about .nori-kodawari .interview .block-baloon-left::before, .page-about .nori-kodawari .interview .block-baloon-left::after {
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  border-top: 10px solid transparent;
  border-right: 1rem solid #000000;
  border-bottom: 10px solid transparent;
}
.page-about .nori-kodawari .interview .block-baloon-left::after {
  left: calc(4px - 1rem);
  border-right: solid 1rem #FFFFFF;
}
.page-about .nori-kodawari .interview .block-baloon-right {
  margin-right: 1rem;
  max-width: calc(100% - 1rem);
  background-color: #FBDEDE;
}
.page-about .nori-kodawari .interview .block-baloon-right::before, .page-about .nori-kodawari .interview .block-baloon-right::after {
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 1rem solid #000000;
}
.page-about .nori-kodawari .interview .block-baloon-right::after {
  right: calc(4px - 1rem);
  border-left: solid 1rem #FBDEDE;
}
.page-about .nori-kodawari .kakeru {
  margin-bottom: 1rem;
}
.page-about .nori-kodawari .kakeru .block-baloon {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.page-about .nori-kodawari .kaihatsu {
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1000px) {
  .page-about .wrapper {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-about .wrapper {
    padding: 0 20px;
  }
  .page-about .features-contener {
    border-radius: 20px;
    border-width: 2px;
    padding: 50px 20px 60px;
  }
  .page-about .features-ttl {
    border-radius: 20px;
    width: 70%;
    line-height: 40px;
    top: -24px;
    border-width: 2px;
  }
  .page-about .features-img {
    width: 80%;
  }
  .page-about .features-list {
    justify-content: center;
  }
  .page-about .features-list-item {
    width: 45%;
  }
  .page-about .features-list-item:nth-of-type(1) {
    margin-right: -20%;
    padding-top: 42%;
  }
  .page-about .features-list-item:nth-of-type(2) {
    justify-content: flex-start;
  }
  .page-about .features-list-item:nth-of-type(2) span {
    top: 15%;
  }
  .page-about .features-list-item:nth-of-type(3) {
    padding-top: 42%;
    margin-left: -20%;
  }
  .page-about .nori-kodawari .interview {
    align-items: flex-end;
  }
  .page-about .nori-kodawari .interview::after {
    display: none;
  }
  .page-about .nori-kodawari .interview .interview-img {
    width: 70px;
  }
  .page-about .nori-kodawari .kaihatsu {
    margin-bottom: 2.5rem;
  }
}
.page-know .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-know.png);
}

.know-intro {
  background-image: url(../../img/about/about-sta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.know-intro .intro-img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}

.know-promise {
  background-image: url(../../img/common/bg/bg-dotto-lg.png);
  position: relative;
  padding-bottom: 200px;
}
.know-promise::before {
  content: "";
  background-image: url(../../img/common/bg/bg-object-green.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 55.1724%;
  top: -1px;
}
.know-promise::after {
  content: "";
  background-image: url(../../img/common/bg/bg-object-yellow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  padding-top: 17.968%;
  bottom: -2px;
  z-index: 1;
}
.know-promise .sec-promise-ttl {
  width: 42%;
  margin: 0 auto 80px;
  text-align: center;
}
.know-promise .promise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.know-promise .promise-list-item {
  width: 48%;
  position: relative;
  color: #FFFFFF;
  text-align: center;
  opacity: 0;
}
.know-promise .promise-list-item:first-child {
  width: 100%;
  margin-bottom: 80px;
}
.know-promise .promise-list-item-no {
  border-radius: 30px;
  background-color: #FFFFFF;
  border: 3px solid #000000;
  padding: 5px 40px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.know-promise .promise-list-item-inner {
  width: min(420px, 100%);
  background-color: #FF9900;
  border-radius: 30px;
  border: 3px solid #000000;
  padding: 60px 20px;
  margin: 0 auto;
}
.know-promise .promise-list-item-ttl {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  margin-bottom: 40px;
}
.know-promise .promise-list-item-img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.know-award {
  background-color: #FFE100;
}
.know-award .award-wrap {
  background-color: #FFFFFF;
  border: 3px solid #000000;
  border-radius: 20px;
  padding: 50px 40px 20px;
}
.know-award .award-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.know-award .award-list .award-item {
  width: 49%;
  display: flex;
  margin-bottom: 50px;
}
.know-award .award-list .award-item .award-item-img {
  width: 160px;
  margin-right: 10px;
}
.know-award .award-list .award-item .award-item-text {
  flex: 1;
  font-weight: 500;
}
.know-award .award-list .award-item .award-item-text .product-name {
  margin-bottom: 15px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.know-award .award-list .award-item .award-item-text .product-name span {
  font-size: 0.7em;
  vertical-align: baseline;
}
.know-award .award-list .award-item .award-item-text .award-name {
  display: flex;
  margin-bottom: 0.5em;
}
.know-award .award-list .award-item .award-item-text .award-name-img {
  width: 42px;
  margin-right: 10px;
}
.know-award .award-list .award-item .award-item-text .award-name-text {
  flex: 1;
  line-height: 1.4;
  font-size: clamp(0.75rem, 0.682rem + 0.34vw, 0.938rem);
}
.know-award .award-list .award-item .award-item-text .award-name-text span {
  font-size: 1.125rem;
  display: block;
}
.know-award .award-disc {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .know-intro .intro-img {
    max-width: 100%;
  }
  .know-promise {
    padding-bottom: 50px;
  }
  .know-promise .sec-promise-ttl {
    width: min(90%, 400px);
    margin: 0 auto 60px;
  }
  .know-promise .promise-list {
    flex-direction: column;
  }
  .know-promise .promise-list-item {
    width: 100%;
    margin-bottom: 60px;
  }
  .know-promise .promise-list-item:first-child {
    width: 100%;
    margin-bottom: 60px;
  }
  .know-promise .promise-list-item-no {
    width: 60%;
    border-width: 2px;
    top: -20px;
  }
  .know-promise .promise-list-item-inner {
    width: 100%;
    border-radius: 20px;
    border-width: 2px;
    padding: 50px 20px 30px;
  }
  .know-award .award-wrap {
    border-width: 2px;
    border-radius: 10px;
    padding: 40px 20px 20px;
  }
  .know-award .award-list {
    flex-direction: column;
  }
  .know-award .award-list .award-item {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #333;
  }
  .know-award .award-list .award-item:last-child {
    border-bottom: none;
  }
  .know-award .award-list .award-item .award-item-img {
    width: 100px;
  }
  .know-award .award-list .award-item .award-item-text .award-name-img {
    width: 35px;
  }
  .know-award .award-disc {
    font-size: 10px;
    line-height: 1.2;
  }
}
.page-kodawari {
  background-image: url(../../img/common/bg/bg-dotto-lg.png);
}
.page-kodawari .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-kodawari.png);
}

.kodawari {
  position: relative;
  padding-bottom: 180px;
}
.kodawari::after {
  content: "";
  background-image: url(../../img/common/bg/bg-object-yellow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  padding-top: 17.968%;
  bottom: -2px;
  z-index: 1;
}
.kodawari .wrapper {
  padding: 0 100px;
  /* ---------- 吹き出し：下 ---------- */
}
.kodawari .wrapper .sec-ttl::before {
  background-image: url(../../img/common/ttl-icon/ttl-icon06.png);
}
.kodawari .wrapper .block-baloon,
.kodawari .wrapper .block-baloon-bottom {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem); /*16-22*/
  text-align: center;
  padding: 1em;
  margin-bottom: 1em;
  position: relative;
  background-color: #FBDEDE;
  border: 4px solid #000000;
  border-radius: 0.5em;
  line-height: 1.8;
}
.kodawari .wrapper .block-baloon:before,
.kodawari .wrapper .block-baloon:after,
.kodawari .wrapper .block-baloon-bottom:before,
.kodawari .wrapper .block-baloon-bottom:after {
  content: "";
  position: absolute;
}
.kodawari .wrapper .block-baloon-bottom {
  margin-bottom: 1.5em;
}
.kodawari .wrapper .block-baloon-bottom:before,
.kodawari .wrapper .block-baloon-bottom:after {
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5em;
  border-top: 1.5em solid #000000;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
}
.kodawari .wrapper .block-baloon-bottom:after {
  bottom: calc(6px - 1.5em);
  border-top: solid 1.5em #FBDEDE;
}
.kodawari .wrapper .kaihatsu {
  width: 30%;
  margin: 0 auto 50px;
}

.material {
  background-color: #FFE100;
  padding-bottom: 0;
}
.material .sec-ttl::before {
  background-image: url(../../img/common/ttl-icon/ttl-icon02.png);
}

@media screen and (max-width: 767px) {
  .kodawari {
    padding-bottom: 80px;
  }
  .kodawari .wrapper {
    padding: 0 20px;
  }
  .kodawari .wrapper .block-baloon,
  .kodawari .wrapper .block-baloon-bottom {
    border-width: 2px;
  }
  .kodawari .wrapper .block-baloon-bottom:after {
    bottom: calc(3px - 1.5em);
  }
  .kodawari .wrapper .kaihatsu {
    width: 40%;
    margin-bottom: 20px;
  }
}
.page-profile {
  background-image: url(../../img/common/bg/bg-dotto-lg.png);
}
.page-profile .sub-kv .wrapper::after {
  background-image: url(../../img/common/common/sub/sub-kv-kakeru-about.png);
}
.page-profile .profile-container {
  width: min(100%, 860px);
  margin: 0 auto;
  position: relative;
  padding: 50px;
  background-color: #CE6F00;
  border: 3px solid #000000;
  border-radius: 30px;
}
.page-profile .profile-container .profile-ttl {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
  background-color: #FFE100;
  border: 3px solid #000000;
  border-radius: 0 0 10px 10px;
  padding: 30px 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  text-align: center;
  z-index: 1;
}
.page-profile .profile-container .profile-ttl span {
  font-size: 0.7em;
  vertical-align: baseline;
}
.page-profile .profile-container .wrapper {
  background-image: url(../../img/common/bg/bg-note.png);
  background-color: #FFFFFF;
  width: 100%;
  padding: 100px 50px 50px;
}
.page-profile .profile-container .wrapper .profile-kakeru {
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}
.page-profile .profile-container .wrapper .profile-kakeru-img {
  width: 48%;
}
.page-profile .profile-container .wrapper .profile-kakeru-text {
  flex: 1;
  padding-left: 2rem;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-name {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.875rem, 1.705rem + 0.73vw, 2.25rem);
  margin-bottom: 20px;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-name span {
  font-size: 0.7em;
  vertical-align: baseline;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-name .kakeru-name-first {
  font-size: 0.6em;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-list {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-list dt {
  color: #559C90;
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-list dd {
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}
.page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-list dd:first-of-type {
  margin-bottom: 1em;
}
.page-profile .profile-container .wrapper .profile-table {
  width: 100%;
  margin-bottom: 1rem;
}
.page-profile .profile-container .wrapper .profile-table dt {
  width: 11em;
}
.page-profile .profile-container .wrapper .profile-table dd {
  width: calc(100% - 11em);
}
.page-profile .profile-container .wrapper .profile-text {
  text-align: center;
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  line-height: 1.8;
}
.page-profile section:nth-child(2) {
  width: min(100%, 900px);
  margin: 0 auto;
  padding-top: 0;
}
.page-profile .quiz {
  margin: 0 20%;
  padding-top: 60%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.page-profile .quiz iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .page-profile section:nth-child(1) {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-profile .profile-container {
    padding: 15px;
    border-width: 2px;
    border-radius: 20px;
  }
  .page-profile .profile-container .profile-ttl {
    border-width: 2px;
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    letter-spacing: 0;
    top: -20px;
    width: 80%;
  }
  .page-profile .profile-container .wrapper {
    padding: 50px 15px 15px;
  }
  .page-profile .profile-container .wrapper .profile-kakeru {
    flex-direction: column;
  }
  .page-profile .profile-container .wrapper .profile-kakeru-img {
    width: 80%;
    margin-right: 8%;
  }
  .page-profile .profile-container .wrapper .profile-kakeru-text {
    padding-left: 0;
    padding-top: 20px;
  }
  .page-profile .profile-container .wrapper .profile-kakeru-text .profile-kakeru-name {
    text-align: center;
  }
  .page-profile .profile-container .wrapper .profile-table {
    letter-spacing: 0;
  }
  .page-profile .profile-container .wrapper .profile-table dt {
    width: 6.5em;
  }
  .page-profile .profile-container .wrapper .profile-table dd {
    width: calc(100% - 6.5em);
  }
  .page-profile .quiz {
    margin: 0;
    padding-top: 150%;
  }
}
.page-shop .sub-kv .wrapper::after {
  background-image: url(../../img/common/sub/sub-kv-kakeru-about.png);
}
.page-shop .wrapper {
  padding: 0 90px;
}
.page-shop .market-list-item {
  margin-bottom: 50px;
}
.page-shop .market-name {
  color: #116814;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 5px 10px;
  border-bottom: 1px dotted #999999;
}
.page-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;
}
.page-shop .shop-list {
  display: flex;
  flex-wrap: wrap;
}
.page-shop .shop-list-name {
  width: 25%;
  border-bottom: 1px dotted #999999;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .page-shop .wrapper {
    padding: 0 20px;
  }
  .page-shop .shop-list-name {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */