@charset "UTF-8";

/* ----------------------------------------------------------
トップページ用CSS
---------------------------------------------------------- */

/*** main-visual ***/

#main-visual {
  width: 100%;
}

#main-visual img {
  display: block;
  width: 100%;
}


/*** お困り事 ***/

#trouble {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #006cb8 5%, #009db7 95%);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 calc(100% - 100px)
  );
}
  @media screen and (max-width: 767px) {
    #trouble {
      clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 calc(100% - 13.334vw)
      );
    }
  }

#trouble .wrapper {
  width: 100%;
  padding: 120px 6vw 180px;
}
  @media screen and (max-width: 767px) {
    #trouble .wrapper {
      padding: 13.334vw 6vw 24vw;
    }
  }


/* 見出し */

.trouble-heading {
  margin-bottom: 40px;
}
  @media screen and (max-width: 767px) {
    .trouble-heading {
      margin-bottom: 5.334vw;
    }
  }


/* カード周辺 */

.trouble-content {
  position: relative;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .trouble-content {
      width: 86vw;
      margin: 0;
    }
  }

.trouble-card {
  color: #140700;
  position: relative;
  z-index: 2;
  width: 700px;
  max-width: 100%;
  border-radius: 20px;
  padding: 16px 70px 15px;
  background-color: #fff;
  box-shadow: 10px 10px 0 #bfe6ed;
}
  @media screen and (max-width: 767px) {
    .trouble-card {
      width: 100%;
      border-radius: 2.667vw;
      padding: 2.8vw 6vw 2.667vw;
      box-shadow: 2vw 2vw 0 #bfe6ed;
    }
  }


/* リスト */

.trouble-item {
  min-height: 113px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #bfe6ed;
  padding: 20px 0 21px;
}
  @media screen and (max-width: 767px) {
    .trouble-item {
      min-height: 0;
      gap: 0;
      padding: 4vw 0 4.934vw;
    }
  }

.trouble-item:last-child {
  border-bottom: 0;
}

.trouble-text {
  font-family: "Local Noto Serif JP", "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
}
  @media screen and (max-width: 767px) {
    .trouble-text {
      font-size: 4.534vw;
      line-height: 1.5;
      align-items: flex-start;
      gap: 1.6vw;
    }
  }

.trouble-text span {
  letter-spacing: 0.08em;
}

.trouble-check {
  flex: 0 0 auto;
  width: 28px;
}
  @media screen and (max-width: 767px) {
    .trouble-check {
      width: 5.334vw;
      margin-top: 1.2vw;
    }
  }

.trouble-text mark {
  color: inherit;
  letter-spacing: 0.08em;
  background:
    linear-gradient(
      transparent 64%,
      #fffaa3 64%,
      #fffaa3 98%,
      transparent 98%
    );
}
  @media screen and (max-width: 767px) {
    .trouble-text mark {
      background:
        linear-gradient(
          transparent 60%,
          #fffaa3 60%,
          #fffaa3 94%,
          transparent 94%
        );
    }
  }


/* アイコン */

.trouble-item-icon {
  flex-shrink: 0;
  width: 46px;
}
  @media screen and (max-width: 767px) {
    .trouble-item-icon {
      width: 12vw;
    }
  }

.trouble-icon {
  flex: 0 0 auto;
  object-fit: contain;
}

.trouble-icon-book {
  width: 40px;
}
  @media screen and (max-width: 767px) {
    .trouble-icon-book {
      width: 10.4vw;
    }
  }

.trouble-icon-eye {
  width: 42px;
}
  @media screen and (max-width: 767px) {
    .trouble-icon-eye {
      width: 10.4vw;
    }
  }

.trouble-icon-food {
  width: 42px;
}
  @media screen and (max-width: 767px) {
    .trouble-icon-food {
      width: 10.934vw;
    }
  }

.trouble-icon-health {
  width: 45px;
}
  @media screen and (max-width: 767px) {
    .trouble-icon-health {
      width: 11.734vw;
    }
  }

.trouble-icon-hobby {
  width: 46px;
}
  @media screen and (max-width: 767px) {
    .trouble-icon-hobby {
      width: 12vw;
    }
  }


/* 人物写真 */

  @media screen and (max-width: 767px) {
    .trouble-photos {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 7.467vw;
      margin-top: 4.667vw;
      padding: 0 1.6vw;
    }
  }

.trouble-photo {
  position: absolute;
  z-index: 1;
}
  @media screen and (max-width: 767px) {
    .trouble-photo {
      position: static;
      width: calc(50% - 3.6vw);
    }
  }

.trouble-photo-man {
  width: 240px;
  left: -200px;
  bottom: -20px;
}
  @media screen and (max-width: 767px) {
    .trouble-photo-man {
      width: 38.667vw;
    }
  }

.trouble-photo-woman {
  width: 240px;
  right: -200px;
  top: -20px;
}
  @media screen and (max-width: 767px) {
    .trouble-photo-woman {
      width: 38.667vw;
    }
  }


/* 矢印・案内文 */

.trouble-guidance {
  margin-top: 50px;
}
  @media screen and (max-width: 767px) {
    .trouble-guidance {
      margin-top: 4vw;
    }
  }

.trouble-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
}
  @media screen and (max-width: 767px) {
    .trouble-arrow {
      margin-bottom: 3.467vw;
    }
  }

.trouble-arrow-small {
  width: 41px;
}
  @media screen and (max-width: 767px) {
    .trouble-arrow-small {
      width: 9.867vw;
    }
  }

.trouble-arrow-large {
  width: 53px;
  margin-top: -10px;
}
  @media screen and (max-width: 767px) {
    .trouble-arrow-large {
      width: 12.267vw;
      margin-top: -2.267vw;
    }
  }

.trouble-guidance p {
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
  @media screen and (max-width: 767px) {
    .trouble-guidance p {
      font-size: 5.334vw;
      line-height: 1.5;
    }
  }

.trouble-guidance p span {
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
  @media screen and (max-width: 767px) {
    .trouble-guidance p span {
      padding-bottom: 3.2vw;
    }
  }

.trouble-guidance p span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 200px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
}
  @media screen and (max-width: 767px) {
    .trouble-guidance p span::after {
      width: 26.667vw;
      height: 0.534vw;
    }
  }


/*** タブエリア ***/

#product-section {
  padding: 74px 0 80px;
}
  @media screen and (max-width: 767px) {
    #product-section {
      padding: 7.6vw 0 6.533vw;
    }
  }


/* タブ */

.product-tabs {
  margin: 0 6vw 48px;
}
  @media screen and (max-width: 767px) {
    .product-tabs {
      margin: 0 0 8vw;
    }
  }

.product-tab-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
  @media screen and (max-width: 767px) {
    .product-tab-list {
      gap: 4vw;
    }
  }

.product-tab-item {
  width: 340px;
}
  @media screen and (max-width: 767px) {
    .product-tab-item {
      width: calc((100% - 16vw) / 3);
    }
  }

.product-tab {
  color: #140700;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 0 15px;
  background: transparent;
  cursor: pointer;
}
  @media screen and (max-width: 1023px) {
    .product-tab {
      min-height: 10vw;
    }
  }
  @media screen and (max-width: 767px) {
    .product-tab {
      font-size: 4vw;
      line-height: 1.3;
      min-height: 16vw;
      padding-bottom: 1.2vw;
    }
  }

/* グレーの下線 */
.product-tab::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #ccc;
}
  @media screen and (max-width: 767px) {
    .product-tab::before {
      height: 1.067vw;
    }
  }

/* ホバー・アクティブ時のターコイズ線 */
.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #009db7;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
  @media screen and (max-width: 767px) {
    .product-tab::after {
      height: 1.067vw;
    }
  }

