/* ========================================
  Reset & Base Styles
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Zen Kaku Gothic New";
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

li {
  list-style: none;
}

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

a {
  color: unset;
  text-decoration: none;
}

p {
  font-size: 1.5rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media (min-width: 769px) {
  html {
    font-size: 0.651vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 2.487vw;
  }

  p {
    font-size: 1.4rem;
  }
}

/* ========================================
  Layout Components
======================================== */

.l-inner {
  flex: 1;
  margin: auto;
  width: 100%;
  max-width: 126rem;
  padding: 0 3rem;
}

.l-inner--md {
  margin: auto;
  max-width: 94rem;
}

.l-inner--p0 {
  padding: 0;
}

@media (max-width: 768px) {
  .l-inner {
    padding: 0 2rem;
  }

  .l-max-width {
    max-width: none;
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}

/* ========== Flex ========== */

.u-flex {
  display: flex;
}

.u-flex--column {
  flex-direction: column;
}

.u-flex--align-start {
  align-items: flex-start;
}

.u-flex--align-center {
  align-items: center;
}

.u-flex-item {
  flex: 1;
}

.u-gap-1 {
  gap: 1rem;
}

.u-gap-2 {
  gap: 2rem;
}

.u-gap-3 {
  gap: 3rem;
}

.u-gap-4 {
  gap: 4rem;
}

.u-gap-lg {
  gap: 7rem;
}

@media (max-width: 768px) {
  .u-flex {
    flex-direction: column;
  }

  .u-gap-lg {
    gap: 4rem;
  }
}


/* ========================================
  Component - Title
======================================== */

.c-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.c-ttl--md {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-ttl--lg {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.c-ttl--line {
  position: relative;
  padding-left: 5.2rem;
  margin-bottom: 4rem;
  width: fit-content;
}

.c-ttl--line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 1px;
  background: currentColor;
}

.c-ttl--line-right {
  margin-left: auto;
}

@media (max-width: 768px) {
  .c-ttl {
    font-size: 1.8rem;
  }

  .c-ttl--md {
    font-size: 1.5rem;
  }

  .c-ttl--lg {
    font-size: 2.2rem;
    font-weight: 500;
  }

  .c-ttl--line {
    padding-left: 4.5rem;
  }
}

/* ========================================
  Component - Button
======================================== */

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0a0a0a;
  border: none;
  border-radius: 10rem;
  background-color: #fff;
  padding: 2rem;
  margin: 5rem auto 0;
  width: 39.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-style: italic;
}

.c-btn::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='10' viewBox='0 0 26 10' fill='none'%3E%3Cpath d='M0 8.68359H23L15.5 0.683594' stroke='%230A0A0A' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.c-btn:hover {
  opacity: 0.9;
}

.c-btn--black {
  background-color: #0a0a0a;
  color: #fff;
}

.c-btn--black::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='10' viewBox='0 0 26 10' fill='none'%3E%3Cpath d='M0 8.68359H23L15.5 0.683594' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}

.c-btn--black img {
  filter: brightness(0) invert(1);
}

.c-btn--product {
  font-style: italic;
  letter-spacing: 0.12em;
}

.c-btn--product img {
  width: 2.6rem;
}

.c-btn--lg {
  width: 50rem;
}

@media (max-width: 768px) {
  .c-btn {
    margin: 3rem auto 0;
    width: 100%;
  }
}


/* ========================================
  Top Page Styles
======================================== */

.c-top-en {
  color: #555;
  font-family: 'Jost';
  font-size: 11rem;
  font-weight: 250;
  line-height: .86em;
  letter-spacing: 0;
}

.c-top-en__char {
  display: inline-block;
  opacity: 0;
}

.c-top-en__char.is-animated {
  animation: char-fade-in 0.8s ease forwards;
}

@keyframes char-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .c-top-en {
    font-size: 7rem;
  }
}

/* ========== Text ========== */

.u-txt-en {
  font-family: 'Jost';
}

.u-txt--md {
  font-weight: 500;
}

.u-txt--bold {
  font-weight: 700;
}

.u-txt--italic {
  font-style: italic;
}

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

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

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

.u-txt--underline {
  text-decoration: underline;
}

