@charset "UTF-8";
/*------------------------------------------------------------------------
■ 初期化
------------------------------------------------------------------------*/
.contents1 {
  overflow: hidden;
}
.contents1__inner {
  padding: 0;
  width: 100%;
}
.contents1__inner--small {
  width: auto;
  max-width: 100%;
}

main {
  overflow: hidden;
}

img {
  vertical-align: bottom;
}

/*------------------------------------------------------------------------
  ■ 共通
  ------------------------------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

/*------------------------------------------------------------------------
  ■ 767px以下 
  ------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .contents1__inner {
    padding: 0;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
/*------------------------------------------------------------------------
■ フォント・カラー
------------------------------------------------------------------------*/
.comparison_vanilla {
  color: #404040;
}

.en {
  font-family: "Pangolin", cursive;
}

/*------------------------------------------------------------------------
■ インナー
------------------------------------------------------------------------*/
.inner {
  max-width: 1030px;
  padding: 140px 15px;
  margin-right: auto;
  margin-left: auto;
}
.inner > *:last-child {
  margin-bottom: 0;
}

/*------------------------------------------------------------------------
■ 767px以下 
------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 60px 15px;
  }
}
/*------------------------------------------------------------------------
■ level1-ttl
------------------------------------------------------------------------*/
.level1-ttl {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  padding-bottom: 25px;
}
.level1-ttl__sub {
  display: block;
  font-size: 25px;
  margin-bottom: 15px;
}
.level1-ttl::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: #906666;
  left: calc(50% - 20px);
  bottom: 0;
  border-radius: 100px;
}

@media screen and (max-width: 768px) {
  .level1-ttl {
    margin-bottom: 30px;
    font-size: 25px;
    padding-bottom: 20px;
  }
  .level1-ttl__sub {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .level1-ttl::after {
    width: 30px;
    height: 3px;
    left: calc(50% - 15px);
  }
}
.vanilla-btn {
  display: inline-block;
  background-color: #BA7474;
  width: 100%;
  max-width: 280px;
  padding: 18px 10px;
  border: 2px solid transparent;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 8px;
  position: relative;
}
.vanilla-btn::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}
.vanilla-btn:focus, .vanilla-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #BA7474;
}