.product-tab:hover::after,
.product-tab:focus-visible::after,
.product-tab.is-active::after {
  transform: scaleX(1);
}

.product-tab:hover,
.product-tab:focus-visible {
  color: #009db7;
  opacity: 1;
}

.product-tab.is-active {
  color: #009db7;
  cursor: default;
  pointer-events: none;
}

/* ▼を.product-tab基準で配置 */
.product-tab span {
  position: static;
  letter-spacing: 0.08em;
}

/* アクティブタブの▼ */
.product-tab.is-active span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 10px solid #009db7;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  transform: translateX(-50%);
}
  @media screen and (max-width: 767px) {
    .product-tab.is-active span::after {
      bottom: -2vw;
      border-top-width: 2.134vw;
      border-right-width: 2.134vw;
      border-left-width: 2.134vw;
    }
  }

.product-tab-link {
  text-decoration: none;
}


/* タブ内容 */

.product-tab-panel[hidden] {
  display: none;
}

/*** 製品ラインナップ ***/

#products {
  width: 1100px;
  max-width: calc(100% - 12vw);
  margin: 0 auto;
  padding: 20px 0 0;
}
  @media screen and (max-width: 767px) {
    #products {
      width: auto;
      max-width: none;
      margin: 0 4vw;
      padding: 2.667vw 0 0;
    }
  }

.products-lineup {
  border-bottom: 1px solid #bfe6ed;
  margin-bottom: 98px;
  padding-bottom: 78px;
}
  @media screen and (max-width: 767px) {
    .products-lineup {
      margin-bottom: 9.6vw;
      padding-bottom: 12.533vw;
    }
  }

.products-intro {
  width: 1040px;
  max-width: 100%;
  margin: 56px auto 46px;
}
  @media screen and (max-width: 767px) {
    .products-intro {
      margin: 6.933vw auto 6.667vw;
      padding: 0 2vw;
    }
  }

.products-lead {
  font-size: 3.0rem;
  text-align: center;
}
  @media screen and (max-width: 767px) {
    .products-lead {
      font-size: 5.067vw;
    }
  }

.products-lead-small {
  font-size: 2.0rem;
  line-height: 1.25;
}
  @media screen and (max-width: 767px) {
    .products-lead-small {
      font-size: 4vw;
      line-height: 1.5;
      margin-bottom: 1.2vw;
    }

    .products-lead span {
      font-size: 3.467vw;
    }
  }

.products-description {
  text-align: left;
  margin-top: 37px;
}
  @media screen and (max-width: 767px) {
    .products-description {
      margin-top: 5.6vw;
    }
  }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .products-grid {
      grid-template-columns: 1fr;
      gap: 4vw;
      width: 100%;
    }
  }

/* 製品カード */
.products-card {
  min-height: 574px;
  border: 4px solid #7dccd7;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .products-card {
      min-height: 0;
      border-width: 1.067vw;
    }
  }

.products-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
}
  @media screen and (max-width: 767px) {
    .products-card-inner {
      padding: 8vw;
    }
  }

.products-package {
  width: 302px;
  max-width: 100%;
}
  @media screen and (max-width: 767px) {
    .products-package {
      width: 55.6vw;
    }
  }

.products-logo {
  display: block;
  max-width: 100%;
  margin-top: 32px;
}

.products-logo-pv2 {
  width: 291px;
}

.products-logo-pv {
  width: 281px;
}

.products-logo-50dx {
  width: 366px;
}

.products-logo-lutein {
  width: 363px;
}
  @media screen and (max-width: 767px) {
    .products-logo {
      height: auto;
      margin-top: 5.6vw;
    }

    .products-logo-pv2 {
      width: 53.6vw;
    }

    .products-logo-pv {
      width: 51.867vw;
    }

    .products-logo-50dx {
      width: 67.467vw;
    }

    .products-logo-lutein {
      width: 66.8vw;
    }
  }

.products-logo-block {
  text-align: left;
}

.products-functional-label {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  border: 1px solid #140700;
  border-radius: 6px;
  margin-top: 10px;
  padding: 5px 5px 7px 8px;
}
  @media screen and (max-width: 767px) {
    .products-functional-label {
      font-size: 2.208vw;
      border-radius: 1.333vw;
      margin-top: 1.867vw;
      padding: 0.933vw 0.8vw 1.2vw 1.467vw;
    }
  }

.products-card-text {
  font-size: 1.4rem;
  margin-top: 25px;
}
  @media screen and (max-width: 767px) {
    .products-card-text {
      font-size: 3.733vw;
      text-align: left;
      min-height: 0;
      margin-top: 4.133vw;
    }
  }

