@charset "UTF-8";
/* min-width */
/* ==================================================
   Font Family
================================================== */
/* ==================================================
   Colors
================================================== */
/* ==================================================
   Border Radius
================================================== */
/* ==================================================
   Transition
================================================== */
/* ==================================================
   Flex Utility
================================================== */
/* ==================================================
   FontAwesome
================================================== */
/* ==================================================
   Base / Reset
================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  color: #585858;
}
a:focus {
  outline: none;
}

*:focus {
  outline: none;
}

/* ==================================================
   Body
================================================== */
body {
  margin: 0;
  padding: 0;
  /* Typography */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #585858;
  -webkit-text-size-adjust: 100%;
  /* Layout */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  /* Design */
  background: #FDFDFD;
  counter-reset: number;
  /* Animation */
  animation: fadeIn 2s ease;
}

body:has(.active) {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ==================================================
   Layout
================================================== */
.main-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.main-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 1024px) {
  .main-content-grid {
    grid-template-columns: 1fr minmax(160px, 230px);
    grid-template-rows: 1fr;
    gap: 56px;
  }
}
.main-content-grid.container {
  margin-bottom: 32px;
}
.main-content-grid main {
  grid-row: 2;
  grid-column: 1;
}
@media (min-width: 1024px) {
  .main-content-grid main {
    grid-row: 1;
  }
}
.main-content-grid aside {
  grid-row: 1;
  grid-column: 1;
}
@media (min-width: 1024px) {
  .main-content-grid aside {
    grid-column: 2;
    position: sticky;
    top: 150px;
  }
}

/* ==================================================
   Utilities
================================================== */
.scroll-offset {
  scroll-margin-top: 100px;
}
@media (min-width: 768px) {
  .scroll-offset {
    scroll-margin-top: 128px;
  }
}

section,
article {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  section,
  article {
    margin-bottom: 80px;
  }
}

section:last-of-type {
  margin-bottom: 0;
}

/* ==================================================
   Images
================================================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img.alignleft,
img.alignright,
img.aligncenter {
  display: block;
  float: none;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  img.alignleft,
  img.alignright,
  img.aligncenter {
    margin: 0 20px 20px 0;
  }
}

@media (min-width: 768px) {
  img.alignleft {
    float: left;
  }
}

@media (min-width: 768px) {
  img.alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
}

img.alignnone {
  clear: both;
  display: block;
  margin-bottom: 20px;
}

/* ==================================================
   Elements
================================================== */
hr {
  border: none;
  border-top: 1px solid #585858;
  margin: 0 0 60px;
}

/* ==================================================
   Container
================================================== */
.container {
  width: 100%;
  padding-inline: 4%;
  margin: 0 auto 64px;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.container-fluid {
  padding-inline: 4%;
}

/* ==================================================
   Global Nav
================================================== */
#g-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #C40018;
  z-index: 999;
  /* 初期状態（上に隠す） */
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  /* 展開時 */
}
#g-nav.panelactive {
  transform: translateY(0);
}
#g-nav {
  /* ロゴ */
}
#g-nav h2 {
  background: #fff;
  padding: 16px 4%;
}

/* ==================================================
   Nav Inner Scroll
================================================== */
#g-nav-list {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==================================================
   Nav List
================================================== */
#g-nav ul {
  width: 90%;
  margin: 64px auto 0;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
}
#g-nav ul li {
  list-style: none;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  border-top: dotted 1.5px #999;
}
#g-nav ul li:last-child {
  border-bottom: dotted 1.5px #999;
}
#g-nav ul li a {
  display: block;
  padding: 0.75em 0.5em;
  text-decoration: none;
  color: #585858;
  letter-spacing: 0.1em;
  transition: all 0.5s ease;
}
#g-nav ul li a:hover {
  background: color-mix(in srgb, #fff, black 4%);
}
#g-nav ul {
  /* ===== PC Layout ===== */
}
@media (min-width: 768px) {
  #g-nav ul {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px;
  }
  #g-nav ul li {
    border: 1.5px solid #999 !important;
    border-radius: 4px;
  }
  #g-nav ul li a {
    text-align: center;
    padding: 24px;
    background: rgba(235, 235, 235, 0.2);
    border-radius: 4px;
  }
}

