@charset "UTF-8";

img {
  display: block;
  width: 100%;
  height: auto;
}

/* utility */
.u-tt--light {
  font-family: "TTCommons-Light", sans-serif;
  font-size: 120%;
}

.u-tt--regular {
  font-family: "TTCommons-Regular", sans-serif;
  font-size: 120%;
}

.u-tt--demibold {
  font-family: "TTCommons-Demibold", sans-serif;
  font-size: 120%;
}

.u-fs-up {
  font-size: 120%;
}

.u-fw-bold {
  font-weight: 800;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-narrow {
  letter-spacing: 0.02em;
}

.u-text-note {
  font-size: 1.2rem;
}

.u-link-text {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  color: #393c41;
}

.u-link-img {
  transition: .3s;
}

.hover-scale {
  transition: transform 0.4s ease-out;
}

@media (any-hover: hover) {
  .u-link-text:hover {
    text-decoration: none;
  }

  .u-link-img:hover {
    opacity: .8;
  }

  .hover-scale:hover {
    transform: scale(1.1);
    opacity: .9;
  }
}

@media screen and (max-width: 768px) {
  .u-text-left-sp {
    text-align: left;
  }
  
  .u-text-center-sp {
    text-align: center;
  }
  
  .u-text-right-sp {
    text-align: right;
  }
}

.u-mt40 {
  margin-top: 4rem;
}

/* mv */
.l-mv {
  position: relative;
}

.l-mv__title {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX( -50% );
  color: #fff;
}

.l-mv__text {
  font-family: "TTCommons-Demibold", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .l-mv__text {
    font-size: 2.923976608187134vw;
    letter-spacing: 0.12em;
  }
}

@media screen and (max-width: 768px) {
  .l-mv__title {
    width: 100%;
    text-align: center;
    bottom: 7%;
  }

  .l-mv__text{
    line-height: 1.2;
    letter-spacing: 0.12em;
    font-size: 8.533333333333333vw;
  }
}

.l-wrapper {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  color: #393c41;
}

.l-main {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 4rem;
}

.lead-block {
  max-width: 1040px;
  margin: 0 auto;
}

.lead-block__text {
  line-height: 1.8;
  text-align: center;
}

.lead-block__text + .lead-block__text {
  margin-top: 2.4rem;
}

.lead-section {
  margin-bottom: 4.8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 4.8rem;
  }

  .lead-block {
    padding: 0 1.5rem;
  }

  .lead-section {
    text-align: left;
  }
}

/* アンカーリンク */
/* レイアウトの土台 */
.nav-wrapper {
  max-width: 1048px;
  margin: 0 auto;
  padding: 6.4rem 2.4rem 8rem;
}

.c-nav-anchor {
  --column-gap: 4.8rem;
  --row-gap: 3.2rem;
}

/* リスト本体 */
.c-nav-anchor__list {
  display: grid;
  /* 基本設定：最大4カラム。中身に合わせて自動で段落ちする */
  grid-template-columns: repeat(auto-fill, minmax(calc((100% - var(--column-gap) * 3) / 4), 1fr));
  gap: var(--row-gap) var(--column-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 【重要】アイテムが3つ以下の時だけ、中央寄せに切り替える */
/* :has() セレクタで「3つ目までしか存在しない場合」を判定 */
.c-nav-anchor__list:not(:has(.c-nav-anchor__item:nth-child(4))) {
  display: flex;
  justify-content: center;
}

/* リンク要素：クリック範囲を最大化 */
.c-nav-anchor__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}


/* 装飾：下線と矢印 */
.c-nav-anchor.--border .c-nav-anchor__text {
  border-bottom: 1px solid currentColor;
}

.c-nav-anchor__text {
  padding: 0 1.6rem 1.6rem 0.8rem;
  position: relative;
  display: block;
}

/* 矢印アイコン */
.c-nav-anchor__text::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(135deg);
  position: absolute;
  bottom: 2.4rem;
  right: 0.4rem;
  transition: bottom 0.3s;
}

