:root {
  --color-main-bg: #404040;
  --color-bg-black: #242424;
  --color-border-gray: #9b9b9b;
  --color-blue: var(--color-primary);
  --color-green: #2e674d;
  --color-white: #fff;
  --color-red: #CE283F;
  --color-cta-bg: var(--color-blue);
  --c-bg-page: var(--color-gray-100);
  --c-bg-section: #ffffff;
  --c-bg-dark: #262626;
  --c-bg-dark2: #2a2a2a;
  --box-shadow: 0 0 1rem rgba(0, 0, 0, 1);
  --box-shadow2:0 0.2rem 0.4rem rgba(0, 0, 0, 0.16);
  --base-letter-spacing: 0.03em;
  --c-text: #1a1a1a;
  --c-text-sub: var(--c-bg-dark);
  --c-line: #434343;
  --sp-width: 37.5rem;
}
.global-contents__inner {
  padding-bottom: 0;
}
body {
  font-family: var(--font-main);
  color: var(--color-text-default);
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: var(--base-letter-spacing);
}

.global-contents {
  background-color: var(--color-main-bg);
}
.p-home-mv {
  margin-bottom: 0;
  padding-bottom: 4.7rem;
}
a {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* =====================================================
  グローバルヘッダー
  ===================================================== */
.section-inner {
  width: calc(335/375 * 100%);
  margin-inline: auto;
}
.p-section {
  padding-block: 5.0rem;
}
.g-header { display: none; }
.g-header__logo { display: none; }

.g-header__nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.g-header__icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--c-text);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.g-header__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.g-header__badge {
  position: absolute;
  top: -0.4rem;
  right: -0.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1.6rem;
  text-align: center;
  padding: 0 0.3rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .g-header {
    position: fixed;
    top: 1.6rem;
    right: 2.4rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem 0.6rem;
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.18);
  }

  .g-header__icon {
    font-size: 1rem;
    color: var(--c-accent);
  }

  .g-header__icon svg {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--c-accent);
  }

}

/* =====================================================
  PCシェル
  ===================================================== */
.pc-header { display: none; }

.pc-shell {
  position: relative;
}

.pc-side {
  display: none;
}

.stage {
  display: block;
  background: var(--c-bg-section);
}

.frame {
  width: 100%;
  max-width: var(--sp-width);
  margin: 0 auto;
  background: var(--c-bg-section);
  overflow: hidden;
}
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 24rem;
    padding: 1.7rem 2.4rem;
    line-height: 1;
    background: #1f2c6b;
    font-size: 2.0rem;
    letter-spacing:var(--base-letter-spacing);
    background-color:var(--color-cta-bg);
    color: var(--color-white);
    border-radius: 99.9rem;
    font-family: var(--font-ja);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
  }
@media screen and (min-width: 768px) {

  .pc-shell {
    display: grid;
    grid-template-columns: 1fr var(--sp-width);
    gap: 16.5rem;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
  }

  .pc-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.0rem;
    padding-block: 3rem;
    color: var(--color-white);
    position: sticky;
    top: 0;
    height: 100vh;
  }

  .pc-side__brand img {
    width: 13rem;
    height: auto;
    display: block;
  }

  .pc-side__nav {
    width: 100%;
    max-width: 35.5rem;
  }

  .pc-side__nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .pc-side__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 0.6rem;
    padding: 2.15rem 2.0rem 2.25rem;
    font-size: 1.6rem;
    font-family: var(--font-ja);
    color: var(--color-text-default);
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s ease;
  }

  .pc-side__chevron {
    width: 1.4rem;
    height: 1.4rem;
    color: #666;
    flex-shrink: 0;
  }

  @media (hover: hover) {
    .p-home .pc-side__cta:hover {
      opacity: 1;
      background-color: var(--color-green);
    }
    .cta-btn:hover {
      opacity: 1;
      background-color: var(--color-green);
    }
    .pc-side__nav a:hover {
      opacity: 0.8;
    }
  }
  .stage {
    grid-column: 2 / 3;
    background: var(--c-bg-section);
    box-shadow: var(--box-shadow);
  }
}

/* =====================================================
   汎用パーツ
   ===================================================== */
