@charset "UTF-8";

@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../fonts/NotoSansJP-ExtraBold.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont2'; /* フォントの名前 */
    src: url('../fonts/GoldenGooseUppercase-VariableVF.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont3'; /* フォントの名前 */
    src: url('../fonts/Medium.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }



header {
  background-image: url(../img/background.jpg);
  background-position: right;
  background-size: cover;
  font-family: 'CustomFont', sans-serif;

}


/* =========================
Header
========================= */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2000;
}

.lp-header-inner {
  height: 100%;
  padding: 0 70px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.lp-header-logo img {
  height: 50px;
}

/* PCナビ */
.lp-header-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.lp-header-nav a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.btn-register {
  padding: 5px 24px;
  border-radius: 20px;
  background: #4092c2;
  color: #fff !important;
  }

.btn-login {
  padding: 5px 24px;
  border-radius: 20px;
  background: #82bec2;
  color: #fff !important;
}

.store-register {
  padding: 5px 24px;
  border-radius: 20px;
  color: #fff !important;
  background: #363636;
}
.header-accent-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 120px; /* ← 必須 */
  z-index: 0;
}

.header-accent {
  position: absolute;
  top: -150px;
  right: -170px;
  width: 800px;
  height: 250px;
  background: url("../img/top_color.png") no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0; /* ← マイナスをやめる */
}
/* ===== スマホ ===== */
.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

.sp-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  position: fixed;
  top: 0;
  right: 20px;

  height: 60px;
  padding: 0 16px 0 12px;

  background: #439bce; /* 水色タグ */
  border: none;
  border-radius: 0 0 16px 16px; /* 下だけ角丸 */

  font-size: 14px;
  font-weight: bold;
  color: #ffffff;

  z-index: 4000;
}
.sp-menu-btn.active .icon {
  content: "×";
}

/* 三本線・× */
.sp-menu-btn .icon {
  font-size: 18px;
  line-height: 1;
}
.sp-menu {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.sp-menu.active {
  right: 0;
}

.sp-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;
}
.sp-menu-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #41a6ce;
  margin-bottom: 17px;
}
.sp-menu.active {
  right: 0;
}

.sp-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.sp-menu-links a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.sp-menu-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.sp-menu-buttons a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.sp-menu-store {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 28px;
  background: #363636;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: auto;
}
/* 左下アクセント */
.sp-menu-accent {
  position: absolute;
  left: -120px;
  bottom: -80px;

  width: 420px;
  height: 150px;

  background: url("../img/top_color2.png") no-repeat;
  background-size: contain;

  pointer-events: none;
  z-index: 0;
}

.sp-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
}

.sp-menu-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.sp-menu-nav a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

.sns{
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 5px;
}

.sns img{
  width: 30px;
}

/* PC表示 */
@media (min-width: 769px) {
  .pc-only {
    display: flex;
  }
  .sp-only {
    display: none;
  }

}

/* ===== SP ===== */
@media (max-width: 768px) {
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2000;
}
.lp-header-inner {
  height: 100%;
  padding: 0 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.lp-header-logo img {
  height: 35px;
}
/* アクセント画像 */
.header-accent {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 400px;
  height: 250px;
  background: url("../img/top_color.png") no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -20;
}
.header-accent-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80px; /* ← 必須 */
  z-index: 0;
}
}