.add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-cart .select_quantity {
  margin-right: 10px;
}
.add-cart select {
  margin-bottom: 0;
  height: 44px;
  width: 45px;
  padding: 0 22px 0 10px;
}
.add-cart__btn {
  display: inline-block;
  font-weight: bold;
  max-width: 190px;
  width: 100%;
  padding: 13px 5px;
  font-size: 14px;
  background-color: #BA7474;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
}
.add-cart__btn--kit {
  max-width: 230px;
}
.add-cart__btn:hover {
  border: 2px solid #BA7474;
  color: #BA7474;
  background-color: #ffffff;
}
.add-cart--recommended .add-cart__btn {
  font-size: 16px;
}
.add-cart--recommended .select_quantity {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .vanilla-btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .add-cart__btn {
    font-size: 13px;
  }
  .add-cart .select_quantity {
    margin-right: 5px;
  }
  .add-cart select {
    width: 45px;
    padding: 0 22px 0 10px;
  }
}
.kv {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.intro {
  padding: 40px 15px;
}
.intro__txt {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 2.5;
}

.mokuji {
  display: flex;
  justify-content: space-between;
  max-width: 1030px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.mokuji-item {
  max-width: 19.2%;
  width: 100%;
}
.mokuji-item__link {
  border: 2px solid #404040;
  display: block;
  text-align: center;
  padding: 17px 5px 28px;
  width: 100%;
  border-radius: 8px;
  background-color: #f7f6f2;
  font-size: 16px;
  font-weight: bold;
  color: #404040;
  position: relative;
}
.mokuji-item__link::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 900;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  color: #906666;
}

@media screen and (max-width: 768px) {
  .intro {
    padding: 20px;
  }
  .intro__txt {
    font-size: 15px;
    line-height: 1.8;
  }

  .mokuji {
    flex-wrap: wrap;
  }

  .mokuji-item {
    max-width: 49%;
    margin-bottom: 2%;
  }
  .mokuji-item__link {
    padding: 12px 5px 22px;
    font-size: 15px;
  }
  .mokuji-item__link::after {
    bottom: 5px;
  }
}
.about__txt {
  font-weight: bold;
  font-size: 18px;
  line-height: 2.22222;
  text-align: center;
  margin-bottom: 25px;
}
.about__img-wrap {
  margin-bottom: 100px;
}
.about__img {
  border-radius: 8px;
}
.about__lead {
  font-weight: bold;
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about__txt {
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .about__lead {
    font-size: 18px;
    margin-bottom: 13px;
  }
  .about__img-wrap {
    margin-bottom: 50px;
  }
}
.popular {
  background-color: #f7f6f2;
}

.popular-item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 80px 0 80px 0;
  margin-bottom: 60px;
}
.popular-item__cate {
  font-weight: bold;
  text-align: center;
  color: #906666;
  font-size: 32px;
  border-bottom: 2px solid #cccccc;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.popular-item__cate-inner {
  position: relative;
  z-index: 2;
}
.popular-item__cate-inner::after {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  z-index: -1;
  transform: rotate(-7deg);
  background-repeat: no-repeat;
  top: -20px;
  left: -70px;
  height: 43px;
}
.popular-item__cate-inner--beans::after {
  background-image: url(../../contents/comparison_vanilla/deco-ttl--beans.svg);
  width: 233px;
}
.popular-item__cate-inner--essence::after {
  background-image: url(../../contents/comparison_vanilla/deco-ttl--essence.svg);
  width: 252px;
}
.popular-item__cate-inner--oil::after {
  background-image: url(../../contents/comparison_vanilla/deco-ttl--oil.svg);
  width: 191px;
}

.popular-recipe {
  display: flex;
  align-items: center;
}
.popular-recipe__img-wrap {
  flex: 0 1 43.47826%;
  margin-right: 4.34782%;
}
.popular-recipe__img {
  border-radius: 16px;
}
.popular-recipe__body {
  flex: 1;
}
.popular-recipe__name {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.popular-recipe__material {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.8;
}
.popular-recipe__material a {
  text-decoration: underline;
}
.popular-recipe__txt {
  font-size: 16px;
  line-height: 1.8;
  padding: 23px 30px;
  background: #f7f6f2;
  border-radius: 10px;
  margin-bottom: 20px;
}

.recipe-difficulty {
  display: inline-block;
  border: 1px solid #404040;
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 15px;
}
.recipe-difficulty__level {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #404040;
}
.recipe-difficulty__time {
  padding-left: 18px;
  position: relative;
}
.recipe-difficulty__time::after {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media screen and (max-width: 768px) {
  .popular-item {
    padding: 25px;
    margin-bottom: 50px;
    border-radius: 50px 0 50px 0;
  }
  .popular-item__cate {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 18px;
  }
  .popular-item__cate-inner--beans::after {
    width: 190px;
  }
  .popular-item__cate-inner::after {
    height: 35px;
    left: -40px;
    top: -15px;
  }

  .popular-recipe {
    display: block;
  }
  .popular-recipe__img-wrap {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .popular-recipe__name {
    font-size: 20px;
    margin-bottom: 7px;
  }
  .popular-recipe__material {
    font-size: 15px;
  }
  .popular-recipe__txt {
    font-size: 15px;
    line-height: 1.5;
    padding: 15px 25px;
    margin-bottom: 15px;
  }

  .recipe-difficulty {
    margin-bottom: 10px;
    padding: 5px 10px;
  }
  .recipe-difficulty__level {
    margin-right: 8px;
    padding-right: 8px;
  }
}
.all-btn {
  display: block;
  background-color: #906666;
  width: 100%;
  max-width: 400px;
  padding: 18px 10px;
  border: 2px solid transparent;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-weight: bold;
}
.all-btn__inner {
  position: relative;
  padding-left: 25px;
}
.all-btn__inner::after {
  content: "\f14a";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  padding-top: 50px;
  margin-bottom: 50px;
}

tbody th, tbody td {
  border: 2px solid #e6e6e6;
  font-size: 14px;
  padding: 20px;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}

.table-row:nth-child(even) {
  background: #f7f6f2;
}
.table-row__head {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  font-size: 16px;
  font-weight: bold;
  background-color: #906666;
  color: #fff;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  padding: 20px;
}
.table-row__head:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 102%;
  height: 104%;
  border: 2px solid #e6e6e6;
}
.table-row td {
  text-align: center;
  line-height: 1.6;
}
.table-row:last-of-type td {
  text-align: left;
}

.table-head {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  text-align: center;
  position: relative;
  padding: 0;
  position: relative;
}
.table-head::after {
  color: #906666;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  right: 0.7em;
  font-weight: 900;
  transform: translateY(-50%);
  font-size: 25px;
}
.table-head--none {
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 9999;
}
.table-head--none::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
}
.table-head--none::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: -50px;
  left: -1px;
}
.table-head__link {
  display: block;
  padding: 20px 20px 5px;
}
.table-head__img {
  max-width: 90px;
  margin-bottom: 10px;
}
.table-head__name {
  line-height: 1.2;
}
.table-head__batsu {
  cursor: pointer;
  display: block;
  position: absolute;
  border: 2px solid #e6e6e6;
  width: 45px;
  height: 45px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.batsu-btn {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.batsu-btn::before, .batsu-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  /* 棒の幅（太さ） */
  height: 20px;
  /* 棒の高さ */
  background: #906666;
  border-radius: 2.5px;
}
.batsu-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.batsu-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.aaa {
  display: none;
}

.show {
  display: block;
}

.batsu-show {
  display: table-cell;
}

.type-item {
  border: 8px solid #f7f6f2;
  padding: 35px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
}
.type-item__img-wrap {
  flex: 0 1 23.91304%;
  margin-right: 4.34782%;
}
.type-item__body {
  flex: 1;
}
.type-item__ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.type-item__txt {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  tbody th,
tbody td {
    width: auto;
    min-width: auto;
    max-width: auto;
    padding: 15px;
  }

  .table-row__head {
    min-width: 110px;
    font-size: 14px;
    padding: 15px;
    line-height: 1.4;
  }

  .all-btn {
    max-width: 300px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .type-item {
    display: block;
    padding: 30px;
    margin-bottom: 20px;
  }
  .type-item__img-wrap {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .type-item__ttl {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .type-item__txt {
    font-size: 15px;
    line-height: 1.5;
  }
}
.cate-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  max-width: 1000px;
  padding: 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
}
.cate-list__item {
  width: 100%;
  max-width: 16.14583%;
}
.cate-list__item--all {
  max-width: 100%;
  margin-bottom: 0.625%;
}
.cate-list__link {
  background-color: #f7f6f2;
  border: 2px solid #906666;
  width: 100%;
  display: block;
  padding: 15px 5px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  color: #404040;
  transition: 0.1s;
}
.cate-list__link--active, .cate-list__link:hover, .cate-list__link:focus {
  background-color: #906666;
  color: #ffffff;
  font-weight: bold;
  opacity: 1;
}

.recipe {
  background-color: #f7f6f2;
}
.recipe__inner {
  max-width: 1050px;
}

.recipe-items {
  display: flex;
  flex-wrap: wrap;
}

.recipe-item {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 50px;
}
.recipe-item__img {
  margin-bottom: 10px;
  border-radius: 8px;
}
.recipe-item__name {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  min-height: 48px;
}
.recipe-item__time {
  display: inline-block;
  position: relative;
  border: 1px solid #906666;
  border-radius: 100px;
  padding: 4px 8px 4px 27px;
  color: #906666;
  font-size: 14px;
}
.recipe-item__time::after {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}

.is-animate {
  display: block;
  opacity: 1;
  -webkit-animation: 0.6s zoom-in;
          animation: 0.6s zoom-in;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .recipe__inner {
    max-width: 600px;
  }

  .cate-list {
    padding: 15px;
    margin-bottom: 20px;
  }
  .cate-list__item {
    max-width: 49.5%;
    margin-bottom: 1%;
  }
  .cate-list__item--all {
    max-width: 100%;
  }

  .recipe-items {
    display: flex;
    justify-content: space-between;
  }

  .recipe-item {
    width: 49%;
    padding: 0;
    margin-bottom: 30px;
  }
  .recipe-item__time {
    font-size: 11px;
    padding: 4px 8px 4px 22px;
  }
  .recipe-item__img {
    margin-bottom: 7px;
  }
  .recipe-item__name {
    font-size: 14px;
    line-height: 1.4;
    min-height: auto;
    margin-bottom: 5px;
  }
}
.faq-item {
  border: 5px solid #f0eee9;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0 40px;
}
.faq-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 0px;
  font-weight: normal;
}
.faq-item__icon--question {
  background-color: #906666;
  top: 50%;
  transform: translateY(-50%);
}
.faq-item__icon--answer {
  background-color: #BA7474;
  top: 25px;
}
.faq-item__question {
  padding: 35px 60px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
.faq-item__question::before, .faq-item__question::after {
  content: "";
  display: block;
  background-color: #707070;
  position: absolute;
  top: 50%;
  width: 25px;
  height: 2px;
  right: 0;
}
.faq-item__question::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.faq-item__question--active {
  border-bottom: 2px solid #e5e5e5;
}
.faq-item__question--active::after {
  transform: rotate(0);
}
.faq-item__lead {
  font-size: 18px;
  font-weight: bold;
}
.faq-item__answer {
  padding: 0 60px;
  position: relative;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.3s;
}
.faq-item__answer--open {
  padding: 30px 60px;
  line-height: normal;
  height: auto;
  opacity: 1;
}
.faq-item__answer-txt {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .faq-item {
    padding: 0 15px;
    margin-bottom: 10px;
    border: 4px solid #f0eee9;
  }
  .faq-item__icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .faq-item__icon--answer {
    top: 18px;
  }
  .faq-item__question {
    padding: 15px 35px 15px 40px;
  }
  .faq-item__question::before, .faq-item__question::after {
    width: 20px;
    height: 1px;
  }
  .faq-item__lead {
    font-size: 16px;
    line-height: 1.4;
  }
  .faq-item__answer {
    padding: 0 20px 0 40px;
  }
  .faq-item__answer--open {
    padding: 20px 20px 20px 40px;
  }
  .faq-item__answer-txt {
    line-height: 1.7;
  }
}
.product {
  background-color: #f7f6f2;
}

.prod-items {
  display: flex;
  flex-wrap: wrap;
}

.prod-item {
  border-radius: 8px;
  overflow: hidden;
  max-width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  background-color: #fcfcf7;
}
.prod-item:nth-of-type(4n) {
  margin-right: 0;
}
.prod-item__link {
  padding: 30px;
  display: inline-block;
  background-color: #ffffff;
}
.prod-item__img {
  width: 100%;
}
.prod-item__body {
  padding: 20px;
  background-color: #fcfcf7;
}
.prod-item__name {
  color: #906666;
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 72px;
}
.prod-item__price {
  font-size: 18px;
  margin-bottom: 15px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .prod-items {
    justify-content: space-between;
  }

  .prod-item {
    max-width: 49%;
    margin-right: 0;
  }
  .prod-item__link {
    padding: 20px;
  }
  .prod-item__body {
    padding: 15px;
  }
  .prod-item__name {
    font-size: 15px;
    line-height: 1.3;
    min-height: 78px;
  }
  .prod-item__price {
    font-size: 16px;
  }
}
/*# sourceMappingURL=comparison_vanilla.css.map */