.products-button {
  width: 300px;
  margin-top: 27px;
  background: linear-gradient(90deg, #006cb8 5%, #009db7 95%);
}
  @media screen and (max-width: 767px) {
    .products-button {
      width: 68vw;
      margin-top: 5.6vw;
    }
  }

.products-note {
  font-size: 1.2rem;
  text-align: right;
  width: 1040px;
  max-width: 100%;
  margin: 16px auto 0;
}
  @media screen and (max-width: 767px) {
    .products-note {
      font-size: 3.2vw;
      margin-top: 4.4vw;
      padding: 0 1.2vw;
    }
  }

/* 製品ストーリー */

.products-story {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .products-story {
      margin-top: 0;
    }
  }

.products-story-lead {
  font-size: 3.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 52px;
}

.products-story-lead-small {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
  @media screen and (max-width: 1023px) {
    .products-story-lead-small {
      line-height: 1.5;
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-lead {
      font-size: 5.067vw;
      letter-spacing: 0.12em;
      margin-bottom: 6.667vw;
    }
    .products-story-lead-small {
      font-size: 4vw;
      letter-spacing: 0.12em;
      margin-bottom: 1.2vw;
    }
  }

.products-story-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
  @media screen and (max-width: 767px) {
    .products-story-list {
      gap: 3.867vw;
    }
  }

.products-story-item {
  display: grid;
  grid-template-columns: 640px 400px;
}
  @media screen and (max-width: 1199px) {
    .products-story-item {
      grid-template-columns: 61.54% 38.46%;
    }
   }

  @media screen and (max-width: 767px) {
    .products-story-item {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }
  }

.products-story-brand {
  grid-template-columns: 400px 640px;
}
  @media screen and (max-width: 1199px) {
    .products-story-brand {
      grid-template-columns: 38.46% 61.54%;
    }
   }

.products-story-manufacture {
  margin-bottom: 30px;
}
  @media screen and (max-width: 767px) {
    .products-story-manufacture {
      margin-bottom: 0;
    }
  }

.products-story-text {
  position: relative;
  z-index: 1;
  width: 640px;
  padding: 40px 100px 46px 50px;
}
  @media screen and (max-width: 1199px) {
    .products-story-text {
      width: 100%;
      padding: 3vw 8vw 3.5vw 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-text {
      width: 88vw;
      min-height: 0;
      padding: 6.4vw 4vw 6.933vw;
    }
  }

.products-story-text-right {
  padding: 40px 50px 46px 100px;
}
  @media screen and (max-width: 1199px) {
    .products-story-text-right {
      padding: 3vw 4vw 3.5vw 8vw;
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-text-right {
      width: 88vw;
      min-height: 0;
      padding: 6.4vw 4vw 6.933vw;
    }
  }
.products-story-development .products-story-text {
  background-color: #e5f6ff;
}

.products-story-brand .products-story-text {
  background-color: #fcf7e7;
  transform: translateY(30px);
}
  @media screen and (max-width: 1199px) {
    .products-story-brand .products-story-text {
      transform:translateY(3vw);
    }
   }
  @media screen and (max-width: 767px) {
    .products-story-brand .products-story-text {
      transform:translateY(0);
    }
  }

.products-story-manufacture .products-story-text {
  background-color: #fcf1ed;
  /* 注釈が小さいため下余白を調整 */
  padding-bottom: 50px;
}
  @media screen and (max-width: 1199px) {
    .products-story-manufacture .products-story-text {
      padding-bottom: 3.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-manufacture .products-story-text {
      padding-bottom: 7.467vw;
    }
  }

.products-story-text h3 {
  font-size: 3.0rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #140700;
  padding-bottom: 23px;
  margin-bottom: 23px;
}
  @media screen and (max-width: 767px) {
    .products-story-text h3 {
      font-size: 5.067vw;
      padding: 0 2vw 4vw;
      margin-bottom: 4vw;
    }
  }

.products-story-text p {
  text-align: left;
  margin-bottom: 21px;
}

.products-story-text p.products-story-text-last {
  margin-bottom: 0;
}

.products-story-text .products-story-catch {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
  @media screen and (max-width: 767px) {
    .products-story-text p {
      font-size: 4vw;
      margin-bottom: 3.067vw;
      padding: 0 2vw;
    }

    .products-story-text .products-story-catch {
      font-size: 4.533vw;
      text-align: center;
      margin-bottom: 3.467vw;
    }
  }

.products-story-photo {
  position: relative;
  z-index: 2;
  width: 450px;
  max-width: none;
}
  @media screen and (max-width: 1199px) {
    .products-story-photo {
      width: calc(100% + 4vw);
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-photo {
      width: 60vw;
      align-self: end;
      order: 2;
    }
  }

.products-story-development .products-story-photo {
  transform: translate(-50px, 30px);
}
  @media screen and (max-width: 1199px) {
    .products-story-development .products-story-photo {
      transform: translate(-4vw, 3vw);
    }
  }

.products-story-brand .products-story-photo {
  justify-self: start;
}

.products-story-manufacture .products-story-photo {
  justify-self: end;
  align-self: end;
  transform: translateY(30px);
}
  @media screen and (max-width: 1199px) {
    .products-story-manufacture .products-story-photo {
      transform: translateY(3vw);
    }
  }
  @media screen and (max-width: 767px) {
    .products-story-development .products-story-photo,
    .products-story-brand .products-story-photo,
    .products-story-manufacture .products-story-photo {
      margin: 0;
      transform: translate(0, -4vw);
    }
  }

.products-story-point h4 {
  font-size: 2.0rem;
  text-align: left;
  margin-bottom: 4px;
}
  @media screen and (max-width: 767px) {

    .products-story-point h4 {
      font-size: 4.267vw;
      padding: 0 2vw;
    }
  }

.products-floraglo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  transform: translateY(-5px);
}
.products-story-text .products-floraglo {
  margin-bottom: 20px;
}
  @media screen and (max-width: 767px) {
    .products-story-text .products-floraglo {
      padding: 0 3.467vw 0 0;
      margin-bottom: 1.6vw;
    }
  }


.products-floraglo span {
  font-size: 1.2rem;
}

.products-floraglo img {
  width: 128px;
}
  @media screen and (max-width: 767px) {
    .products-floraglo {
      gap: 0.4vw;
    }

    .products-floraglo span {
      font-size: 3.2vw;
    }

    .products-floraglo img {
      width: 29.6vw;
    }
  }

.products-story-note {
  font-size: 1.2rem;
}
.products-story-text .products-story-note {
  margin-top: 12px;
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    .products-story-text .products-story-note {
      font-size: 3.2vw !important;
      text-indent: -3.2vw;
      padding-left: 3.2vw;
      margin: 1.733vw 2vw 0;
    }
  }


/*** FloraGLOルテイン ***/

#flora-glo {
  width: 1100px;
  max-width: calc(100% - 12vw);
  margin: 0 auto;
  padding-top: 20px;
}
  @media screen and (max-width: 767px) {
    #flora-glo {
      width: auto;
      max-width: none;
      margin: 0 4vw 4vw;
      padding-top: 2.667vw;
    }
  }

.floraglo-container {
  width: 1100px;
  max-width: 100%;
  margin: 59px auto 0;
}
  @media screen and (max-width: 767px) {
    .floraglo-container {
      margin-top: 7.467vw;
    }
  }

.floraglo-content {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}

.floraglo-section {
  margin: 0;
}

/* 区切り線は1100pxの外側コンテナに配置 */
.floraglo-divider {
  width: 100%;
  height: 1px;
  margin: 94px 0 89px;
  background-color: #bfe6ed;
}
  @media screen and (max-width: 767px) {
    .floraglo-divider {
      margin: 9.733vw 0 9.2vw;
    }
  }

.floraglo-lead {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 34px;
}
  @media screen and (max-width: 767px) {
    .floraglo-lead {
      font-size: 4.533vw;
      margin-top: 6.933vw;
    }
  }

.floraglo-text {
  text-align: left;
  margin-top: 31px;
}
  @media screen and (max-width: 767px) {
    .floraglo-text {
      margin-top: 6vw;
      padding: 0 2vw;
    }
  }

/* ドットライン（4pxドット／6px間隔） */
.dot-line {
  height: 4px;
  background:
    radial-gradient(circle, currentColor 2px, transparent 2px)
    -3px center / 10px 4px repeat-x;
  /* 左端のドット位置を補正 */
}

.floraglo-dot-line {
  color: #bfe6ed;
}

/* ルテインを多く含む食品 */

.floraglo-food-card {
  border: 4px solid #bfe6ed;
  background-color: #fff;
  margin-top: 34px;
  padding: 32px 40px 37px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-card {
      margin-top: 7.067vw;
      padding: 6.4vw 2.667vw 7.067vw;
    }
  }

.floraglo-food-card > p {
  margin-top: 26px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-card > p {
      margin-top: 4.933vw;
    }
  }

.floraglo-food-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 26px;
}
  @media screen and (max-width: 1199px) {
    .floraglo-food-list {
      flex-wrap: wrap;
      gap: 24px 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .floraglo-food-list {
      gap: 3.2vw 1.6vw;
      margin-top: 4.267vw;
    }
  }

.floraglo-food-item {
  width: 170px;
}
  @media screen and (max-width: 1023px) {
    .floraglo-food-item {
      width: calc((100% - 40px) / 3);
    }
  }
  @media screen and (max-width: 767px) {
    .floraglo-food-item {
      width: calc((100% - 5.334vw) / 3);
    }
  }

.floraglo-food-image {
  position: relative;
  width: 170px;
  height: 170px;
  border: 4px solid #bfe6ed;
  border-radius: 50%;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-image {
      width: 25.067vw;
      height: 25.067vw;
    }
  }

.floraglo-food-image img {
  position: absolute;
  max-width: none;
}

.floraglo-food-item > p {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-item > p {
      font-size: 3.467vw;
      margin-top: 0.4vw;
    }
  }

/* 野菜イラストは見た目のバランスで個別調整 */
.floraglo-food-kale img {
  width: 124px;
  left: 17px;
  top: 18px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-kale img {
      width: 18.133vw;
      left: 2.133vw;
      top: 2.133vw;
    }
  }

.floraglo-food-spinach img {
  width: 127px;
  left: 19px;
  top: 16px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-spinach img {
      width: 18.533vw;
      left: 2.533vw;
      top: 2vw;
    }
  }

.floraglo-food-broccoli img {
  width: 126px;
  left: 14px;
  top: 22px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-broccoli img {
      width: 18.533vw;
      left: 1.6vw;
      top: 2.8vw;
    }
  }

.floraglo-food-carrot img {
  width: 143px;
  left: 14px;
  top: 12px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-carrot img {
      width: 21.067vw;
      left: 1.467vw;
      top: 1.333vw;
    }
  }

.floraglo-food-pumpkin img {
  width: 122px;
  left: 20px;
  top: 24px;
}
  @media screen and (max-width: 767px) {
    .floraglo-food-pumpkin img {
      width: 17.867vw;
      left: 2.533vw;
      top: 2.933vw;
    }
  }

.floraglo-about-note {
  margin-top: 35px;
}
  @media screen and (max-width: 767px) {
    .floraglo-about-note {
      margin-top: 6.933vw;
    }
  }

/* FloraGLOルテインとは */

.floraglo-brand-intro {
  display: grid;
  grid-template-columns: 480px 520px;
  gap: 40px;
  align-items: center;
  margin-top: 35px;
}
  @media screen and (max-width: 1199px) {
    .floraglo-brand-intro {
      grid-template-columns: 42% 1fr;
      gap: 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .floraglo-brand-intro {
      display: flex;
      flex-direction: column;
      gap: 7.2vw;
      margin-top: 6.333vw;
    }
  }

.floraglo-brand-text {
  text-align: left;
}
  @media screen and (max-width: 767px) {
    .floraglo-brand-text {
      padding: 0 2vw;
    }
  }

.floraglo-brand-text > p + p {
  margin-top: 20px;
}
  @media screen and (max-width: 767px) {
    .floraglo-brand-text > p + p {
      margin-top: 3.067vw;
    }
  }

.floraglo-logo-block {
  text-align: center;
  margin-top: 26px;
}
  @media screen and (max-width: 767px) {
    .floraglo-logo-block {
      margin-top: 6.933vw;
    }
  }

.floraglo-logo-block img {
  width: 214px;
}
  @media screen and (max-width: 767px) {
    .floraglo-logo-block img {
      width: 56.8vw;
    }
  }

.floraglo-logo-block p {
  font-size: 1.2rem;
  margin-top: 16px;
}
  @media screen and (max-width: 767px) {
    .floraglo-logo-block p {
      font-size: 3.2vw;
      margin-top: 3.067vw;
    }
  }

.floraglo-marigold-photo {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.floraglo-marigold-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: #bfe6ed;
  z-index: -1;
}

.floraglo-marigold-photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background: #bfe6ed;
  z-index: -1;
}
  @media screen and (max-width: 767px) {
    .floraglo-marigold-photo {
      padding: 4vw;
      align-self: flex-start;
    }

    .floraglo-marigold-photo::before {
      width: 35.333vw;
      height: 35.333vw;
    }

    .floraglo-marigold-photo::after {
      width: 17.333vw;
      height: 17.333vw;
    }
  }

/* 研究報告 */

.floraglo-report-card {
  border: 4px solid #bfe6ed;
  background-color: #fff;
  margin-top: 40px;
  padding: 32px 40px 33px;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-card {
      margin-top: 8vw;
      padding: 6.4vw 6vw 6.8vw;
    }
  }

.floraglo-report-card .heading-04 sup {
  margin-left: 2px;
}

.floraglo-report-lead {
  margin-top: 26px;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-lead {
      text-align: left;
      margin-top: 4.933vw;
    }
  }

.floraglo-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 307px;
  gap: 40px;
  margin-top: 26px;
  align-items: stretch;
}
  @media screen and (max-width: 1023px) {
    .floraglo-report-layout {
      grid-template-columns: minmax(0, 1fr) 30%;
      gap: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .floraglo-report-layout {
      display: flex;
      flex-direction: column;
      gap: 8vw;
      margin-top: 6.8vw;
    }
  }

.floraglo-report-main {
  display: flex;
}

.floraglo-report-main-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.floraglo-report-main-inner .dot-line:last-child {
  margin-top: auto;
}

.floraglo-report-title {
  font-size: 1.6rem;
  text-align: left;
  border-left: 4px solid #bfe6ed;
  margin-top: 20px;
  padding-left: 8px;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-title {
      font-size: 3.733vw;
      margin-top: 7.467vw;
      padding-left: 1.467vw;
    }
  }

.floraglo-report-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}
  @media screen and (max-width: 1023px) {
    .floraglo-report-list {
      gap: 5px;
    }
  }
  @media screen and (max-width: 767px) {
    .floraglo-report-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.867vw 2.133vw;
      margin-top: 4.267vw;
    }
  }

.floraglo-report-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floraglo-report-box {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  width: 100%;
  min-height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 0 10px;
  padding: 8px 4px;
  background: #dff3f6;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-box {
      font-size: 3.733vw;
      line-height: 1.35;
      min-height: 21.733vw;
      border-radius: 0 8px 0 8px;
      padding: 1.333vw 0.533vw;
    }
  }

.floraglo-report-label {
  display: block;
  letter-spacing: inherit;
}

.floraglo-report-list small {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-top: 1px;
  align-self: flex-end;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-list small {
      font-size: 3.2vw;
      margin-top: 0.667vw;
    }
  }

.floraglo-report-text {
  font-size: 1.4rem;
  text-align: left;
  margin-top: 13px;
}
  @media screen and (max-width: 767px) {
    .floraglo-report-text {
      font-size: 3.733vw;
      margin-top: 3.6vw;
    }
  }

#flora-glo .floraglo-report-notes {
  margin: 12px 0 18px;
}
  @media screen and (max-width: 767px) {
    #flora-glo .floraglo-report-notes {
      margin: 3.333vw 0 5.733vw;
    }
  }