.section-title {
  font-family: var(--font-ja);
  font-weight: var(--fw-semibold);
  font-size: 2.6rem;
  letter-spacing: var(--base-letter-spacing);
  text-align: center;
}

.section-title--light { color: #fff; }

.section-sub {
  text-align: center;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  line-height: 1.667;
  margin: 2.0rem 0 2.9rem;
  color: var(--c-text-sub);
}

/* =====================================================
   FV
   ===================================================== */
.fv {
  background: var(--color-bg-black);
  padding-top: 0;
  text-align: center;
  color: var(--color-white);
}
.fv__heading {
  padding: 3rem 3.2rem 3.6rem;
}
.fv__title {
  font-family: var(--font-ja);
  font-size: 3.6rem;
  font-weight: var(--fw-semibold) ;
  line-height: 1.388;
  letter-spacing: 0.03em;
  margin: 0 0 1.0rem;
  color: var(--color-white);
}

.fv__lead {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin: 0;
}

.fv__hero {
  margin: 0;
  width: 100%;
}

.fv__hero img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    padding: 4.3rem 3.2rem 3.5rem;
  }
}
/* =====================================================
   こんなことありませんか？
   ===================================================== */
.concerns {
  padding-block: 4.3rem 29.5rem;
  background: url(../Contents/ImagesPkg/top/concerns-bg.jpg) no-repeat var(--c-bg-dark);
  background-position: bottom center;
}

.concerns__list {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background-color: var(--color-white);
}

.concerns__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 3.2rem;
  font-size: 1.4rem;
  letter-spacing: var(--base-letter-spacing);
  font-family: var(--font-ja);
  font-weight: var(--fw-regular);
}

.concerns__list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/Contents/ImagesPkg/top/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.concerns__list li::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 1.1rem;
  width: 0.9rem;
  height: 0.5rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.visual-bridge {
  margin: 0;
  display: block;
  background: var(--c-bg-section);
}

.visual-bridge img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   簡単3ステップ
   ===================================================== */
.steps {
  background: var(--color-gray-100);
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 2.0rem;
  margin-top: 1.6rem;
}

.steps__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.6rem;
  align-items: center;
}