.u-txt--black {
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .u-txt--pc-center {
    text-align: left;
  }
}

/* ========== Position ========== */

.u-relative {
  position: relative;
}


/* ========== Margin ========== */

/* Margin Top */
.u-mt-1 {
  margin-top: 1rem;
}

.u-mt-2 {
  margin-top: 2rem;
}

.u-mt-3 {
  margin-top: 3rem;
}

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

.u-mt-5 {
  margin-top: 5rem;
}

.u-mt-6 {
  margin-top: 6rem;
}

.u-mt-auto {
  margin-top: auto;
}

/* Margin Bottom */
.u-mb-1 {
  margin-bottom: 1rem;
}

.u-mb-2 {
  margin-bottom: 2rem;
}

.u-mb-3 {
  margin-bottom: 3rem;
}

.u-mb-4 {
  margin-bottom: 4rem;
}

.u-mb-5 {
  margin-bottom: 5rem;
}

.u-mb-6 {
  margin-bottom: 6rem;
}

.u-mb-xs {
  margin-bottom: 2rem;
}

.u-mb-sm {
  margin-bottom: 3rem;
}

.u-mb-md {
  margin-bottom: 4rem;
}

.u-mb-lg {
  margin-bottom: 5rem;
}

.u-mb-xl {
  margin-bottom: 6rem;
}

.u-mb-2xl {
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .u-mb-xs {
    margin-bottom: 1rem;
  }

  .u-mb-sm {
    margin-bottom: 2rem;
  }

  .u-mb-md {
    margin-bottom: 3rem;
  }

  .u-mb-lg {
    margin-bottom: 4rem;
  }

  .u-mb-xl {
    margin-bottom: 5rem;
  }

  .u-mb-2xl {
    margin-bottom: 6rem;
  }
}

/* ========================================
  Utility Classes
======================================== */

/* ========== Display ========== */

.u-hidden {
  display: none !important;
}

.u-sp-only {
  display: none;
}

.u-pc-only {
  display: inline-block;
}

@media (max-width: 768px) {
  .u-sp-only {
    display: inline-block;
  }

  .u-pc-only {
    display: none !important;
  }
}


/* ========================================
  Animation Classes
======================================== */
.c-anim-img-wrap {
  overflow: hidden;
}

@keyframes img-zoom-in {
  from {
    opacity: 0;
    transform: scale(1.08);
    clip-path: inset(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0);
  }
}

.c-anim-img {
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}