/* ==================================================
   Hamburger Button
================================================== */
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  background: #C40018;
  border-radius: 4px;
}
.openbtn span {
  position: absolute;
  left: 14px;
  width: 45%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
  width: 30%;
  left: 18px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  width: 30%;
  left: 18px;
}

header {
  padding: 16px 0;
}

#header {
  position: relative;
  z-index: 1000;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* 半透明必須 */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1; /* 本体より下に */
}

#header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#header h1 {
  position: relative;
  z-index: 9999; /* 他の要素（ナビなど）より確実に上にする */
  margin: 0; /* 余計な余白で位置がズレるのを防ぐ */
  display: inline-block; /* 面積を確保する */
}
#header h1 a {
  display: block; /* aタグを画像と同じ大きさに広げる */
  position: relative;
  z-index: 10000; /* 最前面 */
  cursor: pointer; /* マウスを乗せた時に指の形にする */
  line-height: 0; /* 画像の下の隙間を排除 */
}
#header h1 img {
  display: block;
  pointer-events: none; /* 画像を透過してaタグをクリックさせる */
}

/* ==================================================
   Footer
================================================== */
footer {
  background: #0099D9;
  color: #fff;
}
footer .container {
  margin-bottom: 0;
  padding-block: 64px;
}
footer {
  /* ----------------------------------------------
     Headings
  ---------------------------------------------- */
}
footer h2,
footer h3,
footer p {
  color: #fff;
  text-align: center;
}
footer h2 {
  margin-bottom: 0;
}
footer h3 {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(3rem, 1rem + 5vw, 5rem);
  font-weight: 600;
  margin-bottom: 0;
}
footer h3::before {
  font: var(--fa-font-solid);
  content: "\f095";
  font-size: 0.7em;
  margin-right: 0.5em;
}
footer p {
  margin-bottom: 2em;
}
footer {
  /* ----------------------------------------------
     Button List
  ---------------------------------------------- */
}
footer .p-btn-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 80%;
  margin-inline: auto;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  footer .p-btn-list {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
}
@media (min-width: 1024px) {
  footer .p-btn-list {
    width: 70%;
  }
}
@media (min-width: 1280px) {
  footer .p-btn-list {
    width: 60%;
  }
}
footer .p-btn-list a {
  display: block;
  background: #fff;
  color: #0099D9;
  text-decoration: none;
  padding: 0.75em 2em;
  border-radius: calc(infinity * 1px);
}
footer .p-btn-list li a::before {
  margin-right: 8px;
}
footer .p-btn-list li.icon-mail a::before {
  font: var(--fa-font-solid);
  content: "\f0e0";
}
footer .p-btn-list li.icon-pdf a::before {
  font: var(--fa-font-solid);
  content: "\f1c1";
}
footer {
  /* ----------------------------------------------
     Copyright
  ---------------------------------------------- */
}
footer .copyright {
  background: #F9F7F7;
  text-align: center;
  font-size: small;
  color: #585858;
  padding: 1em 0;
}