#flora-glo .floraglo-report-notes li {
  text-indent: -2.6rem;
  padding-left: 2.6rem;
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    #flora-glo .floraglo-report-notes li {
      text-indent: -6.667vw;
      padding-left: 6.667vw;
      margin-bottom: 1.6vw;
    }
  }

.floraglo-eye-figure {
  border: 4px solid #d9f0f4;
  background-color: #fff;
  border-radius: 20px;
  align-self: stretch;
  padding: 32px 15px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
  @media screen and (max-width: 767px) {
    .floraglo-eye-figure {
      width: 100%;
      padding: 4.267vw 3.2vw 5.333vw;
    }
  }

.floraglo-eye-figure figcaption {
  font-size: 1.6rem;
  margin-bottom: 34px;
}
  @media screen and (max-width: 767px) {
    .floraglo-eye-figure figcaption {
      font-size: 3.733vw;
      margin-bottom: 3.067vw;
    }
  }

.floraglo-eye-figure img {
  width: 223px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .floraglo-eye-figure img {
      width: 59.467vw;
    }
  }

.floraglo-sources {
  font-size: 1.2rem;
  text-align: left;
  margin-top: 26px;
}
  @media screen and (max-width: 767px) {
    .floraglo-sources {
      font-size: 3.2vw;
      margin-top: 7.067vw;
    }
  }

.floraglo-sources ol {
  list-style: none;
}
  @media screen and (max-width: 767px) {
    .floraglo-sources ol {
      margin-top: 0;
    }
  }

.floraglo-sources li {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
  margin-bottom: 6px;
}
  @media screen and (max-width: 767px) {
    .floraglo-sources li {
      margin-bottom: 1.067vw;
    }
  }

.floraglo-sources li + li {
  margin-top: 4px;
}
  @media screen and (max-width: 767px) {
    .floraglo-sources li + li {
      margin-top: 1.6vw;
    }
  }

/* 毎日の健康習慣に */

.floraglo-habit {
  text-align: center;
}

.floraglo-habit > p {
  font-size: 2.4rem;
  margin-top: 35px;
}
  @media screen and (max-width: 767px) {
    .floraglo-habit > p {
      font-size: 4.533vw;
      padding: 0 4vw;
      margin-top: 6.8vw;
    }
  }

.floraglo-habit > p + p {
  margin-top: 27px;
}
  @media screen and (max-width: 767px) {
    .floraglo-habit > p + p {
      margin-top: 5.2vw;
    }
  }

/* 最下部のマリーゴールドは1100pxの外側コンテナに配置 */
.floraglo-bottom {
  width: 100%;
  margin-top: 46px;
}
  @media screen and (max-width: 767px) {
    .floraglo-bottom {
      margin-top: 8.667vw;
    }
  }

.floraglo-bottom img {
  display: block;
  width: 100%;
}


/*** 医療機関からの声 ***/

#doctor {
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #006cb8;
  clip-path: polygon(
    0 0,
    100% 100px,
    100% 100%,
    0 100%
  );
}
  @media screen and (max-width: 767px) {
    #doctor {
      clip-path: polygon(
        0 0,
        100% 13.334vw,
        100% 100%,
        0 100%
      );
    }
  }