.c-anim-img.is-animated {
  animation: img-zoom-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.c-anim-fade-in {
  opacity: 0;
}

.c-anim-fade-in.is-animated {
  animation: fade-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.c-anim-slide-left {
  opacity: 0;
  transform: translateX(-2rem);
}

.c-anim-slide-left.is-animated {
  animation: slide-in-left .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ========================================
  header
======================================== */

.p-header__glico {
  background-color: #fff;
  padding: 1.4rem 0 1.3rem 3rem;
}

.p-header__glico-img {
  width: 75px;
}

.p-header__logo {
  width: 39rem;
  padding: 2rem 0 2rem 3rem;
}

@media (max-width: 768px) {
  .p-header__glico {
    padding: 1rem 0 1rem 2rem;
  }

  .p-header__logo {
    width: 21.6rem;
    padding: 1rem 0 0 2rem;
  }

  .p-header__glico-img {
    width: 5.6rem;
  }
}


/* ========================================
  Mv
======================================== */

.p-mv__img {
  animation: fade-in 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both;
}

.p-mv__copy {
  position: absolute;
  top: 13rem;
  left: 19rem;
  font-size: 2rem;
  line-height: 1.6;
  animation: fade-in 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) .8s both;
}

.p-mv__logo img {
  width: 100%;
}

@media (min-width: 769px) {
  .p-mv__logo {
    position: absolute;
    bottom: 4rem;
    right: 16.5rem;
    width: 63rem;
    animation: fade-in 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
  }
}

@media (max-width: 768px) {
  .p-mv__copy {
    top: 44rem;
    right: auto;
    left: 2rem;
    font-size: 1.4rem;
  }

  .p-mv__logo {
    padding: 2.4rem 2rem 0;
    opacity: 0;
  }

  .p-mv__logo.is-animated {
    animation: fade-in 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both;
  }
}

/* ========================================
 kit
======================================== */
.p-kit {
  padding: 10rem 0 15rem;
}

.p-kit__wrapper {
  background-color: #333;
  width: 120rem;
  margin: 0 auto;
  padding: 7rem 6rem;
  border-radius: 2rem;
}

.p-kit__container {
  display: flex;
  gap: 5rem;
  padding-bottom: 6rem;
}

.p-kit-detail {
  gap: 4rem;
}

.p-kit-detail__ttl {
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 0.5px solid #fff;
  min-width: 6rem;
  margin-bottom: 1rem;
}

.p-kit-detail-set .p-kit-detail-ttl span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -.1rem;
}

.p-kit-detail__txt-wrap {
  width: 42rem;
}

.p-kit-detail__sub-txt {
  font-size: 1.2rem;
  font-weight: 400;
}

.p-kit-detail__sub-txt {
  font-size: 1.2rem;
  letter-spacing: .2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.p-kit-detail__fee {
  position: relative;
  width: fit-content;
  font-size: 3.6rem;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.p-kit-detail__fee-txt {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06rem;
}

.p-kit-detail__txt {
  font-size: 1.2rem;
  line-height: 1.83;
}

.p-kit-detail .c-btn {
  margin-left: 0;
  margin-top: 4rem;
}

.p-kit-detail .c-btn img {
  width: 2.6rem;
  height: 2.6rem;
}

.p-mb-1 {
  margin-bottom: 1rem;
}

.p-kit-detail-bottom {
  font-size: 1.2rem;
}

.p-kit-detail__img {
  width: 50rem;
}

.p-kit__attention {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.06rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .p-kit {
    padding: 5rem 0 9rem;
  }

  .p-kit__wrapper {
    padding: 4rem 2rem;
    width: auto;
    border-radius: 0;
  }

  .p-kit__container {
    flex-direction: column-reverse;
    gap: 3.5rem;
  }

  .p-kit__ttl {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.16rem;
  }

  .p-kit-detail__ttl {
    margin-bottom: 0;
  }

  .p-kit-detail__fee {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.36rem;
    margin-top: 1.5rem;
  }

  .p-kit-detail__txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.06rem;
  }

  .p-mrna-update__kit-txt{
    font-size: 1.3rem;
        line-height: 1.6;
  }


  /* single */
  .p-kit-detail__single-wrap {
    gap: 4rem;
    flex-direction: column-reverse;
  }

  .p-kit-detail-txt-wrap .c-ttl {
    font-size: 1.6rem;
  }

  .p-kit-detail__single {
    width: 100%;
  }

  .p-kit-detail {
    gap: 2rem;
    flex-direction: row;
  }

  .p-kit-detail-set {
    margin-top: 6rem;
  }

  .p-kit-detail-sub-txt {
    margin-left: .5rem;
  }

  .p-kit-detail .c-btn {
    padding: 1.2rem;
    margin-top: 4rem;
  }

  .p-kit__attention {
    margin-bottom: 2rem;
  }
}

/* ========================================
  Top Page Styles
======================================== */

.c-top-en {
  color: #555;
  font-family: "Jost", sans-serif;
  ;
  font-size: 11rem;
  font-weight: 250;
  line-height: .86em;
  letter-spacing: 0;
}

.c-top-en__char {
  display: inline-block;
  opacity: 0;
}

.c-top-en__char.is-animated {
  animation: char-fade-in 0.8s ease forwards;
}

@keyframes char-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .c-top-en {
    font-size: 7rem;
  }
}




/* ========================================
  Science
======================================== */

.p-top-science {
  overflow: hidden;
  padding-bottom: 10rem;
}

.p-top-science__txt-area {
  z-index: 2;
}

.p-top-science__txt {
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 0.12rem;
  padding: 7rem 6rem 14rem 8rem;
}

.p-top-science .c-top-en {
  position: absolute;
  top: 12rem;
  right: 0;
  writing-mode: vertical-rl;
  letter-spacing: -0.01em;
  z-index: 1;
}

.p-top-science__img01 {
  margin-left: -6rem;
  width: 32.6rem;
  z-index: 1;
}

.p-top-science__img02 {
  position: relative;
  margin-top: 8rem;
  margin-left: 10rem;
  width: 23.7rem;
  z-index: 1;
}

.p-top-science__img03 {
  position: absolute;
  bottom: -6rem;
  right: -17rem;
  width: 41.4rem;
  z-index: 1;
}

.p-top-science__img04 {
  margin-top: -22rem;
  margin-left: -23rem;
  width: 78rem;
  max-width: max-content;
  animation: rotate 100s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .p-top-science {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-top-science__txt-area {
    padding: 0 0 0 1.3rem;
  }

  .p-top-science__ttl {
    letter-spacing: -0.005em;
  }

  .p-top-science__txt {
    font-size: 1.4rem;
    line-height: 1.9;
    padding: 3rem 2rem 3.5rem 0.3rem;
  }

  .p-top-science__img-area {
    padding: 7rem 0 14rem;
  }

  .p-top-science .c-top-en {
    top: 7rem;
  }

  .p-top-science__img01 {
    margin-left: auto;
    margin-right: -4rem;
    width: 17.6rem;
  }

  .p-top-science__img02 {
    margin-top: -3rem;
    margin-left: 0;
    width: 17.6rem;
  }

  .p-top-science__img03 {
    bottom: 6rem;
    right: -2rem;
    width: 29.9rem;
  }

  .p-top-science__img04 {
    margin-top: 0;
    margin-left: -7rem;
    width: 36rem;
  }
}

.p-top-science__sub-ttl {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 400;
}

.p-top-science__sub-ttl-jp {
  margin-bottom: 3rem;
}


/* ========================================
  Update
======================================== */

.p-mrna-update {
  padding-top: 10rem;
}

.p-mrna-update__contents {
  margin: 6rem auto;
}

.p-mrna-update__contents-ttl {
  border-bottom: 1px solid #707070;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.p-mrna-update__contents-img {
  width: 79.2rem;
}

.p-mrna-update__contents-img02 {
  position: absolute;
  top: -16rem;
  right: 5.5rem;
  width: 17.5rem;
}

.p-mrna-update__kit-box {
  color: #0A0A0A;
  background-color: #FFF;
  border-radius: 3rem;
  padding: 2.6rem 6rem 0rem 4rem;
  margin-top: 4rem;
}

.p-mrna-update__kit-box-contents {
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  align-items: flex-start;
}

.p-mrna-update__kit-box-contents-txt {
  width: 24rem;
  margin-right: 2rem;
  font-size: 1.4rem;
}

.p-mrna-update__kit-box-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.7rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid #777;
  ;
}

.p-mrna-update__kit-box-txt {
  text-indent: -1em;
  padding-left: 1em;
}

.p-mrna-update__kit-box-contents-img {
  width: 21rem;
  margin-top: -1rem;
}

.p-mrna-update__txt {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.07rem;
}

@media (min-width: 769px) {
  .p-mrna-update__contents:nth-child(even) {
    flex-direction: row-reverse;
  }

  .p-mrna-update__contents-txt-area {
    position: relative;
    margin-right: -10rem;
    margin-left: 10rem;
    flex: 1;
  }

  .p-mrna-update__contents:nth-child(even) .p-mrna-update__contents-txt-area {
    margin-left: -10rem;
    margin-right: 10rem;
  }

  .p-mrna-update__contents-txt-area .c-btn {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {

  .p-mrna-update {
    padding-top: 4rem;
  }

  .p-mrna-update__contents {
    flex-direction: column-reverse;
    gap: 3.8rem;
  }

  .p-mrna-update__txt {
    font-size: 1.3rem;
    letter-spacing: -0.0001rem;
    line-height: 1.6;
  }

  .p-mrna-update__contents-img {
    width: calc(100% + 2rem);
    max-width: max-content;
  }

  .p-mrna-update__contents:nth-child(odd) .p-mrna-update__contents-img {
    margin-right: -2rem;
    margin-bottom: 4.3rem;
  }

  .p-mrna-update__contents:nth-child(even) .p-mrna-update__contents-img {
    margin-left: -2rem;
  }

  .p-mrna-update__contents-img02 {
    top: 5rem;
    left: 5rem;
    right: auto;
    width: 11.1rem;
    display: none;
  }

  .p-mrna-update__kit-box-contents {
    align-items: center;
  }

  .p-mrna-update__kit-box {
    padding: 2.6rem 3rem 0rem 3rem;
  }

}

/* ========================================
  Step
======================================== */

.p-mrna-step {
  background: linear-gradient(90deg, #000000 0%, #000000 50%, #333333 50%, #333333 100%);
  margin-top: 15rem;
  margin-bottom: 17rem;
}

.p-mrna-step__inner {
  background-color: #333333;
  padding: 7rem 0 3rem 11rem;
  margin-left: 16rem;
}

.p-mrna-stm__img {
  width: 57.2rem;
}

.p-mrna-stp__txt-area {
  width: 49rem;
}

.p-mrna-stp__txt {
  font-size: 1.4rem;
}


.p-mrna-step__inner .u-flex img {
  width: 100%;
}

.p-mrna-step__num {
  font-family: 'Jost';
  font-size: 2rem;
  font-weight: 300;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.p-mrna-step__note {
  border-radius: .5rem;
  border: 1px solid #707070;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .p-mrna-step {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .p-mrna-step__inner {
    padding: 5rem 2rem 1rem;
    margin-left: 0;
  }

  .p-mrna-stm__img {
    width: auto;
  }

  .p-mrna-stp__txt-area {
    width: auto;
  }

  .p-mrna-stp__txt {
    font-size: 1.3rem;
  }
}


/* ========================================
  Analysis
======================================== */

.p-science-analysis__contents {
  background-image: url(../../assets/img/analysis_bg_pc@2x.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16rem 0;
  margin-bottom: 14rem;
}

.p-science-analysis__txt-area {
  max-width: 60rem;
}

.p-science-analysis__txt {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.07rem;
}

.p-science__contents-ttl {
  border-bottom: 1px solid #707070;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 768px) {
  .p-science-analysis__contents {
  background-image: url(../../assets/img/analysis_bg_sp@2x.webp);
    padding: 5rem 0 7rem;
    margin-bottom: 0;
  }

  .p-science-analysis__txt {
    font-size: 1.3rem;
  }

}


/* ========================================
  Research
======================================== */
.p-science-difference__ttl {
  margin-right: 34rem;
}

.p-science-difference__txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.07rem;
}

.p-science-difference-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
}

.p-science-difference-table {
  min-width: 105rem;
  margin: 6.5rem auto 4rem;
  border-collapse: separate;
  border-spacing: 1.5rem;
  table-layout: fixed;
}

.p-science-difference-table__label,
.p-science-difference-table__data,
.p-science-difference-table__item-name {
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
}

.p-science-difference-table__item-name {
  line-height: 2;
  font-size: 1.4rem;
}

.p-science-difference-table__label {
  font-weight: 500;
}


.p-science-difference-table__head .p-science-difference-table__row {
  height: 6.3rem;
}

.p-science-difference-table__label {
  font-size: 1.5rem;
  background: #fff;
  color: #333;
  border-radius: 1rem;
}

.p-science-difference-table__body .p-science-difference-table__row {
  height: 12.3rem;
}

.p-science-difference-table__data,
.p-science-difference-table__item-name {
  font-size: 1.3rem;
}

.p-science-difference-table__data {
  background: #eef1f6;
  color: #0A0A0A;
  border-radius: 1rem;
  padding: 2rem;
}

.p-science-difference-table__item-name,
.p-science-difference-table__label--empty {
  width: 18rem;
  min-width: 18rem;
  background: transparent;
  color: #fff;
}

.p-science-difference-table__col-medium {
  width: 25rem;
  min-width: 25rem;
}

.p-science-difference-table__col-large {
  width: 31rem;
  min-width: 31rem;
}

.p-science-difference-table__label--accent-header {
  background: linear-gradient(250deg,
      #0065A5 34.85%,
      #09949A 74.05%,
      #77C797 92.67%);
  color: #fff;
  border-radius: 1rem;
}

.p-science-difference-table__data--accent {
  background: linear-gradient(247deg, #0065A5 6.46%, #09949A 62.03%, #77C797 88.44%);
  color: #fff;
  border-radius: 1rem;
}

.p-science-difference-table__label--empty {
  background: transparent;
}

@media (max-width: 768px) {
  .p-science-difference {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .p-science-difference__ttl {
    margin-right: 0;
  }

  .p-science-difference__txt {
    font-size: 1.3rem;
  }

  .p-science-difference-table {
    min-width: auto;
    margin: 3.8rem auto 3.5rem;
    border-spacing: 1.5rem;
    margin-left: -1.5rem;
    width: calc(100% + 1.5rem);
  }

  .p-science-difference-table__col-medium {
    width: 18.7rem;
  }

  .p-science-difference-table__head .p-science-difference-table__row {
    height: 4.7rem;
  }

  .p-science-difference-table__body .p-science-difference-table__row {
    height: 9.2rem;
  }

  .p-science-difference-table__item-name,
  .p-science-difference-table__label--empty {
    width: 11rem;
    min-width: 11rem;
  }

  .p-science-difference-table__label {
    font-size: 1.1rem;
  }

  .p-science-difference-table__data,
  .p-science-difference-table__item-name {
    font-size: 1rem;
    padding: .6em
  }

  /* scrollbar */
  .p-science-difference-table-wrapper::-webkit-scrollbar {
    height: 0.4rem;
  }

  .p-science-difference-table-wrapper::-webkit-scrollbar-track {
    background-color: #707070;
    background-clip: content-box;
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
  }

  .p-science-difference-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #fff;
    background-clip: border-box;
    border: none;
  }
}

/* ========================================
  footer
======================================== */
footer {
  margin-top: -10rem;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(10, 10, 10, 0) 50%), url(../../assets/img/footer_bg_pc@2x.jpg);
  background-size: cover;
  background-position: top;
}

.footer__glico {
  width: 75px;
  margin: 0 auto;
}

.footer__logo {
  width: 37.8rem;
  margin: 4rem auto 8rem;
}

.footer__txt-area {
  padding: 0 3rem 2.6rem 3rem;
  justify-content: space-between;
}

.l-footer__links {
  display: flex;
  justify-content: center;
  list-style: none;
}

.l-footer__link {
  font-size: 1.2rem;
  padding: 0 2rem;
  color: #fff;
  border-right: rgba(255, 255, 255, 0.1) solid 0.1rem;
  transition: 0.3s ease;
  ;
}

.l-footer__link:last-of-type {
  border-right: none;
}

.l-footer__link:hover {
  opacity: .8;
}

.footer__copyright {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4889rem;
  letter-spacing: 0.1rem;
}

.footer__copyright-bold {
  font-weight: 500;
}


@media (max-width: 768px) {
  footer{
    margin-top: 0;
  }

  .footer__logo {
    width: 27rem;
    margin: 3rem auto 5rem;
  }

  .footer__txt-area {
    padding: 0px 1rem 2.6rem 1rem;
    gap: 2rem;
  }

  .footer__link-area,
  .footer__copyright {
    font-size: .8rem;
  }
}

/* ========================================
  Page Top
======================================== */

.l-page-top {
  cursor: pointer;
  display: block;
  position: sticky;
  bottom: 5rem;
  left: calc(100% - 10rem);
  width: 5rem;
  height: 5rem;
  margin: 5rem 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.l-page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.l-page-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating buttons group */
.l-floating-btns {
  display: contents;
}

/* Floating product button (SP only) */
.l-floating-product {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  background: linear-gradient(95deg, #0065A5 7.8%, #09949A 50.5%, #77C797 93.21%);
  border-radius: 5rem;
  padding: .4rem;
  width: 100%;
}

.l-floating-product.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.l-floating-product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 5rem;
  padding: 0.8rem 2rem 0.7rem;
  font-family: 'Jost';
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.l-floating-product__btn img {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

@media (max-width: 768px) {
  .l-floating-btns {
    position: sticky;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 2rem;
    margin: 2rem 0;
    pointer-events: none;
    z-index: 2;
  }

  .l-floating-btns .l-page-top {
    position: static;
    left: auto;
    bottom: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .l-floating-product {
    display: block;
  }
}