/* ==================================================
   Button Base
================================================== */
.c-btn {
  display: inline-block;
}
.c-btn__link {
  display: block;
  text-decoration: none;
  color: #fff;
  background: #C40018;
  padding: 0.75em 3em;
  font-size: 1.4rem;
  border-radius: 9999px;
  transition: all 0.5s ease;
}
.c-btn__link::after {
  font: var(--fa-font-solid);
  content: "\f105";
  margin-left: 8px;
}
.c-btn__link:hover {
  background: color-mix(in srgb, #C40018, black 20%);
}

/* ==================================================
   Primary
================================================== */
/* ==================================================
   Secondary
================================================== */
.c-btn--secondary .c-btn__link {
  font-size: clamp(1.8rem, 1.6rem + 0.5vw, 2rem);
  padding: 1em 4em;
  border-radius: 0;
}

.gap {
  display: inline-block;
  background-color: inherit;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.c-flex--contentCenter {
  display: flex;
  justify-content: center;
}

.c-container--grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.grid-span-1 {
  grid-column: span 1;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-7 {
  grid-column: span 7;
}

.grid-span-8 {
  grid-column: span 8;
}

.grid-span-9 {
  grid-column: span 9;
}

.grid-span-10 {
  grid-column: span 10;
}

.grid-span-11 {
  grid-column: span 11;
}

.grid-span-12 {
  grid-column: span 12;
}

@media (min-width: 640px) {
  .grid-span-sm-1 {
    grid-column: span 1;
  }
  .grid-span-sm-2 {
    grid-column: span 2;
  }
  .grid-span-sm-3 {
    grid-column: span 3;
  }
  .grid-span-sm-4 {
    grid-column: span 4;
  }
  .grid-span-sm-5 {
    grid-column: span 5;
  }
  .grid-span-sm-6 {
    grid-column: span 6;
  }
  .grid-span-sm-7 {
    grid-column: span 7;
  }
  .grid-span-sm-8 {
    grid-column: span 8;
  }
  .grid-span-sm-9 {
    grid-column: span 9;
  }
  .grid-span-sm-10 {
    grid-column: span 10;
  }
  .grid-span-sm-11 {
    grid-column: span 11;
  }
  .grid-span-sm-12 {
    grid-column: span 12;
  }
}
@media (min-width: 768px) {
  .grid-span-md-1 {
    grid-column: span 1;
  }
  .grid-span-md-2 {
    grid-column: span 2;
  }
  .grid-span-md-3 {
    grid-column: span 3;
  }
  .grid-span-md-4 {
    grid-column: span 4;
  }
  .grid-span-md-5 {
    grid-column: span 5;
  }
  .grid-span-md-6 {
    grid-column: span 6;
  }
  .grid-span-md-7 {
    grid-column: span 7;
  }
  .grid-span-md-8 {
    grid-column: span 8;
  }
  .grid-span-md-9 {
    grid-column: span 9;
  }
  .grid-span-md-10 {
    grid-column: span 10;
  }
  .grid-span-md-11 {
    grid-column: span 11;
  }
  .grid-span-md-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1024px) {
  .grid-span-lg-1 {
    grid-column: span 1;
  }
  .grid-span-lg-2 {
    grid-column: span 2;
  }
  .grid-span-lg-3 {
    grid-column: span 3;
  }
  .grid-span-lg-4 {
    grid-column: span 4;
  }
  .grid-span-lg-5 {
    grid-column: span 5;
  }
  .grid-span-lg-6 {
    grid-column: span 6;
  }
  .grid-span-lg-7 {
    grid-column: span 7;
  }
  .grid-span-lg-8 {
    grid-column: span 8;
  }
  .grid-span-lg-9 {
    grid-column: span 9;
  }
  .grid-span-lg-10 {
    grid-column: span 10;
  }
  .grid-span-lg-11 {
    grid-column: span 11;
  }
  .grid-span-lg-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1280px) {
  .grid-span-xl-1 {
    grid-column: span 1;
  }
  .grid-span-xl-2 {
    grid-column: span 2;
  }
  .grid-span-xl-3 {
    grid-column: span 3;
  }
  .grid-span-xl-4 {
    grid-column: span 4;
  }
  .grid-span-xl-5 {
    grid-column: span 5;
  }
  .grid-span-xl-6 {
    grid-column: span 6;
  }
  .grid-span-xl-7 {
    grid-column: span 7;
  }
  .grid-span-xl-8 {
    grid-column: span 8;
  }
  .grid-span-xl-9 {
    grid-column: span 9;
  }
  .grid-span-xl-10 {
    grid-column: span 10;
  }
  .grid-span-xl-11 {
    grid-column: span 11;
  }
  .grid-span-xl-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1536px) {
  .grid-span-xxl-1 {
    grid-column: span 1;
  }
  .grid-span-xxl-2 {
    grid-column: span 2;
  }
  .grid-span-xxl-3 {
    grid-column: span 3;
  }
  .grid-span-xxl-4 {
    grid-column: span 4;
  }
  .grid-span-xxl-5 {
    grid-column: span 5;
  }
  .grid-span-xxl-6 {
    grid-column: span 6;
  }
  .grid-span-xxl-7 {
    grid-column: span 7;
  }
  .grid-span-xxl-8 {
    grid-column: span 8;
  }
  .grid-span-xxl-9 {
    grid-column: span 9;
  }
  .grid-span-xxl-10 {
    grid-column: span 10;
  }
  .grid-span-xxl-11 {
    grid-column: span 11;
  }
  .grid-span-xxl-12 {
    grid-column: span 12;
  }
}
.grid-span-auto {
  grid-column: auto;
}

.gap20-40 {
  gap: 48px 20px !important;
}

.gap40 {
  row-gap: 40px !important;
}
@media (min-width: 768px) {
  .gap40 {
    row-gap: 0 !important;
  }
}

.gap-row-0 {
  row-gap: 0 !important;
}

.gap-column-40 {
  column-gap: 40px !important;
}

figure {
  margin: 0;
  padding: 0;
}

.c-round--4 {
  border-radius: 4px;
}

.c-round--8 {
  border-radius: 8px;
}

.c-round--16 {
  border-radius: 16px;
}

.c-round--circle {
  border-radius: calc(infinity * 1px);
}

.c-aspect32 {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.c-aspect1 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.c-spect1--32 {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .c-spect1--32 {
    aspect-ratio: 1;
  }
}

/* ===============================
   Table Layout Mixin（先に定義）
================================= */
/* ===============================
   Base Table
================================= */
table,
table.c-table-specification {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: clamp(1.5rem, 1.43rem + 0.19vw, 1.6rem);
  font-weight: 400;
  color: #585858;
  border-top: 2px solid #585858;
  border-bottom: 2px solid #585858;
}
table tr,
table th,
table td,
table.c-table-specification tr,
table.c-table-specification th,
table.c-table-specification td {
  display: block;
  width: 100%;
}
table tr,
table.c-table-specification tr {
  border-top: 1px solid #c2c2c2;
}
table tr:last-of-type,
table.c-table-specification tr:last-of-type {
  border-bottom: 1px solid #c2c2c2;
}
table th,
table.c-table-specification th {
  padding: 16px 8px 8px;
  text-align: left;
}
table td,
table.c-table-specification td {
  padding: 0 8px 16px;
}

/* ===============================
   Responsive
================================= */
@media (min-width: 768px) {
  table:not(.c-table-specification) tr {
    display: table-row;
  }
  table:not(.c-table-specification) th,
  table:not(.c-table-specification) td {
    display: table-cell;
    width: auto;
    padding: 24px 8px;
  }
  table:not(.c-table-specification) th {
    width: 28%;
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  table.c-table-specification tr {
    display: table-row;
  }
  table.c-table-specification th,
  table.c-table-specification td {
    display: table-cell;
    width: auto;
    padding: 24px 8px;
  }
  table.c-table-specification th {
    width: 28%;
    font-weight: 500;
  }
}

/* =================================================
   共通背景
================================================= */
.p-bg--gray {
  background: #f9f7f7;
  padding: 64px 0;
}
@media (min-width: 768px) {
  .p-bg--gray {
    padding: 80px 0;
  }
}

/* =================================================
   3ピックアップ
================================================= */
.p-pickup {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
.p-pickup li {
  background: #fff;
  padding: 20px 16px;
  border-radius: 8px;
  box-shadow: 4px 4px 8px rgba(17, 17, 26, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 4.5fr);
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-pickup li {
    gap: 24px;
  }
}
.p-pickup li img {
  width: 100%;
  height: auto;
  display: block;
}
.p-pickup li h5 {
  color: #0099D9;
  font-size: clamp(1.5rem, 1.3rem + 0.5vw, 1.7rem);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .p-pickup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3vw;
  }
  .p-pickup li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    padding: 10%;
  }
  .p-pickup li > div:first-child {
    margin-bottom: 12px;
    width: 35%;
  }
}

/* =================================================
   それ、ネフロンシステムで解決します！
================================================= */
ul.c-grid-3 {
  list-style: none;
  background: #0099D9;
  border-radius: 16px 16px 0 0;
}
ul.c-grid-3 li {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 24px;
  padding: 4%;
  align-items: center;
}
ul.c-grid-3 li img {
  margin-inline: auto;
}
ul.c-grid-3 li h5 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  ul.c-grid-3 li h5 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  ul.c-grid-3 li h5 {
    font-size: 1.8rem;
    margin-bottom: 1em;
  }
}
ul.c-grid-3 li p {
  color: #fff;
  font-size: 1.4rem;
}
ul.c-grid-3 li br {
  display: none;
}
ul.c-grid-3 li:nth-child(-n+2) {
  border-bottom: 2px solid #fff;
}
@media (min-width: 1024px) {
  ul.c-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  ul.c-grid-3 li {
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    grid-row: span 2;
    padding: 8%;
    text-align: center;
    align-items: start;
    gap: 8px;
  }
  ul.c-grid-3 li br {
    display: block;
  }
  ul.c-grid-3 li:nth-child(-n+2) {
    border-bottom: none;
    border-right: 2px solid #fff;
  }
  ul.c-grid-3 li .c-grid-3__img {
    padding-bottom: 4%;
  }
  ul.c-grid-3 li .c-grid-3__text {
    padding-bottom: 8%;
  }
  ul.c-grid-3 li p {
    text-align: center;
  }
}

/* =================================================
   システムイラストボックス
================================================= */
.c-border-box {
  border: 3px solid #0099D9;
  border-radius: 0 0 16px 16px;
  padding: 4% 8%;
}
.c-border-box img {
  width: 90%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-border-box img {
    width: 60%;
  }
}

/* =================================================
   システムの特徴
================================================= */
.p-tokucho-block {
  border: 1px solid #ddd;
  border-top: none;
}
.p-tokucho-block .wrapper {
  padding: 4%;
}

/* 特徴グリッド（縦3） */
.c-grid-3--tokucho {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 1024px) {
  .c-grid-3--tokucho {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid-3--tokucho img {
  margin-bottom: 16px;
}
.c-grid-3--tokucho ul {
  padding-left: 1.5em;
  font-size: 1.5rem;
}
.c-grid-3--tokucho ul li + li {
  margin-top: 0.5em;
}

/* 特徴グリッド（横2） */
.c-grid-3--tokucho-yoko {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 1024px) {
  .c-grid-3--tokucho-yoko {
    grid-template-columns: 1fr 2fr;
  }
}
.c-grid-3--tokucho-yoko ul {
  padding-left: 1.5em;
  font-size: 1.5rem;
}
.c-grid-3--tokucho-yoko ul li + li {
  margin-top: 0.5em;
}

/* =================================================
   YouTube一覧
================================================= */
ul.c-youtube {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 4px solid #d6d6d6;
}
@media (min-width: 1024px) {
  ul.c-youtube {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
    padding-top: 64px;
  }
}
ul.c-youtube li iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

/* =================================================
   製品一覧
================================================= */
.p-product-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-product-list h4 {
  text-align: center;
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 1.8rem);
  margin-bottom: 1em;
}
.p-product-list table {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.p-product-list table th {
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-product-list table td {
    padding-left: 2em;
  }
}

/* =================================================
   YouTube単体エリア
================================================= */
.c-youtube-area {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 4px solid #d6d6d6;
}
@media (min-width: 768px) {
  .c-youtube-area {
    margin-top: 64px;
    padding-top: 64px;
  }
}
.c-youtube-area iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .c-youtube-area iframe {
    width: 80%;
  }
}

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

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

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

@media (min-width: 768px) {
  .u-align-center--pc {
    text-align: center !important;
  }
}

.u-align-sponly {
  text-align: left;
}
@media (min-width: 768px) {
  .u-align-sponly {
    text-align: center;
  }
}

.u-order-1 {
  order: 1 !important;
}

.u-order-2 {
  order: 2 !important;
}

.u-order-3 {
  order: 3 !important;
}

.u-order-4 {
  order: 4 !important;
}

.u-order-5 {
  order: 5 !important;
}

@media (min-width: 768px) {
  .u-order-md_1 {
    order: 1 !important;
  }
  .u-order-md_2 {
    order: 2 !important;
  }
  .u-order-md_3 {
    order: 3 !important;
  }
  .u-order-md_4 {
    order: 4 !important;
  }
  .u-order-md_5 {
    order: 5 !important;
  }
}
@media (min-width: 1024px) {
  .u-order-lg_1 {
    order: 1 !important;
  }
  .u-order-lg_2 {
    order: 2 !important;
  }
  .u-order-lg_3 {
    order: 3 !important;
  }
  .u-order-lg_4 {
    order: 4 !important;
  }
  .u-order-lg_5 {
    order: 5 !important;
  }
}
.u-only-pc {
  display: none;
}
@media (min-width: 1024px) {
  .u-only-pc {
    display: block;
  }
}

@media (min-width: 1024px) {
  .u-only-sp {
    display: none;
  }
}

.c-border {
  border: solid 1px #eee;
}

.shadow {
  box-shadow: 8px 8px 0px 0px rgba(10, 10, 10, 0.1);
}

.shadow_2 {
  box-shadow: 4px 4px 8px 0px rgba(17, 17, 26, 0.08);
}

.u-mx--0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-mb--0 {
  margin-bottom: 0 !important;
}

.u-mb--1 {
  margin-bottom: 1em !important;
}

.u-mb--2 {
  margin-bottom: 1.5em !important;
}

.u-mb--3 {
  margin-bottom: 2em !important;
}

.u-mb--4 {
  margin-bottom: 2.5em !important;
}

.u-mb--5 {
  margin-bottom: 3em !important;
}

.u-mb--6 {
  margin-bottom: 5em !important;
}

.u-mt--0 {
  margin-top: 0 !important;
}

.u-mt--1 {
  margin-top: 1em !important;
}

.u-mt--2 {
  margin-top: 1.5em !important;
}

.u-mt--3 {
  margin-top: 2em !important;
}

.u-mt--4 {
  margin-top: 2.5em !important;
}

.u-mt--5 {
  margin-top: 3em !important;
}

.u-ml--0 {
  margin-left: 0 !important;
}

.u-ml--1 {
  margin-left: 1em !important;
}

.u-ml--2 {
  margin-left: 1.5em !important;
}

.u-ml--3 {
  margin-left: 2em !important;
}

.u-ml--4 {
  margin-left: 2.5em !important;
}

.u-ml--5 {
  margin-left: 3em !important;
}

.u-mr--0 {
  margin-right: 0 !important;
}

.u-mr--1 {
  margin-right: 1em !important;
}

.u-mr--2 {
  margin-right: 1.5em !important;
}

.u-mr--3 {
  margin-right: 2em !important;
}

.u-mr--4 {
  margin-right: 2.5em !important;
}

.u-mr--5 {
  margin-right: 3em !important;
}

.u-px--0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-pb--0 {
  padding-bottom: 0 !important;
}

.u-pb--1 {
  padding-bottom: 1em !important;
}

.u-pb--2 {
  padding-bottom: 1.5em !important;
}

.u-pb--3 {
  padding-bottom: 2em !important;
}

.u-pb--4 {
  padding-bottom: 2.5em !important;
}

.u-pb--5 {
  padding-bottom: 3em !important;
}

.u-pt--0 {
  padding-top: 0 !important;
}

.u-pt--1 {
  padding-top: 1em !important;
}

.u-pt--2 {
  padding-top: 1.5em !important;
}

.u-pt--3 {
  padding-top: 2em !important;
}

.u-pt--4 {
  padding-top: 2.5em !important;
}

.u-pt--5 {
  padding-top: 3em !important;
}

.u-position--center {
  display: flex;
  justify-content: center;
}

/* ==================================================
   Paragraph
================================================== */
p {
  font-size: clamp(1.5rem, 1.4rem + 0.25vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 1em;
  text-align: justify;
  text-justify: distribute;
  word-break: normal;
}

/* ==================================================
   H2
================================================== */
h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  text-align: center;
  color: #0099D9;
  margin-bottom: 1.5em;
}

/* ---------- H2 Arrow ---------- */
h2.u-v2--arrow {
  position: relative;
  display: inline-block;
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 3px solid #0099D9;
}
h2.u-v2--arrow::before, h2.u-v2--arrow::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 28px 24px 0;
}
h2.u-v2--arrow::before {
  bottom: -28px;
  border-color: #0099D9 transparent transparent;
}
h2.u-v2--arrow::after {
  bottom: -24px;
  border-color: #fff transparent transparent;
}

/* ---------- H2 Number ---------- */
h2.u-v2--num {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.2rem);
  background: #0099D9;
  color: #fff;
  text-align: left;
  display: block;
  position: relative;
  padding: 2% 2% 2% 5em;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}
h2.u-v2--num::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 3em;
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  opacity: 0.6;
}
h2.u-v2--num span {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
}

/* ==================================================
   H3
================================================== */
h3 {
  font-size: clamp(1.7rem, 1.5rem + 0.5vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 1.5em;
}

/* ---------- H3 Beans ---------- */
h3.u-v3-beans {
  text-align: center;
  background: #FFCC00;
  padding: 0.5em 2em;
  font-weight: 500;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  h3.u-v3-beans {
    text-align: left;
  }
}

/*# sourceMappingURL=styles.css.map */