#doctor .wrapper {
  width: 1100px;
  max-width: calc(100% - 12vw);
  margin: 0 auto;
  padding: 194px 0 116px;
}
  @media screen and (max-width: 767px) {
    #doctor .wrapper {
      width: auto;
      max-width: none;
      margin: 0 4vw;
      padding: 26.4vw 0 14.933vw;
    }
  }


/* 見出し */

.doctor-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 64px;
}
  @media screen and (max-width: 767px) {
    .doctor-heading {
      padding: 0 5.333vw;
    }
  }

.doctor-heading h2 {
  line-height: 1.35;
  text-align: center;
}

.doctor-heading-small,
.doctor-heading-large {
  display: block;
}

.doctor-heading-small {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-small {
      font-size: 4.8vw;
    }
  }

.doctor-heading-large {
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-large {
      font-size: 7.467vw;
    }
  }

.doctor-heading-large small {
  font-size: 4.2rem;
  letter-spacing: 0.08em;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-large small {
      font-size: 5.6vw;
    }
  }

.doctor-heading-bracket {
  position: absolute;
  top: 50%;
  width: 17px;
  height: 106px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateY(-50%);
}
  @media screen and (max-width: 767px) {
    .doctor-heading-bracket {
      width: 2.267vw;
      height: 15.2vw;
      border-top-width: 0.8vw;
      border-bottom-width: 0.8vw;
    }
  }

.doctor-heading-bracket-left {
  left: 0;
  border-left: 4px solid #fff;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-bracket-left {
      border-left-width: 0.8vw;
    }
  }

.doctor-heading-bracket-right {
  right: 0;
  border-right: 4px solid #fff;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-bracket-right {
      border-right-width: 0.8vw;
    }
  }

.doctor-heading-deco {
  position: absolute;
  top: -14px;
  width: 23px;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-deco {
      top: -2.4vw;
      width: 3.067vw;
    }
  }

.doctor-heading-deco-left {
  left: -24px;
}
  @media screen and (max-width: 767px) {
    .doctor-heading-deco-left {
      left: -3.2vw;
    }
  }

.doctor-heading-deco-right {
  right: -24px;
  transform: scaleX(-1);
}
  @media screen and (max-width: 767px) {
    .doctor-heading-deco-right {
      right: -3.2vw;
    }
  }


/* 吹き出し・人物 */

.doctor-content {
  position: relative;
  min-height: 496px;
  margin-top: 51px;
}
  @media screen and (max-width: 1023px) {
    .doctor-content {
      min-height: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 50px 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .doctor-content {
      gap: 8vw 4vw;
      margin: 7.333vw 3.333vw 0 2vw;
    }
  }

.doctor-balloon {
  color: #140700;
  text-align: center;
  position: absolute;
  z-index: 2;
  width: 246px;
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 18px 16px;
  background-color: #fff;
  box-shadow: 8px 8px 0 #bfdaed;
}
  @media screen and (max-width: 1023px) {
    .doctor-balloon {
      text-align: left;
      position: relative;
      inset: auto;
      width: 100%;
      padding: 2.4vw 4.8vw;
    }
  }
  @media screen and (max-width: 767px) {
    .doctor-balloon {
      min-height: 38.4vw;
      padding: 4.267vw 5.067vw 4.1333vw 5.333vw;
      box-shadow: 1.333vw 1.333vw 0 #bfdaed;
    }
  }

.doctor-balloon::before,
.doctor-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 15px;
  transform: translateX(-50%);
}
  @media screen and (max-width: 767px) {
    .doctor-balloon::before,
    .doctor-balloon::after {
      width: 2.667vw;
      height: 2.667vw;
    }
  }

.doctor-balloon::before {
  z-index: 0;
  bottom: -22px;
  background-color: #bfdaed;
  transform: translateX(calc(-50% + 8px));
}
  @media screen and (max-width: 767px) {
    .doctor-balloon::before {
      bottom: -3.867vw;
      transform: translateX(calc(-50% + 1.333vw));
    }
  }

.doctor-balloon::after {
  z-index: 1;
  bottom: -14px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .doctor-balloon::after {
      bottom: -2.533vw;
    }
  }

  @media screen and (max-width: 767px) {
    .doctor-balloon p {
      letter-spacing: 0.1em;
    }
  }

/* A：左右対称の三角 */
.doctor-balloon-tail-a::before,
.doctor-balloon-tail-a::after {
  clip-path: polygon(
    0 0,
    100% 0,
    50% 100%
  );
}

/* B：右側が垂直の三角 */
.doctor-balloon-tail-b::before,
.doctor-balloon-tail-b::after {
  clip-path: polygon(
    0 0,
    70% 0,
    70% 100%
  );
}
  @media screen and (max-width: 1023px) {
    .doctor-balloon-tail-b::before,
    .doctor-balloon-tail-b::after {
      clip-path: polygon(
        0 0,
        100% 0,
        50% 100%
      );
    }
  }

.doctor-balloon-tail-reverse::before {
  transform: translateX(calc(-50% + 8px)) scaleX(-1);
}
  @media screen and (max-width: 767px) {
    .doctor-balloon-tail-reverse::before {
      transform: translateX(calc(-50% + 1.333vw)) scaleX(-1);
    }
  }

.doctor-balloon-tail-reverse::after {
  transform: translateX(-50%) scaleX(-1);
}

.doctor-balloon-01 {
  left: 0;
  top: 100px;
}

.doctor-balloon-02 {
  left: 282px;
  top: 0;
}

.doctor-balloon-03 {
  right: 290px;
  top: 30px;
}

.doctor-balloon-04 {
  right: 8px;
  top: 140px;
}

  @media screen and (max-width: 1023px) {
    .doctor-balloon-01,
    .doctor-balloon-02,
    .doctor-balloon-03,
    .doctor-balloon-04 {
      inset: auto;
    }
  }

.doctor-illustration {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 505px;
  transform: translateX(calc(-50% + 5px));
}
  @media screen and (max-width: 1023px) {
    .doctor-illustration {
      position: static;
      grid-column: 1 / -1;
      margin: 10px auto 0;
      transform: none;
    }
  }
  @media screen and (max-width: 767px) {
    .doctor-illustration {
      width: 80.933vw;
      margin: -1.6vw auto 0;
      transform: translateX(1.467vw);
    }
  }

.doctor-illustration img {
  display: block;
  width: 100%;
}

