@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.pc-only {
  display: block; }
  @media screen and (max-width: 1024px) {
    .pc-only {
      display: none; } }

.sp-only {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sp-only {
      display: block; } }

.pos-right {
  text-align: right; }

.pos-center {
  text-align: center; }

.bold {
  font-weight: bold; }

.mb2 {
  margin-bottom: 2rem; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 16px; }
  @media screen and (max-width: 1024px) {
    html {
      font-size: 14px; } }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  letter-spacing: 0.1rem; }
  body::before {
    content: "";
    display: block;
    position: fixed;
    background-image: url("../images/bg.png");
    background-repeat: repeat;
    width: 100%;
    height: 100svh;
    z-index: -1; }

img, picture {
  max-width: 100%;
  height: auto; }

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

p + * {
  margin-top: 1rem; }

sup {
  vertical-align: super;
  font-size: smaller; }

small {
  font-size: 0.8rem; }

strong {
  font-weight: 500; }

.scroll-prevent {
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .container {
      padding: 0 30px;
      width: 100%;
      max-width: none;
      min-width: 0; } }

*, *::before, *::after {
  box-sizing: border-box; }

a {
  color: #2aab9f; }

.small {
  font-size: .92rem; }

.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid #27344a;
  border-radius: 999px;
  padding: .8rem 1rem;
  text-decoration: none;
  background: #2aab9f;
  color: #1a1a1a; }

.btn.primary {
  border-color: transparent;
  background: #2aab9f;
  color: #fff;
  padding: .8rem 4rem;
  box-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  font-size: clamp(16px, 1vw, 32px); }

.btn.contact {
  border-color: transparent;
  background: #2aab9f;
  color: #fff;
  padding: .8rem 4rem; }

section {
  padding: 64px 0; }

h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 14px; }
  h2 span {
    font-size: clamp(10px, 1.2vw, 14px);
    display: block;
    letter-spacing: -0.01rem;
    padding-left: 1rem;
    position: relative; }
    h2 span::before {
      content: "";
      display: block;
      width: 0.5rem;
      height: 0.5rem;
      background: #2aab9f;
      border-radius: 999px;
      position: absolute;
      left: 0;
      top: 0.4rem; }

/* Grid utils */
.grid {
  display: grid;
  gap: 18px; }

.grid-5 {
  grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .grid-5 {
    grid-template-columns: 1fr; } }
/* Pillars */
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 50, 20, 0.2);
  overflow: hidden; }

.pillar .image {
  width: 100%;
  height: 200px;
  overflow: hidden; }

.pillar .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  display: block; }

.pillar .wrap {
  padding: 1rem; }

.pillar h3 {
  margin: 0;
  font-size: 18px;
  text-align: center;
  margin-bottom: 1rem;
  color: #2aab9f; }

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #2a3a4e;
  background: #0c121b;
  color: #9fb2d0;
  border-radius: 999px;
  padding: .15rem .5rem;
  font-size: 12px; }

.icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #244;
  background: #0e1623; }

.pillar p {
  margin: 0;
  font-size: 14px; }

.pillar ul {
  list-style-type: disc;
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.8rem; }

/* Support details */
.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; }

@media (max-width: 900px) {
  .items {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .items {
    grid-template-columns: 1fr; } }
.item {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 15px rgba(0, 50, 20, 0.2); }
  .item .image {
    text-align: center; }
    .item .image img {
      width: 100%;
      max-width: 100px; }

.item h3 {
  text-align: center;
  margin: 0 0 6px;
  font-size: 16px;
  color: #2aab9f; }

.item p {
  margin: 0;
  font-size: 14px; }

.item ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 14px;
  list-style-type: disc; }

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  padding-left: 2rem; }
  .steps::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2aab9f; }

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr; } }
.step {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0; }

.step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #2aab9f; }

.step h3 span {
  display: inline-block;
  border: 2px solid #2aab9f;
  border-radius: 4px;
  padding: 0 1rem;
  margin-right: 0.5rem; }