.steps__icon {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.steps__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.steps__num {
  font-family: var(--font-en);
  font-weight: var(--fw-regular);
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
  letter-spacing: var(--base-letter-spacing);
}

.steps__text {
  font-size: 1.6rem;
}

/* =====================================================
   獣医師監修
   ===================================================== */
.vet {
  background: var(--c-bg-section);
}

.vet__profile {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.0rem;
  align-items: center;
  margin-top: 2.0rem;
}

.vet__photo {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  overflow: hidden;
  background: #efefef;
}

.vet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vet__name {
  font-size: 1.6rem;
  font-weight: var(--fw-semibold);
  margin: 0 0 0.6rem;
}

.vet__name span {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 1.0rem;
  font-weight: var(--fw-regular);
}

.vet__bio {
  font-size: 1.1rem;
  line-height: 1.6363634;
}

.vet__comment {
  margin-top: 3.0rem;
  padding: 2.5rem 2.5rem;
  border: 2px solid var(--color-border-gray);
}
.vet__comment p {
  margin: 0 0 2.7rem;
  font-size: 1.6rem;
}
.vet__comment p:last-child {
  margin-bottom: 0;
}
.vet__comment .vet__comment-title {
  font-size: 1.8rem;
  font-family: var(--font-ja);
  font-weight: var(--fw-semibold);
  text-align: center;
  margin: 0 0 1.0rem;
}

/* =====================================================
  商品比較
 ===================================================== */
  .compare {
  padding-top: 0;
  }
.compare__table {
  width: 100%;
  margin: 2.5rem 0 0;
  font-size: 1.3rem;
  line-height: 1.84;
  text-align: center;
  border-radius: 0.2rem;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
}

.compare__table th,
.compare__table td {
  padding: 1.2rem 0.6rem;
  vertical-align: middle;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #9b9b9b;
}
.compare__table th[scope="row"] {
  width: 28%;
  color: var(--c-text);
  font-weight: 500;
  background: #fff;
}
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td {
  border-bottom: 0;
}
.compare__head {
  font-weight: 500;
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
  background: #fff;
}

.compare__table .compare__head--brand,
.compare__table tbody td:nth-child(2) {
  background: #f5f5f5;
}

.compare__brandimg {
  display: block;
  width: 8.5rem;
  height: auto;
  margin: 0 auto 0.6rem;
}

.compare__brandname {
  display: block;
  font-family: var(--font-en);
  font-size:1.2rem;
  font-weight: var(--fw-regular);
}

.compare__otherimg {
  display: block;
  width: 3.7em;
  height: auto;
  margin: 0 auto 0.6rem;
}

.compare__othername {
  display: block;
  font-size: 1rem;
  line-height: calc(14/10);
  font-weight: var(--fw-regular);
}

/* =====================================================
   商品紹介 INDEX
   ===================================================== */
.products-index {
  background: #262626;
  color: var(--color-white);
  padding: 4rem 0 4rem;
}

.products-index .section-title {
  margin-bottom: 3.8rem;
}

.products__index {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.products__index a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.6rem 0.7rem 0.6rem 7rem;
  text-decoration: none;
  background: #fff;
  color: var(--c-text);
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-family: var(--font-ja);
  font-weight: var(--fw-regular);
  min-height: 6.0rem;
  transition: transform 0.2s ease;
}
.pkg-thumb {
  position: absolute;
  left: 1.3rem;
  bottom: 0.7rem;
  width: 4.6rem;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.products__index a:hover {
  transform: translateX(0.2rem);
}

.products__index .caret {
  margin-left: auto;
  color: #999;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

/* =====================================================
  商品詳細
  ===================================================== */
.product {
  border-bottom: 1px solid #D2D8E8;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.products-detail {
  background: #262626;
  color: var(--color-white);
  padding: 0rem 0 5rem;
}

.product__pkg {
  width: 15rem;
  margin: 0 auto 1.8rem;
}

.product__pkg img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1.4rem 2.2rem rgba(0, 0, 0, 0.18));
}

.product__name {
  font-weight: var(--fw-semibold);
  font-family: var(--font-ja);
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
  color: #fff;
  text-align: center;
}

.product__desc {
  margin: 0 0 2.0rem;
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
  text-align: center;
}

.product__ingredients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0rem;
  width: 100%;
  text-align: center;
}
.product__ingredients:has(> .product__ingredient:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 12.5rem);
  justify-content: center;
  width: calc((100% - 1rem) / 3 * 2 + 1rem);
  margin-inline: auto;
}

.product__ingredients li {
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 1.38;
  text-align: center;
}

.product__ingredient-name {
  background: #f5f5f5;
  border-radius: 0.6rem;
  color: var(--color-text-default);
  font-family: var(--font-ja);
  font-weight: var(--fw-semibold);
  font-size: 1.3rem;
  line-height: 1.38;
  padding: 1.0rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 6.0rem;
}
.product__ingredient-name-small {
  font-size: 1.1rem;
}
.product__ingredient-desc {
  margin-top: 1.0rem;
  font-size: 1.1rem;
  line-height: 1.63;
  letter-spacing: var(--base-letter-spacing);
  display: block;
}

.product:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.products__note {
  font-size: 1.1rem;
  line-height: 1.6363634;
}
.products__note strong {
  font-size: 1.3rem;
  font-weight: var(--fw-semibold);
}
/* =====================================================
   CVセクション
   ===================================================== */
.cv {
  background: var(--c-bg-page);
  padding-block: 4.0rem 5.0rem;
  text-align: center;
}
.cv__heading {
  margin-bottom: 1.0rem;
  line-height: calc(36/26);
}
.cv__lead {
  margin-bottom: 2.0rem;
  font-size: 1.6rem;
  color: #53161F;
  letter-spacing: var(--base-letter-spacing);
  line-height: 1.75;
}
.cv__lead-price {
  display: block;
  line-height: 1;
  font-family: var(--font-ja);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: var(--base-letter-spacing);
  color: var(--color-red);
}
.cv__image {
  margin-left: -2.0rem;
  width: 35.5rem;
}
.cv__image img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.cv__sub {
  margin: 1.0rem 0 2.2rem;
  font-family: var(--font-ja);
  font-weight: var(--fw-semibold);
  font-size: 1.8rem;
  letter-spacing: var(--base-letter-spacing);
}

