@charset "UTF-8";

a {
  text-decoration: none;
  color: #333;
}

/* ヒーローセクション */

#product-hero {
  margin-top: 160px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

#product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}

.hero__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 120px 0 100px;
  text-align: center;
}

.hero__text {
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(90deg, #5ae3d1, #1ebebb);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 4px 18px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.hero__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  line-height: 1.2;
}

.hero__lead {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin: 0;
}


/* サマリーセクション */

#summary {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.section__inner {
  width: 1080px;
  margin: 0 auto;
}

.section__title {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #333;
  margin: 0 0 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1ebebb;
  display: inline-block;
}

.section__lead {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 2em;
  color: #333;
  margin: 0 0 20px;
}

.section__text {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2em;
  color: #555;
  margin: 0;
}


/* 背景セクション */

#background {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}

.section__heading {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}

.section__heading small {
  display: block;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #888;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.section__intro {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #555;
  margin: 0 0 40px;
}

.background__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.background__text {
  flex: 1;
}

.background__img {
  flex: 0 0 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}

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

.background__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.background__list li {
  background: #fff;
  padding: 24px 30px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.background__icon {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #1ebebb;
  margin-bottom: 12px;
}

.background__list p {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  color: #555;
  margin: 0;
}


/* 業界テーブルセクション */

#industry-table {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", "Inter", sans-serif;
}

.styled-table thead tr {
  background: linear-gradient(90deg, #5ae3d1, #1ebebb);
}

.styled-table th {
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.styled-table tbody tr.highlight-row {
  background: #fff3e0;
}

.styled-table tbody tr.highlight-row td {
  color: #e65100;
  font-weight: 400;
}


/* コンセプトセクション */

#concept {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
}

#concept .section__heading {
  color: #333;
}

#concept .section__heading small {
  color: #888;
}

.concept__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 50px 0 40px;
  flex-wrap: wrap;
}

.concept__flow-item {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  min-width: 120px;
}

.concept__flow-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.concept__step {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.concept__arrow {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 24px;
  color: #1ebebb;
  padding: 0 12px;
}

.concept__arrow::after {
  content: '\2192';
}

.concept__statement {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  text-align: center;
  line-height: 2em;
  margin: 0;
}


/* 活用イメージセクション */

#scenes {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#scenes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}

.scenes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.scene__item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.scene__item p {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  text-align: center;
  padding: 14px;
  margin: 0;
}


/* 特徴セクション */

#features {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.features__grid li {
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.features__grid li:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature__icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.features__grid h3 {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.features__grid h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #5ae3d1, #1ebebb);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

.features__grid p {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  color: #555;
  margin: 0;
}


/* 比較セクション */

#comparison {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}


/* 提案セクション */

#proposals {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.section__note {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #e65100;
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff3e0;
  border-left: 4px solid #e65100;
  border-radius: 4px;
  line-height: 1.6;
}


/* 協業セクション */

#collaboration {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#collaboration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}


/* CTA */

#contact a {
  height: 300px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact div.contact__inner {
  margin: auto;
}


/* スマホレイアウト */

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

  #product-hero {
    margin-top: 80px;
  }

  .hero__inner {
    width: 85vw;
    padding: 60px 0;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__lead {
    font-size: 16px;
  }

  #summary {
    padding: 60px 0;
  }

  .section__inner {
    width: 85vw;
    margin: 0 auto;
  }

  .section__title {
    font-size: 22px;
  }

  .section__lead {
    font-size: 16px;
  }

  .section__text {
    font-size: 14px;
  }

  #background {
    padding: 60px 0;
  }

  .section__heading {
    font-size: 28px;
  }

  .section__heading small {
    font-size: 14px;
  }

  .background__content {
    flex-direction: column;
  }

  .background__img {
    flex: none;
    width: 100%;
  }

  .background__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .background__list li {
    padding: 24px;
  }

  #industry-table {
    padding: 60px 0;
  }

  .styled-table th {
    padding: 10px 14px;
    font-size: 13px;
  }

  .styled-table td {
    padding: 10px 14px;
    font-size: 13px;
  }

  .concept__flow {
    flex-direction: column;
    gap: 0;
  }

  .concept__flow-item {
    width: 80%;
    min-width: auto;
  }

  .concept__arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .concept__step {
    font-size: 14px;
  }

  .concept__statement {
    font-size: 15px;
  }

  #scenes {
    padding: 60px 0;
  }

  .scenes__grid {
    grid-template-columns: 1fr;
  }

  #features {
    padding: 60px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features__grid li {
    padding: 24px;
  }

  .feature__icon {
    width: 40px;
    height: 40px;
  }

  #comparison {
    padding: 60px 0;
  }

  #proposals {
    padding: 60px 0;
  }

  #collaboration {
    padding: 60px 0;
  }

  #contact a {
    height: 180px;
  }
}


.chibi-mascot {
  text-align: center;
  padding: 40px 0 60px;
}

.chibi-mascot img {
  width: 160px;
  height: auto;
  opacity: 0.85;
}
