@charset "UTF-8";
/* ----------------------------------
   reset.scss
---------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ----------------------------------
   variables.scss
---------------------------------- */
/* カラーパレット */
/* ----------------------------------
   共通スタイル
---------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

h1 {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 800;
}
@media (max-width: 780px) {
  h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}
@media (max-width: 780px) {
  h2 {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}

.bold {
  font-weight: 800;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

@media (max-width: 640px) {
  .sp-hidden {
    display: none;
  }
}

/* Flexbox */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-column-md {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 780px) {
  .flex-column-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-column-sm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  .flex-column-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* padding */
.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

/* margin */
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.ml-05 {
  margin-left: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* ボタン */
.btn-upper-text-secondary {
  font-weight: 800;
  font-size: 0.9rem;
  color: #FF9900;
}

.btn-area {
  text-align: center;
}

/* ボタン二つ */
.btn-double-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media (max-width: 640px) {
  .btn-double-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.btn-double-area.with-text {
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 640px) {
  .btn-double-area.with-text {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 640px) {
  .btn-double-area .btn-item {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .btn-double-area .a-btn {
    display: block;
    text-align: center;
  }
}

/* ボタン1つ */
@media (max-width: 640px) {
  .btn-single-area {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .btn-single-area .a-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* ボタンのスタイル */
.a-btn {
  background-color: #9fca2a;
  color: white;
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.a-btn:hover {
  background-color: #88AF20;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
}

.btn-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 2rem;
  min-width: 220px;
}

.btn-secondary-lg {
  background-color: #FF9900;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 2rem;
  min-width: 220px;
}
.btn-secondary-lg:hover {
  background-color: #E68A00;
}

.btn-invert-lg {
  background-color: white;
  color: #9fca2a;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 2rem;
  border: 2px solid #9fca2a;
  min-width: 220px;
}
.btn-invert-lg:hover {
  background-color: #EEF6DC;
}

.btn-secondary-invert-lg {
  background-color: white;
  color: #FF9900;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 2rem;
  border: 2px solid #FF9900;
  min-width: 280px;
}
.btn-secondary-invert-lg:hover {
  background-color: #FFFBF1;
}

/****バッジパーツ****/
.badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  vertical-align: middle;
}

.badge-gold,
.badge-fee {
  color: #D0A300;
  background: #Fde047;
}

.badge-silver {
  color: #445c97;
  background: rgba(68, 92, 151, 0.05);
}

.badge-upgrade {
  color: #7b6a10;
  background: #f5efc6;
}

.badge-limited {
  color: #617044;
  background: #eef5dd;
}

/* ----------------------------------
  sectionごとの共通スタイル
---------------------------------- */
.section-padding {
  padding: 4rem 0 4rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .section-inner {
    padding: 0 1rem;
  }
}
@media (max-width: 1024px) {
  .section-inner.md-nopadding {
    padding: 0 1rem;
  }
}
@media (max-width: 780px) {
  .section-inner.md-nopadding {
    padding: 0 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-title-mb {
  text-align: center;
  margin-bottom: 4rem;
}

.section-catch {
  text-align: center;
  font-size: 1.1rem;
}
@media (max-width: 912px) {
  .section-catch {
    font-size: 1rem;
  }
}
@media (max-width: 780px) {
  .section-catch {
    text-align: left;
    font-size: 0.9rem;
  }
}

.section-catch-bold {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.section-title-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .section-title-wrapper {
    margin-bottom: 2rem;
  }
}

/* ----------------------------------
  CTAセクション
---------------------------------- */
.section-cta {
  background-color: #BCDA6A;
  text-align: center;
}

.cta-catch-lg {
  font-size: 1.2rem;
  font-weight: 800;
}
.cta-catch-lg.catch-sm {
  font-size: 1rem;
}
.cta-catch-lg.white {
  color: white;
}
.cta-catch-lg.primary {
  color: #9fca2a;
}
.cta-catch-lg.secondary {
  color: #FF9900;
}
@media (max-width: 640px) {
  .cta-catch-lg {
    font-size: 1rem;
  }
}

.section-cta_top-merit {
  background-color: #FFFAE9;
  text-align: center;
  padding: 2rem 0 4rem;
}
.section-cta_top-merit .cta-catch {
  font-size: 1.1rem;
  font-weight: 800;
}

/* ----------------------------------
  footer
---------------------------------- */
footer {
  background-color: #5B3219;
  padding: 2rem;
}

.footer-container {
  text-align: center;
}
.footer-container .copy {
  font-size: 0.8rem;
  color: white;
}

.footer-navi {
  margin: 3rem auto 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
}
.footer-navi a {
  color: white;
  font-size: 0.9rem;
}/*# sourceMappingURL=common.css.map */