.cv__price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: space-between;
}

.cv__price-tag {
  display: flex;
  min-width: 23.7rem;
  align-items: stretch;
  background: var(--color-red);
  font-size: 2.6rem;
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
  overflow: hidden;
}

.cv__price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.125;
  padding: 0.6rem 0.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--base-letter-spacing);
}

.cv__price-main {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  background: #c8313a;
  color: #fff;
  line-height: 1;
  border-radius: 0.2rem;
  padding: 0.6rem 0.4rem 0.6rem 0;
}

.cv__yen {
  padding-right: 0.4rem;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.cv__num {
  font-family: var(--font-ja);
  font-size: 3.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--base-letter-spacing);
  color: var(--color-white);
  line-height: 1;
}

.cv__suffix {
  font-family: var(--font-ja);
  font-size: 3.6rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.cv__price-tax {
  padding-right: 1.0rem;
  font-size: 1.3rem;
  color: var(--color-white);
  align-self: flex-end;
  font-weight: var(--fw-regular);
}

.cv__price-old {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  text-align: left;
  font-size: 1.2rem;
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  background-color: var(--color-white);
}

.cv__price-old-label {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: var(--fw-semibold);
}

.cv__price-old-num {
  line-height: 1;
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
}
.cv__bullets-container {
  margin-top: 2.0rem;
  padding: 2.0rem;
  background-color: var(--color-white);
}
.cv__bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 1.444;
  text-align: left;
  color: var(--color-red);
}

.cv__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: url(../Contents/ImagesPkg/top/icon-check-red.svg) no-repeat center center;
  background-size: contain;
}

.cv__notice {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.84;
  letter-spacing: var(--base-letter-spacing);
}

.cv__btn {
  margin-top: 3.0rem;
  min-width: 30rem;
}

/* =====================================================
  愛用者のレビュー
===================================================== */
.reviews {
  background: var(--c-bg-section);
  padding-block: 5.0rem;
}

.reviews .section-title {
  margin-bottom: 2.8rem;
}

.review {
  margin-bottom: 2.0rem;
  box-shadow: var(--box-shadow2);
}
.review:last-child {
  margin-bottom: 0;
}

.review__head {
  display: grid;
  grid-template-columns: 12.0rem 1fr;
  gap: 2.0rem;
  align-items: center;
}
.review__meta {
  position: relative;
  z-index: 1;
}
.review__meta::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 3.4rem;
  rotate: 20deg;
  width: 3.4rem;
  height: 3.4rem;
  background: url(../Contents/ImagesPkg/top/icon-paw.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.review__photo {
  width: 12rem;
  height: 9.0rem;
  overflow: hidden;
}

.review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review__owner {
  font-family: var(--font-ja);
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: var(--base-letter-spacing);
}

.review__paw {
  font-size: 1.2rem;
  margin-left: 0.6rem;
}

.review__pet {
  font-size: 1.3rem;
  letter-spacing: var(--base-letter-spacing);
}

.review__body {
  padding: 1.7rem 2.0rem 1.7rem 2.0rem;
  font-size: 1.3rem;
  line-height: 1.84;
}

/* =====================================================
   使用方法
   ===================================================== */
.usage {
  background: var(--c-bg-page);
  padding-block: 5.0rem 5.0rem;
}
.usage .section-sub {
  margin-bottom: 1.3rem;
}
.usage__lead {
  text-align: center;
  font-family: var(--font-ja);
  font-weight: 500;
  margin: 1.8rem 0 2.4rem;
  font-size: 1.4rem;
}

.usage__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.usage__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: var(--base-letter-spacing);
}

.usage__icon {
  flex-shrink: 0;
  width: 2.0rem;
  margin-top: 0.2rem;
}

.usage__table-wrap {
  position: relative;
  padding-top: 5.8rem;
}

.usage__table-wrap ::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 100%;
  height: 6.8rem;
  background: url(/Contents/ImagesPkg/top/usage-animals.png) no-repeat center;
  background-size: contain;
}

.usage__animals {
  background: #fff;
  padding: 0.4rem 1.2rem;
  border-bottom: 1px solid var(--c-line);
  text-align: center;
}