.doctor-source {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: right;
  position: absolute;
  right: -2px;
  bottom: -2px;
}
  @media screen and (max-width: 1023px) {
    .doctor-source {
      position: static;
      grid-column: 1 / -1;
      width: 100%;
      margin-top: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .doctor-source {
      font-size: 3.2vw;
      margin-top: -0.667vw;
    }
  }

.doctor-notes {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 55px;
}
  @media screen and (max-width: 767px) {
    .doctor-notes {
      font-size: 3.733vw;
      margin: 6.267vw 2vw 0;
    }
  }

.doctor-notes li {
  text-indent: -0.6em;
  padding-left: 0.6em;
}

.doctor-notes li + li {
  margin-top: 4px;
}

  @media screen and (max-width: 767px) {
    .doctor-notes li + li {
      margin-top: 0.8vw;
    }
  }


/*** お知らせ ***/

#information {
  position: relative;
}

#information .wrapper {
  width: 1100px;
  max-width: calc(100% - 12vw);
  padding: 100px 0 120px;
}
  @media screen and (max-width: 767px) {
    #information .wrapper {
      width: auto;
      max-width: none;
      margin: 0 4vw;
      padding: 16vw 0 10.667vw;
    }
  }

.information-box {
  border: 4px solid #bfe6ed;
  padding: 60px 60px 56px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .information-box {
      padding: 8vw 6vw 7.067vw;
    }
  }


/* 見出し */

.information-heading {
  text-align: center;
}

.information-heading-en {
  display: block;
  width: 142px;
  margin: 0 auto 7px;
}
  @media screen and (max-width: 767px) {
    .information-heading-en {
      width: 28.533vw;
      margin-bottom: 2.267vw;
    }
  }

.information-heading-main {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
  @media screen and (max-width: 767px) {
    .information-heading-main {
      gap: 2.133vw;
    }
  }

.information-heading-main span {
  letter-spacing: 0.08em;
}

.information-heading-icon {
  flex: 0 0 auto;
  width: 32px;
  transform: translateY(3px);
}
  @media screen and (max-width: 767px) {
    .information-heading-icon {
      width: 5.333vw;
      align-self: flex-start;
      margin-top: 1.067vw;
      transform: translate(0.533vw, 0.667vw);
    }
  }


/* リード文 */

.information-lead {
  font-size: 2.0rem;
  margin-top: 34px;
}
  @media screen and (max-width: 767px) {
    .information-lead {
      font-size: 4.267vw;
      text-align: left;
      margin-top: 6.667vw;
    }
  }


/* カード */

.information-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 35px;
}
  @media screen and (max-width: 767px) {
    .information-card-list {
      grid-template-columns: 1fr;
      gap: 5.333vw;
      margin-top: 7.067vw;
    }
  }

.information-card {
  min-height: 188px;
  border: 4px solid #bfe6ed;
  border-radius: 20px;
  padding: 24px 24px 26px 26px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .information-card {
      min-height: 0;
      padding: 4vw 4vw 4.267vw;
    }
  }

.information-card .heading-04 {
  font-size: 2.0rem;
  letter-spacing: 0.12em;
  padding-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .information-card .heading-04 {
      font-size: 4.267vw;
      letter-spacing: 0.08em;
      padding-bottom: 2.934vw;
    }
  }

.information-card p {
  text-align: left;
  margin-top: 20px;
}
  @media screen and (max-width: 767px) {
    .information-card p {
      margin-top: 3.6vw;
    }
  }

.information-card sup {
  margin-right: -0.2em;
}


/* 注釈・本文 */

.information-note {
  font-size: 1.2rem;
  text-align: left;
  text-indent: -0.8em;
  padding-left: 0.8em;
  margin-top: 16px;
}
  @media screen and (max-width: 767px) {
    .information-note {
      font-size: 3.2vw;
      margin-top: 4vw;
    }
  }

.information-text {
  text-align: left;
  margin-top: 32px;
}
  @media screen and (max-width: 767px) {
    .information-text {
      margin-top: 6vw;
    }
  }


/*** FAQ ***/

#faq {
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #1ba3d6;
  clip-path: polygon(
    0 0,
    100% 100px,
    100% 100%,
    0 100%
  );
}
  @media screen and (max-width: 767px) {
    #faq {
      clip-path: polygon(
        0 0,
        100% 13.334vw,
        100% 100%,
        0 100%
      );
    }
  }

#faq .wrapper {
  width: 1100px;
  max-width: calc(100% - 12vw);
  margin: 0 auto;
  padding: 180px 0 120px;
}
  @media screen and (max-width: 767px) {
    #faq .wrapper {
      width: auto;
      max-width: none;
      margin: 0 4vw;
      padding: 24vw 0 16vw;
    }
  }


/* 見出し */

.faq-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 81px;
}
  @media screen and (max-width: 767px) {
    .faq-heading {
      width: 100%;
      padding: 0 2vw;
    }
  }

.faq-heading h2 {
  font-weight: 500;
  text-align: center;
}

.faq-heading-small,
.faq-heading-main {
  color: #140700;
  display: table;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.faq-heading-small {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding: 3px 17px 6px 20px;
}
  @media screen and (max-width: 767px) {
    .faq-heading-small {
      font-size: 4vw;
      letter-spacing: 0.06em;
      white-space: nowrap;
      margin-bottom: 2.8vw;
      padding: 0.267vw 2.133vw 0.4vw 2.533vw;
    }
  }

.faq-heading-main {
  font-size: 3.8rem;
  display: inline-block;
  padding: 0 21px 3px 21px;
}
  @media screen and (max-width: 1023px) {
    .faq-heading-main {
      font-size: 3.3rem;
    }
  }
  @media screen and (max-width: 767px) {
    .faq-heading-main {
      font-size: 6.4vw;
      width: fit-content;
      max-width: 100%;
      background: none;
      padding: 0;
    }
  }

.faq-heading-main > span {
  display: inline;
  letter-spacing: 0.08em;
}

  @media screen and (max-width: 767px) {
    .faq-heading-main > span {
      line-height: 1;
      display: table;
      background: #fff;
      padding: 1.2vw 2.933vw 1.733vw;
    }

    .faq-heading-main > span:first-child {
      margin: 0 0 0 -3.067vw;
    }

    .faq-heading-main > span:last-child {
      margin: 0 -3.2vw 0 10vw;
    }
  }

.faq-heading-deco {
  position: absolute;
  top: 26px;
  width: 61px;
}
  @media screen and (max-width: 767px) {
    .faq-heading-deco {
      top: 14.133vw;
      width: 9.733vw;
    }
  }

.faq-heading-deco-left {
  left: 0;
}
  @media screen and (max-width: 767px) {
    .faq-heading-deco-left {
      left: -2vw;
    }
  }

.faq-heading-deco-right {
  right: 0;
  transform: scaleX(-1);
}
  @media screen and (max-width: 767px) {
    .faq-heading-deco-right {
      right: -2vw;
    }
  }


/* リード文 */

.faq-lead {
  font-size: 2.0rem;
  margin-top: 54px;
}
  @media screen and (max-width: 1023px) {
    .faq-lead {
      text-align: left;
    }
  }
  @media screen and (max-width: 767px) {
    .faq-lead {
      font-size: 4.267vw;
      margin: 5.067vw 2vw 0;
    }
  }


/* FAQカード */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 55px;
}
  @media screen and (max-width: 767px) {
    .faq-list {
      gap: 5.333vw;
      margin-top: 6.8vw;
    }
  }

.faq-card {
  color: #140700;
  text-align: left;
  border-radius: 20px 0 20px 0;
  padding: 40px 40px 45px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .faq-card {
      padding: 8vw 6vw 7.6vw;
    }
  }


/* Q・A共通 */

.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  text-align: center;
}
  @media screen and (max-width: 767px) {
    .faq-icon {
      width: auto;
    }
  }

.faq-icon img {
  display: block;
  margin: 0 auto;
}

.faq-question .faq-icon img {
  width: 31px;
}