@media (any-hover: hover) {
  .c-nav-anchor__link:hover .c-nav-anchor__text::after {
    bottom: 2rem;
  }
}

.anchorbtn-wrapper {
  padding: 0 0 6.4rem;
}

.c-nav-anchorbtn {
  --column-gap: 2.4rem;
  --row-gap: 1.6rem;
}

.c-nav-anchorbtn__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc((100% - var(--column-gap) * 2) / 3), 1fr));
  gap: var(--row-gap) var(--column-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-nav-anchorbtn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000030;
  color: #fff;
  border-radius: 3px;
  transition: 0.3s;
  padding: 2.4rem 3.2rem 2.4rem 2.4rem;
  position: relative;
}

/* 矢印アイコン */
.c-nav-anchorbtn__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 1.8rem;
  transition: bottom 0.3s;
}

@media (any-hover: hover) {
  .c-nav-anchorbtn__link:hover {
  color: #fff;
  opacity: .7;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 4rem 1.5rem 6.4rem;
  }
  
  .c-nav-anchor {
    --column-gap: 2rem;
  }

  .c-nav-anchor__list {
    /* SP：2カラム固定（アイテムが1つの時は1frで広がる） */
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - var(--column-gap)), 1fr));
    /* SPでは中央寄せ不要なら display: grid のままでOK */
  }
  
  /* SPで1つだけの時に中央寄せしたい場合は以下を追加 */
  .c-nav-anchor__list:not(:has(.c-nav-anchor__item:nth-child(2))) {
    display: flex;
    justify-content: center;
  }

  .c-nav-anchorbtn__list {
    grid-template-columns: 1fr;
    gap: var(--row-gap) var(--column-gap);
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

.l-section-lp {
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.l-section-lp.--top {
  padding-top: 4rem;
}

.l-section-lp + .l-section-lp {
  margin-top: 8rem;
}

.l-section-lp:last-child {
  padding-bottom: 8rem;
}

.l-section-lp__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出し */
.lp-heading-primary {
  text-align: center;
  color:#000030;
  margin-bottom: 3.2rem;
}

.lp-heading-primary.--border {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1.6rem;
}

.lp-heading-primary__main {
  display: block;
  font-size:2.4rem;
  letter-spacing:0.1em;
  font-weight:600;
  line-height:1.25;
}

.lp-heading-primary__main.--en {
  font-family:"TTCommons-Regular", sans-serif;
  font-size: 3rem;
  line-height:1;
}

.lp-heading-primary__sub {
  display: block;
  margin-top: 0.2rem;
  font-size:1.2rem;
  font-weight:300;
  line-height:1.5;
  letter-spacing:0.075em;
}

.lp-heading-primary__sub.--en {
  font-family:"TTCommons-Light", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.8rem;
}

.lp-heading-secondary {
  display: flex;
  align-items: center;
}

.lp-heading-secondary__text {
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 1px solid #000030;
}

.lp-heading-secondary__main {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.6;
}

.lp-heading-secondary__note {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  line-height: 1;
}

.p-grid-about {
  --column-gap: 8rem;
  --row-gap: 4rem;

  display: flex;
  gap: var(--row-gap) var(--column-gap);
  flex-wrap: wrap;
}

.p-grid-about__item {
  width: calc( (100% - var(--column-gap)) / 2);
}

.category-contents {
  background-color: #F6F6F6;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}

.category-contents .itemName {
  font-size: 1.4rem;
  line-height: 1.5;
}

.category-contents .itemPrice {
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

.p-card-1 {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.p-card-1 .detail-review-star {
  min-height: auto;
  margin: 0;
}

.p-card-1 .detail-reviewText {
  font-size: 1.2rem;
}

.p-card-1 .detail-review-star .ukomistarRatingSummarySection {
  padding: 0;
}

.p-card-1 .detail-review-star .ukomistarRatingSummarySection::after {
  display: none;
}

.p-card-1 .review-summary-container .starRating .ukmcustomfont + .reviewNumber {
  margin: 0;
  font-size: 1rem;
}

.p-card-1 .starRating .ukmcustomfont-ukm-full-star:before, .p-card-1 .starRating .ukmcustomfont-ukm-half-star:before, .p-card-1 .starRating .ukmcustomfont-ukm-blank-star:before {
  width: 14px;
  height: 12px;
}

.p-card-1 .review-summary-container .starRating, .p-card-1 .review-widget-summary-container .starRating {
  display: flex;
  align-items: center;
}

.detail-review-star {
  pointer-events: none;
}

.p-card-1 .fl.ukomi_stars_rating_tooltip {
  display: none;
}

.p-grid-howto {
  --column-gap: 2.4rem;
  --row-gap: 4rem;

  display: flex;
  gap: var(--row-gap) var(--column-gap);
  flex-wrap: wrap;
}

.p-grid-howto__item {
  flex: 0 0 calc( (100% - (var(--column-gap) * 2)) / 3);
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
}

@media screen and (max-width: 768px) {
  .p-grid-about {
    --row-gap: 2.4rem;

    flex-direction: column;
  }

    .p-grid-about__item {
    width: 100%;
  }

  .p-grid-howto__item {
    flex: 0 0 100%;
  }

  .p-grid-howto {
    flex-direction: column;
  }

  .p-grid-howto__item {
    flex: 0 0 100%;
  }
}

/* item */
.itemBlock + .itemBlock {
  margin-top: 8rem;
}

.itemBlock > * + * {
  margin-top: 3.2rem;
}

.itemBlock .detail-review-star .ukomistarRatingSummarySection {
  padding: 0;
}

.itemBlock .detail-review-star .ukomistarRatingSummarySection::after {
  display: none;
}

.itemBlock .detail-review-star {
  margin: 0;
}

.itemBlock .detail-review-star {
  min-height: auto;
}

.itemBlock .itemDesc > * + * {
  margin-top: 1.6rem;
}

.itemBlock .ingredientBlock > * + * {
  margin-top: 1.6rem;
}

.itemBlock .ingredientBlock {
  background-color: #F6F6F6;
  padding: 2.4rem;
}

.lp-grid-item {
  display: grid;
  grid-template-areas: "image title" "image desc" "image ingredient" "image button" "image .";
  grid-template-columns: 33rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.grid01 {
  grid-area: image;
}

.grid02 {
  grid-area: title;
}

.grid03 {
  grid-area: desc;
  margin-top: 2.4rem;
}

.grid04 {
  grid-area: ingredient;
  margin-top: 2.4rem;
}

.grid05 {
  grid-area: button;
  margin-top: 3.2rem;
}

.itemBlock .itemName {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.itemBlock .itemPrice {
  font-size: 1.2rem;
}

.itemBlock .itemInfo {
  display: flex;
  align-items: baseline;
  column-gap: 3.2rem;
}

.itemBlock .itemDetail {
  margin-bottom: 0;
}

.itemBlock .itemDetail__row + .itemDetail__row {
  margin-top: 1.6rem;
}

.itemBlock .itemDetail__term {
  font-size: 1.4rem;
  font-weight: 600;
}

.itemBlock .itemDetail__desc {
  margin: 0;
}

.itemBlock .ingredientBlock__item {
  display: flex;
  column-gap: 1.6rem;
}

.itemBlock .ingredientBlock__thumb {
  flex: 0 0 10rem;
}

.itemBlock .ingredientBlock__name {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.to-secttop {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .lp-grid-item {
    grid-template-areas: "image title" "desc desc" "ingredient ingredient" "button button";
    grid-template-columns: 1fr;
    grid-template-columns: 30% 1fr;
        column-gap: 1.6rem;
  }

  .itemBlock .itemInfo {
    flex-direction: column;
  }

  .itemBlock .ingredientBlock > * + * {
    margin-top: 2.4rem;
  }
}

/* ================================================
balance__bar
================================================ */
.product-c__balance {
  flex: 1;
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-c__bar {
  flex: 1;
  position: relative;
  height: 2px;
  background: #000;
  position: relative;
  margin: 0 8px;
}

.product-c__bar-line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #393C41;
  transform: translateY(-50%);
  z-index: 1;
}

.product-c__tick {
  width: 1px;
  height: 8px;
  background: #393C41;
  z-index: 2;
  position: relative;
  margin: 0;
}

.product-c__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.product-c__marker {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #393c41;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.marker-pos-1 {
  left: 0%;
}

.marker-pos-2 {
  left: 25%;
}

.marker-pos-3 {
  left: 50%;
}

.marker-pos-4 {
  left: 75%;
}

.marker-pos-5 {
  left: 100%;
}

.balanceWrapper {
  padding-top: 0.8rem;
  max-width: 18rem;
}

.balanceText {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .product-c__balance {
    flex-wrap: wrap;
  }

  .product-c__balance .barText__l,
  .product-c__balance .barText__r {
    display: block;
    width: 50%;
    font-size: 1rem;
  }

  .product-c__balance .barText__l {
    order: 1;
  }

  .product-c__balance .barText__r {
    order: 2;
    text-align: right;
  }

  .product-c__balance .product-c__bar {
    order: 3;
    width: 100%;
    margin: 6px 0px 0px;
  }
}

/* ボタン */
.lp-button {
  background-color: #000030;
  border: 1px solid #000030;
  border-radius: 6px;
  display: block;
  padding: 2.4rem 1.6rem;
  width: 100%;
  min-height: 6.4rem;
  max-width: 70rem;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  position: relative;
  transition: all ease 0.4s;
}

.lp-button.--bg-none {
  background-color: transparent;
}

.lp-button.--bg-white {
  background-color: #fff;
  color: #000030;
}

.buttonWrapper {
  margin-top: 2.4rem;
  display: flex;
  column-gap: 4rem;
  justify-content: center;
  align-items: center;
}

.lp-button.--small {
  max-width: 260px;
}

.lp-button.--medium {
  max-width: 340px;
}

@media (any-hover: hover) {
  .lp-button:hover {
    background-color: #fff;
    color: #000030;
  }

  .lp-button.--bg-white:hover {
    background-color: #000030;
    color: #fff;
  }
}

.l-stack {
  --stack-space: 2.4rem;
}

.l-stack.--xs {--stack-space: 0.8rem; }
.l-stack.--sm { --stack-space: 1.6rem; }
.l-stack.--md { --stack-space: 3.2rem; }
.l-stack.--lg { --stack-space: 4.8rem; }
.l-stack.--xl { --stack-space: 6.4rem; }

.l-stack > * + * {
  margin-top: var(--stack-space);
}

.c-acc__tab.--small {
  font-size: 1.4rem;
}

.c-acc__item {
  border-top: 1px solid #ccc;
  padding: 2.4rem 0;
}

.c-acc__item:last-child {
  border-bottom: 1px solid #ccc;
}

/* slider */
.l-slider {
  position: relative;
}

.oil-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 2rem;
}

.oil-swiper .swiper-slide {
  height: auto;
}

.oil-swiper .swiper-button-prev, .oil-swiper .swiper-button-next {
  color: transparent;
}

  .oil-swiper .swiper-button-prev, .oil-swiper .swiper-button-next {
    display: none;
  }


@media screen and (max-width: 768px) {

  .oil-swiper .swiper-scrollbar {
    display: block;
    height: 3px;
    top: 16px;
    position: relative;
  }

  .oil-swiper .swiper-scrollbar-drag {
    color: #ccc;
  }

  .oil-swiper {
    padding-bottom: 1.6rem;
  }
}

.oil-swiper .swiper-button-next.swiper-button-disabled, .oil-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

/* ラベル
------------------------ ̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶̶ */
.label-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.p-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border: 1px solid #949494;
  background-color: #fff;
  padding: 0 1.2rem;
  font-size: 0.8rem;
  line-height: 1;
  color: #949494;
}

.p-label.--fill {
  background-color: #949494;
  color: #fff;
}

.p-label__text.--en {
  font-family:"TTCommons-Regular", sans-serif;
  font-size: 120%;
  transform: translateY(0.1em);
}