.usage__animals img {
  display: inline-block;
  max-width: 100%;
}

.usage__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
}

.usage__table td {
  padding: 1.55rem 1.4rem;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--c-line);
  background: #fff;
  font-weight: var(--fw-semibold);
}

.usage__table tr:last-child td {
  border-bottom: 1px solid var(--c-line);
}

.usage__table td:first-child {
  width: 30%;
  font-size: 1.3rem;
  text-align: center;
  border-right: 1px solid var(--c-line);
}
.usage__notes {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 2.0rem;

}
.usage__notes li {  
  font-size: 1.1rem;
  line-height: 1.3636;
  letter-spacing: var(--base-letter-spacing);
}

/* =====================================================
   よくあるご質問
   ===================================================== */
.faq {
  background: var(--c-bg-dark);
  color: var(--color-white);
  padding-block: 5.0rem 0rem;
}

.faq .section-title {
  color: #fff;
  margin-bottom: 2.6rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item:first-child{
  border-top: 1px solid var(--color-white);
}
.faq__item {
  border-bottom: 1px solid var(--color-white);
  padding-block: 1.6rem;
}

.faq__item dt {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-family: var(--font-ja);
  letter-spacing: var(--base-letter-spacing);
  font-size: 1.6rem;
}

.faq__item dd {
  display: flex;
  gap: 1.4rem;
  letter-spacing: var(--base-letter-spacing);
  align-items: flex-start;
  margin: 1.0rem 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.faq__q,
.faq__a {
  flex-shrink: 0;
  width: 4.0rem;
  height: 4.0rem;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: var(--fw-regular);
}
.faq__q {
  background: var(--color-white);
  color: var(--color-text-default);
}

/* =====================================================
   注意事項
   ===================================================== */
.notice {
  background: var(--c-bg-dark2);
  color: var(--color-white);
  padding-block: 4rem 5rem;
}
.notice__lead {
  letter-spacing: var(--base-letter-spacing);
  text-align: center;
  font-size: 1.6rem;
}
.notice .section-title {
  margin-bottom: 2.4rem;
}

.notice__list {
  margin-top: 1.7rem;
  display: flex;
  flex-direction: column;
}

.notice__list li {
  font-size: 1.1rem;
  line-height: 1.636363;
  letter-spacing: var(--base-letter-spacing);
}

/* =====================================================
   私たちについて
   ===================================================== */
.about {
  background: #F5F5F5;
  position: relative;
  padding-block: 5.0rem 44.8rem;
}
.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54.1rem;
  background: url(../Contents/ImagesPkg/top/about-bg.png) no-repeat center bottom;
  background-size: cover;
}

.about__logo {
  width: 11.8rem;
  margin: 0 auto 3.0rem;
}
.about__title {
  margin: 0 0 2.2rem;
  text-align: center;
  font-family: var(--font-ja);
  font-size: 2.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--base-letter-spacing);
}

.about__caption {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  letter-spacing: var(--base-letter-spacing);
}

.about__body {
  position: relative;
  z-index: 1;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.84;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--c-bg-dark);
  color: var(--color-white);
  padding: 5rem 2.8rem 2.8rem;
  text-align: center;
}

.footer__logo img {
  width: 11rem;
  height: auto;
  margin: 0 auto 2.4rem;
  display: block;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
  margin: 0 auto 3rem;
  max-width: 32rem;
  text-align: left;
}

.footer__nav a {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__nav .paw {
  font-size: 1rem;
}

.footer__copy {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}
  .js-fadein-button {
    display: none;
  }
/* =====================================================
   仕上げ：PCでの読みやすさ
   ===================================================== */
@media screen and (min-width: 768px) {
  .stage {
    min-height: 100%;
  }

  .frame {
    min-height: 100vh;
  }
}

@media screen and (max-width: 767px){
  .frame {
    width: 100%;
    max-width: 100%;
  }
  .c-button--page-top {
    display: none;
  }
  .js-fadein-button {
    max-width: 24rem;
    text-align: center;
  } 
  .js-fadein-button {
    display: block;
    position: fixed;
    left: 50%;
    bottom: 1.6rem;
    z-index: 1000;
    width: calc(100% - 3.2rem);
    max-width: 34rem;
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .js-fadein-button.is-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