.faq-answer-heading .faq-icon img {
  width: 28px;
}
  @media screen and (max-width: 767px) {
    .faq-question .faq-icon img {
      width: 8vw;
    }

    .faq-answer-heading .faq-icon img {
      width: 7.2vw;
    }
  }


/* 質問 */

.faq-question {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
  @media screen and (max-width: 767px) {
    .faq-question {
      display: block;
    }
  }

.faq-question-text {
  font-size: 2.0rem;
}
  @media screen and (max-width: 767px) {
    .faq-question-text {
      font-size: 4.267vw;
      margin-top: 3.733vw;
    }
  }


/* 点線 */

.faq-dot-line {
  color: #8dd1ea;
  margin: 31px 0 29px;
}
  @media screen and (max-width: 767px) {
    .faq-dot-line {
      margin: 6.933vw 0 8vw;
    }
  }


/* 回答 */

.faq-answer-heading {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-bottom: 25px;
}
  @media screen and (max-width: 767px) {
    .faq-answer-heading {
      display: block;
      padding-bottom: 6.933vw;
    }
  }

.faq-answer-heading p {
  font-size: 2.0rem;
}
  @media screen and (max-width: 767px) {
    .faq-answer-heading p {
      font-size: 4.267vw;
      margin-top: 3.733vw;
    }
  }

.faq-answer-body {
  border-top: 1px solid #8dd1ea;
  margin-left: 53px;
  padding-top: 23px;
  padding-right: 30px;
}
  @media screen and (max-width: 1023px) {
    .faq-answer-body {
      padding-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .faq-answer-body {
      margin-left: 0;
      padding-top: 6.933vw;
    }
  }

.faq-answer-body > p + p {
  margin-top: 14px;
}
  @media screen and (max-width: 767px) {

    .faq-answer-body > p + p {
      margin-top: 3.2vw;
    }
  }

.faq-source {
  font-size: 1.2rem !important;
  text-align: right;
  margin-top: 22px !important;
}
  @media screen and (max-width: 767px) {
    .faq-source {
      font-size: 3.2vw !important;
      white-space: nowrap;
      margin-top: 3.467vw !important;
    }
  }


/* 表 */

.faq-table-block {
  margin-top: 30px;
  transform: translateX(-12px);
}
  @media screen and (max-width: 767px) {
    .faq-table-block {
      margin-top: 5.733vw;
      transform: none;
    }
  }

.faq-table-heading {
  text-align: center;
  margin-bottom: 15px;
}
  @media screen and (max-width: 767px) {
    .faq-table-heading {
      white-space: nowrap;
      margin-bottom: 4.267vw;
    }
  }

.faq-table-heading sup {
  margin-left: 0.1em;
}

.faq-table-list {
  width: 856px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    .faq-table-list {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

.faq-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.faq-table th,
.faq-table td {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  vertical-align: middle;
  border: 2px solid #ddd;
  height: 52px;
  padding: 10px 15px 10px 17px;
}
  @media screen and (max-width: 767px) {
    .faq-table th,
    .faq-table td {
      font-size: 3.733vw;
      height: auto;
      padding: 2.4vw 3.067vw;
    }
  }

.faq-table th {
  text-align: left;
  width: 38%;
  border-right: 0;
  background-color: #e4f3f9;
}

.faq-table td {
  text-align: right;
  border-left: 0;
  background-color: #fff;
}

  @media screen and (max-width: 767px) {
    .faq-table-list .faq-table + .faq-table {
      margin-top: -2px;
    }

    .faq-table th {
      width: 38%;
    }
  }

.faq-table td.faq-table-center {
  text-align: center;
}

.faq-table th.faq-table-large {
  height: 104px;
}
  @media screen and (max-width: 767px) {
    .faq-table th.faq-table-large {
      height: auto;
    }
  }

#faq .faq-table-notes {
  margin-top: 16px;
  transform: translateX(40px);
}
  @media screen and (max-width: 767px) {
    #faq .faq-table-notes {
      margin-top: 4.533vw;
      transform: none;
    }
  }


#faq .faq-table-notes li {
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    #faq .faq-table-notes li {
      margin-bottom: 1.6vw;
    }
    #faq .faq-table-notes li:last-child {
      margin-bottom: 0;
    }
  }


/* FAQ一覧ボタン */

.faq-button {
  color: #1ba3d6;
  width: 420px;
  margin-top: 60px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .faq-button {
      width: 73.333vw;
      margin-top: 8vw;
    }
  }


/*** 定期お届けサービス ***/

#subscription {
  background-color: #009db7;
}

#subscription .wrapper {
  width: 100%;
  padding: 120px 6vw;
}
  @media screen and (max-width: 767px) {
    #subscription .wrapper {
      padding: 16vw 4vw;
    }
  }

.subscription-box {
  width: 1100px;
  max-width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  padding: 67px 60px 80px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .subscription-box {
      width: 100%;
      border-radius: 5.333vw;
      padding: 6vw 6vw 8vw;
    }
  }

/* 導入文 */

.subscription-intro {
  margin-top: 44px;
}
  @media screen and (max-width: 767px) {
    .subscription-intro {
      text-align: left;
      margin-top: 6.533vw;
    }
  }

.subscription-intro p {
  font-size: 2.0rem;
}
  @media screen and (max-width: 767px) {
    .subscription-intro p {
      font-size: 4.267vw;
    }
  }

.subscription-intro .subscription-intro-emphasis {
  font-size: 3.2rem;
}
  @media screen and (max-width: 767px) {
    .subscription-intro .subscription-intro-emphasis {
      font-size: 5.6vw;
    }
  }

.subscription-intro mark,
.subscription-point-description mark {
  color: inherit;
  background:
    linear-gradient(
      transparent 62%,
      #fffaa3 62%,
      #fffaa3 94%,
      transparent 94%
    );
}

/* 3つのPOINT */