.step p {
  margin: 0;
  font-size: 14px; }

/* Construction */
.construction {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; }

@media (max-width: 900px) {
  .construction {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .construction {
    grid-template-columns: 1fr; } }
.citem {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 15px rgba(0, 50, 20, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem; }
  .citem .image {
    width: 40px; }
    .citem .image img {
      width: 100%; }

.citem h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #2aab9f; }

header {
  padding-top: 2rem; }
  header .logo {
    font-weight: bold;
    text-align: center; }
    header .logo img {
      width: 300px; }

.opening {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.8s ease;
  background-image: url("../images/bg.png");
  background-repeat: repeat;
  width: 100%;
  height: 100svh; }
  .opening.hide {
    opacity: 0;
    pointer-events: none; }
  .opening #opening-text {
    font-size: 1.6rem;
    line-height: 1.7;
    opacity: 1;
    white-space: pre-wrap; }

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(2rem);
  animation: charIn 0.45s ease forwards; }

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0); } }
.fade-target {
  opacity: 0;
  transition: opacity 1.2s ease; }
  .fade-target.show {
    opacity: 1; }

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 0;
  filter: blur(0px);
  /* JSで変える */
  transition: filter 0.1s linear; }
  .hero .catch {
    text-align: center;
    margin-bottom: 4rem; }
    .hero .catch .front {
      margin-bottom: 2rem; }
    .hero .catch h1 {
      font-size: clamp(28px, 4vw, 90px);
      margin: 0 0 12px;
      font-weight: bold;
      letter-spacing: -0.05rem;
      color: #00100e;
      text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff; }
      .hero .catch h1 span {
        font-size: clamp(14px, 2vw, 44px); }
    .hero .catch .lead {
      font-size: clamp(16px, 1vw, 32px);
      margin: 6px 0 18px;
      text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff; }
    .hero .catch .chip {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      border: 1px solid #1e293b;
      border-radius: 999px;
      padding: .35rem .7rem;
      color: #a9b6cb;
      font-size: .9rem;
      background: rgba(255, 255, 255, 0.02); }
    .hero .catch .selector {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 10px; }
    .hero .catch .selector .chip {
      cursor: pointer; }
  .hero .visual {
    position: fixed;
    bottom: 0;
    z-index: -1; }
    .hero .visual .swiper {
      width: 100%;
      overflow: hidden; }
      .hero .visual .swiper .swiper-wrapper {
        transition-timing-function: linear !important;
        display: flex; }
      .hero .visual .swiper .swiper-slide {
        width: 20% !important;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center; }
        @media screen and (max-width: 1024px) {
          .hero .visual .swiper .swiper-slide {
            width: 300px !important; } }
        .hero .visual .swiper .swiper-slide img {
          width: 100% !important;
          height: auto;
          object-fit: cover;
          display: block; }

.main {
  width: 100%;
  position: relative;
  background: transparent;
  z-index: 1;
  /* 白の背景（透明→不透明になる） */
  /* 白グラデーション（上0%透明→下100%白） */ }
  .main .white-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* 必要に応じて調整 */
    background: white;
    opacity: 0;
    /* JSでフェードイン */
    pointer-events: none; }
  .main .white-gradient {
    position: absolute;
    top: -200px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    opacity: 0;
    /* JSでフェードイン */
    pointer-events: none; }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -200px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1; }
  .main #cta {
    position: relative; }
    .main #cta .box {
      position: absolute;
      background: #2aab9f;
      color: #fff;
      border-radius: 1rem;
      box-sizing: border-box;
      width: 90svw;
      margin: auto;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      padding: 4rem 0; }
    .main #cta .rayout {
      display: flex;
      align-items: center;
      justify-content: center; }
      .main #cta .rayout .left {
        width: 50%; }
        .main #cta .rayout .left h2 span::before {
          background: #fff; }
      .main #cta .rayout .right .btn {
        background: #fff;
        color: #2aab9f; }

footer {
  padding: 20rem 0 1rem;
  text-align: center; }

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