@charset "UTF-8";
/* =========================
    Colors
========================= */
/* =========================
    Typography
========================= */
/* =========================
    Spacing
========================= */
/* =========================
    Breakpoints
========================= */
/* =========================
    Layout
========================= */
/* =========================
    z-index
========================= */
/* Minimal reset / normalize-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* ===== 全体指定 ===== */
:root {
  font-family: "Roboto", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== Roboto（英数字） ===== */
@font-face {
  font-family: "Roboto";
  src: url("../../assets/font/roboto-v50-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Basic Latin + Latin-1 Supplement + Latin Extended */
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2100-214F;
}
@font-face {
  font-family: "Roboto";
  src: url("../../assets/font/roboto-v50-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2100-214F;
}
/* ===== Noto Sans JP（日本語） ===== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../assets/font/noto-sans-jp-japanese-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Hiragana, Katakana, Kanji (CJK Unified Ideographs), etc. */
  unicode-range: U+3000-30FF, U+31F0-31FF, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FF00-FFEF;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../assets/font/noto-sans-jp-japanese-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+3000-30FF, U+31F0-31FF, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FF00-FFEF;
}
/* ここに各パーツを増やしていくのが基本 */
.site-header__inner {
  display: flex;
  justify-content: space-between;
}

.mobile {
  display: block;
}

.site-body__fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.site-header {
  position: fixed;
  top: 10px;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
}
.site-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: 0.4s;
  padding: 0;
}
.site-header .site-header__logo {
  width: 240px;
  margin: 0 auto;
  z-index: 2;
}
.site-header .site-header__toggle {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-left: auto;
  background: 0 0;
  border: none;
  cursor: pointer;
  z-index: 99;
}
.site-header .site-header__toggle-bar {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #333;
  right: 0;
  left: 0;
  margin: auto;
  transition: 0.2s ease-in-out;
}
.site-header .site-header__toggle-bar:nth-of-type(1) {
  top: 0;
}
.site-header .site-header__toggle-bar:nth-of-type(2) {
  top: 9px;
}
.site-header .site-header__toggle-bar:nth-of-type(3) {
  top: 18px;
}
.site-header .site-header__nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 120px;
}
.site-header.site-header__open .site-header__nav {
  transform: translateX(0);
}
.site-header.site-header__open .site-header__toggle-bar:nth-of-type(1) {
  top: 9px;
  transform: rotate(225deg);
}
.site-header.site-header__open .site-header__toggle-bar:nth-of-type(2) {
  width: 0;
}
.site-header.site-header__open .site-header__toggle-bar:nth-of-type(3) {
  top: 9px;
  transform: rotate(-225deg);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer {
    position: relative;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 6vh, 72px) 32px;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  grid-template-areas: "img copy" "img body";
  align-items: center;
  column-gap: 40px;
  row-gap: 24px;
}
.hero__copy {
  grid-area: copy;
  position: relative;
  display: inline-block;
  justify-self: start;
  margin: 80px 0 12px;
  transform: rotate(-6deg);
  transform-origin: left center;
}
.hero__title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #0b2942;
  font-weight: 900;
  line-height: 1;
  transform: skewX(-14deg);
  transform-origin: left center;
}
.hero__title::before, .hero__title::after {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  background: #0b2942;
  transform-origin: left center;
}
.hero__title::before {
  top: -38px;
  width: 400px;
  transform: translateX(-3%) rotate(-8deg);
}
.hero__title::after {
  bottom: -14px;
  width: 400px;
  transform: translateX(5%) rotate(6deg);
}
.hero__title-top, .hero__title-main {
  display: block;
  white-space: nowrap;
}
.hero__title-top {
  font-size: clamp(28px, 2.8vw, 54px);
  letter-spacing: 0.02em;
}
.hero__title-main {
  font-size: clamp(64px, 6.2vw, 116px);
  letter-spacing: 0.01em;
}
.hero__img {
  grid-area: img;
  position: relative;
  z-index: 1;
}
.hero__img img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__lead {
  margin: 0 0 24px;
  color: #0b2942;
  font-size: clamp(34px, 4.1vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.hero__desc {
  margin-bottom: 32px;
}
.hero__desc p {
  margin: 0;
  color: #0b2942;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 9999px;
  background: #0b2942;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 8px;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.95fr);
    column-gap: 24px;
    row-gap: 20px;
    padding: 40px 24px 56px;
  }
  .hero__title::before {
    top: -30px;
    width: 420px;
  }
  .hero__title::after {
    bottom: -28px;
    width: 390px;
  }
  .hero__lead {
    margin-bottom: 20px;
  }
  .hero__desc {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero {
    align-items: flex-start;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "img" "body";
    row-gap: 24px;
    padding: 24px 20px 40px;
  }
  .hero__copy {
    justify-self: center;
    margin: 120px 0 0;
    transform: rotate(-5deg);
  }
  .hero__title {
    transform: skewX(-12deg);
    text-align: center;
  }
  .hero__title::before, .hero__title::after {
    top: 92px;
    left: 0;
    height: 3px;
  }
  .hero__title::before {
    left: 26px;
    width: 110px;
    transform: rotate(-108deg);
  }
  .hero__title::after {
    right: -82px;
    left: auto;
    width: 100px;
    transform: rotate(-80deg);
  }
  .hero__title-top {
    font-size: clamp(20px, 6vw, 30px);
  }
  .hero__title-main {
    font-size: clamp(46px, 16vw, 72px);
  }
  .hero__img {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .hero__body {
    align-items: center;
    text-align: center;
  }
  .hero__lead {
    margin: 0 0 24px;
    font-size: clamp(28px, 9vw, 48px);
    line-height: 1.3;
  }
  .hero__desc {
    margin-bottom: 28px;
  }
  .hero__desc p {
    font-size: 14px;
    line-height: 1.75;
  }
  .hero__actions a {
    min-width: 180px;
    min-height: 48px;
    padding: 0 24px;
    font-size: 22px;
  }
}

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