.subscription-point-list {
  width: 798px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin: 48px auto 0;
}
  @media screen and (max-width: 1023px) {
    .subscription-point-list {
      gap: 3vw;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-point-list {
      display: flex;
      flex-direction: column;
      gap: 5.333vw;
      width: 100%;
      margin-top: 7.467vw;
    }
  }

.subscription-point {
  min-width: 0;
}
  @media screen and (max-width: 767px) {
    .subscription-point {
      display: grid;
      grid-template-columns: 35.2vw minmax(0, 1fr);
      gap: 3.733vw;
      align-items: center;
    }
  }

.subscription-point-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscription-point-label {
  display: block;
  height: 18px;
  width: auto;
}

.subscription-point-label-pc {
  margin-bottom: 10px;
}

.subscription-point-label-sp {
  display: none;
}
  @media screen and (max-width: 767px) {
    .subscription-point-label-pc {
      display: none;
    }

    .subscription-point-label-sp {
      display: block;
      height: 4.667vw;
      margin-bottom: 2.8vw;
    }
  }

.subscription-point-card {
  color: #fff;
  width: min(220px, 100%);
  aspect-ratio: 220 / 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 12px;
  margin-inline: auto;
}
  @media screen and (max-width: 767px) {
    .subscription-point-card {
      width: 34.667vw;
      aspect-ratio: 1.074;
      padding: 2.667vw;
    }
  }

.subscription-point-01 .subscription-point-card {
  background-color: #f0b83c;
}

.subscription-point-02 .subscription-point-card {
  background-color: #50a0d8;
}

.subscription-point-03 .subscription-point-card {
  background-color: #de88b7;
}

.subscription-point-icon {
  width: 76px;
  margin-top: -4px;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .subscription-point-icon {
      width: 12vw;
      margin-bottom: 1.6vw;
    }
  }

.subscription-point-small {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
  @media screen and (max-width: 767px) {
    .subscription-point-small {
      font-size: 3.2vw;
      margin-bottom: 0.533vw;
    }
  }

.subscription-point-large {
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
  @media screen and (max-width: 767px) {
    .subscription-point-large {
      font-size: 8.533vw;
    }
  }

.subscription-point-copy {
  width: 100%;
  min-width: 0;
}

.subscription-point-description {
  font-size: 1.6rem;
  margin-top: 15px;
}
  @media screen and (max-width: 767px) {
    .subscription-point-description {
      font-size: 3.733vw;
      text-align: left;
      margin-top: 0;
    }
  }

.subscription-divider {
  width: 100%;
  height: 1px;
  margin: 56px 0 60px;
  background-color: #bfe6ed;
}
  @media screen and (max-width: 767px) {
    .subscription-divider {
      margin: 8vw 0;
    }
  }

/* お届けシステム */

.subscription-system {
  width: 970px;
  max-width: 100%;
  margin: 0 auto;
}

.subscription-free-shipping {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 461px;
  max-width: 100%;
  border-radius: 10px;
  margin: 0 auto 9px;
  padding: 9px 20px 11px;
  background-color: #009db7;
}
  @media screen and (max-width: 767px) {
    .subscription-free-shipping {
      font-size: 3.733vw;
      width: 77.467vw;
      margin-bottom: 2.4vw;
      padding: 1.6vw 2vw 2vw;
    }
  }

.subscription-system-heading {
  --line-width: 100%;
  font-size: 3.2rem;
  padding-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .subscription-system-heading {
      font-size: 5.333vw;
      padding-bottom: 2.267vw;
    }
  }

.subscription-system-lead {
  margin-top: 34px;
}
  @media screen and (max-width: 767px) {
    .subscription-system-lead {
      margin-top: 5.067vw;
      padding: 0 2vw;
    }
  }

/* フロー */

.subscription-flow {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 36px;
}
  @media screen and (max-width: 1023px) {
    .subscription-flow {
      gap: 2vw;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-flow {
      display: flex;
      flex-direction: column;
      gap: 5.333vw;
      margin-top: 4.133vw;
    }
  }

.subscription-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: -1;
  height: 4px;
  background-color: #bfe6ed;
  transform: translateY(-50%);
}
  @media screen and (max-width: 767px) {
    .subscription-flow::before {
      top: 0;
      right: auto;
      bottom: 0;
      left: 50%;
      width: 4px;
      height: auto;
      transform: translateX(-50%);
    }
  }

.subscription-flow-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  border: 4px solid #bfe6ed;
  border-radius: 20px;
  padding: 10px 20px 20px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .subscription-flow-card {
      min-height: 0;
      border-width: 1.067vw;
      border-radius: 5.333vw;
      padding: 4.267vw 5.333vw 4.533vw;
    }
  }

.subscription-flow-card h4 {
  color: #009db7;
  font-size: 2.2rem;
  line-height: 1.36;
  letter-spacing: 0.08em;
  height: 73px;
  min-height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}
  @media screen and (max-width: 1023px) {
    .subscription-flow-card h4 {
      height: auto;
      min-height: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-flow-card h4 {
      font-size: 4.533vw;
      border-bottom: 2px solid #bfe6ed;
      padding-bottom: 4.533vw;
    }
  }

.subscription-flow-apply h4 {
  border-bottom: 2px solid #bfe6ed;
  transform: translateY(-11px);
}
  @media screen and (max-width: 1023px) {
    .subscription-flow-apply h4  {
      transform: none;
    }
  }

.subscription-flow-month h4 {
  line-height: 1.36;
  align-items: flex-end;
  transform: translateY(-17px);
}
  @media screen and (max-width: 1023px) {
    .subscription-flow-month h4  {
      transform: none;
      white-space: nowrap;
    }
  }

.subscription-month {
  font-size: 4.2rem;
  line-height: 1.36;
  letter-spacing: 0;
  margin-right: 4px;
  transform: translateY(5px);
}
  @media screen and (max-width: 767px) {
    .subscription-month {
      font-size: 4.533vw;
      margin-right: 0.4vw;
      transform: none;
    }
  }

.subscription-flow-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 7px;
}
  @media screen and (max-width: 767px) {
    .subscription-flow-card-body {
      margin-top: 5.467vw;
    }
  }

.subscription-flow-card-body > p {
  color: #009db7;
  font-size: 1.6rem;
}
  @media screen and (max-width: 767px) {
    .subscription-flow-card-body > p {
      font-size: 3.733vw;
      text-align: left;
    }
  }

.subscription-flow-apply .subscription-flow-card-body {
  position: relative;
  padding-bottom: 61px;
  margin-top: 0;
}
  @media screen and (max-width: 767px) {
    .subscription-flow-apply .subscription-flow-card-body {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 22vw;
      gap: 2.133vw;
      margin-top: 4.267vw;
      padding-bottom: 0;
    }
  }

.subscription-device-icons {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
}
  @media screen and (max-width: 1199px) {
    .subscription-device-icons {
      gap: 0.976vw;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-device-icons {
      position: static;
      gap: 0;
    }
  }

.subscription-icon-pc {
  width: 66px;
}

.subscription-icon-sp {
  width: 45px;
}
  @media screen and (max-width: 767px) {
    .subscription-icon-pc {
      width: 11.467vw;
      transform: translateY(-1.333vw);
    }

    .subscription-icon-sp {
      width: 7.6vw;
      transform: translateY(3.333vw);
    }
  }

.subscription-delivery-body {
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
  @media screen and (max-width: 767px) {
    .subscription-delivery-body {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 4vw;
      margin-bottom: 0.8vw;
    }
  }

.subscription-delivery-text {
  color: #009db7;
  width: 100%;
  min-width: 0;
}

.subscription-delivery-text p {
  font-size: 1.6rem;
  white-space: nowrap;
  margin-top: 2px;
}
 @media screen and (min-width: 768px) and (max-width: 1199px) {
    .subscription-delivery-text p {
      white-space: normal;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-delivery-text p {
      font-size: 3.733vw;
      letter-spacing: 0.08em;
    }
  }

.subscription-delivery-count {
  color: #fff;
  line-height: 1;
  width: 172px;
  max-width: 100%;
  border-radius: 10px;
  margin: 0 auto 4px;
  padding: 6px 8px 7px;
  background-color: #009db7;
}
  @media screen and (max-width: 767px) {
    .subscription-delivery-count {
      margin-bottom: 1.467vw;
      padding: 1.333vw 2vw 1.867vw;
    }
  }

.subscription-products {
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-top: 6px;
}
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .subscription-products {
      width: 100%;
      justify-content: center;
      gap: 0.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-products {
      gap: 1.6vw;
      margin-top: 0;
    }
  }

.subscription-products img {
  width: 43px;
}
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .subscription-products img {
      width: calc((100% - 1vw) / 3);
      max-width: 43px;
      min-width: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-products img {
      width: 7.6vw;
    }
  }

/* 注釈・ボタン */

.subscription-notes {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 35px;
}
  @media screen and (max-width: 767px) {
    .subscription-notes {
      font-size: 3.733vw;
      margin-top: 4.267vw;
    }
  }

.subscription-notes li {
  text-indent: -1.1em;
  padding-left: 1.1em;
}

.subscription-notes li + li {
  margin-top: 6px;
}
  @media screen and (max-width: 767px) {
    .subscription-notes li + li {
      margin-top: 1.867vw;
    }
  }

.subscription-button {
  width: 420px;
  margin-top: 56px;
  background-color: #009db7;
}
  @media screen and (max-width: 767px) {
    .subscription-button {
      width: 73.333vw;
      margin-top: 7.067vw;
    }
  }
