/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  /* Font */
  --font-family-jp1: "M PLUS 2", sans-serif;
  --font-family-jp2: "CP and U-Fo", sans-serif;
  --font-family-en1: "Bungee", sans-serif;
  --font-family-en2: "Montserrat", sans-serif;
  --font-family-en3: "Dela Gothic One", sans-serif;

  /* Transition */
  --transition: 0.3s ease;
}

/* ==========================================================================
   Font
   ========================================================================== */
@font-face {
  font-family: "CP and U-Fo";
  src:
    url("../fonts/cp-and-u-fo.woff2") format("woff2"),
    url("../fonts/cp-and-u-fo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding: var(--header-height);
  font-size: var(--font-size);
}

body {
  overflow-x: clip;
  font-family: var(--font-family-jp1);
  color: #222222;
  font-weight: 400;
  background: #ffd000;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 1;
}

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

:focus,
:focus-visible {
  outline: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ==========================================================================
    既存サイトのリセット
========================================================================== */
header.--site {
  display: none;
}

.footer {
  display: none;
}

/* ==========================================================================
    display
========================================================================== */
.lp-sp-only {
  display: none;
}

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

  .lp-sp-only {
    display: block;
  }
}

/* ==========================================================================
    Common - Inner
========================================================================== */
.lp-inner {
  max-width: calc(100vw * 1200 / 1440);
  margin-inline: auto;
  padding-inline: calc(100vw * 120 / 1440);
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .lp-inner {
    max-width: calc(100vw * 1200 / 390);
    padding-inline: calc(100vw * 16 / 390);
  }
}

/* ==========================================================================
    Common - Section Title
========================================================================== */
.lp-section__ttl {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lp-section__ttl-sub {
  display: block;
  top: 0;
  font-family: var(--font-family-en1);
  font-weight: 400;
  font-size: calc(100vw * 80 / 1440);
  line-height: 1.3;
  color: #f28100;
  position: relative;
  z-index: -1;
}

.lp-section__ttl-main {
  display: block;
  font-family: var(--font-family-jp2);
  font-weight: 400;
  font-size: calc(100vw * 36 / 1440);
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-top: calc(100vw * -40 / 1440);
}

@media screen and (max-width: 768px) {
  .lp-section__ttl-sub {
    font-size: calc(100vw * 32 / 390);
  }

  .lp-section__ttl-main {
    font-size: calc(100vw * 16 / 390);
    margin-top: calc(100vw * -18 / 390);
  }
}

/* ==========================================================================
    Common - Section Lead
========================================================================== */
.lp-section__lead {
  font-weight: 600;
  font-size: calc(100vw * 20 / 1440);
  line-height: 1.5;
  text-align: center;
  margin-top: calc(100vw * 30 / 1440);
}

@media screen and (max-width: 768px) {
  .lp-section__lead {
    font-size: calc(100vw * 10 / 390);
    margin-top: calc(100vw * 12 / 390);
  }
}

/* ==========================================================================
    Common - Section Circle
========================================================================== */
.lp-section__circle {
  position: absolute;
  width: calc(100vw * 12 / 1440);
  height: calc(100vw * 12 / 1440);
  border-radius: 50%;
  background: #ed872d;
}

.lp-section__circle--1 {
  top: calc(100vw * 20 / 1440);
  left: calc(100vw * 20 / 1440);
}

.lp-section__circle--2 {
  top: calc(100vw * 20 / 1440);
  right: calc(100vw * 20 / 1440);
}

.lp-section__circle--3 {
  bottom: calc(100vw * 20 / 1440);
  left: calc(100vw * 20 / 1440);
}

.lp-section__circle--4 {
  bottom: calc(100vw * 20 / 1440);
  right: calc(100vw * 20 / 1440);
}

@media screen and (max-width: 768px) {
  .lp-section__circle {
    width: calc(100vw * 8 / 390);
    height: calc(100vw * 8 / 390);
  }

  .lp-section__circle--1 {
    top: calc(100vw * 8 / 390);
    left: calc(100vw * 8 / 390);
  }

  .lp-section__circle--2 {
    top: calc(100vw * 8 / 390);
    right: calc(100vw * 8 / 390);
  }

  .lp-section__circle--3 {
    bottom: calc(100vw * 8 / 390);
    left: calc(100vw * 8 / 390);
  }

  .lp-section__circle--4 {
    bottom: calc(100vw * 8 / 390);
    right: calc(100vw * 8 / 390);
  }
}
