*, *::before, *::after {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900; }

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

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  color: #111;
  background: #efefe2;
  line-height: 1.6; }

img {
  max-width: 100%;
  display: block;
  height: auto; }

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

.inner {
  width: min(1080px, 92%);
  margin-inline: auto; }

.section {
  padding: 56px 0; }
  @media (max-width: 768px) {
    .section {
      padding: 40px 0; } }

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03); }
  .header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: #fff;
    --mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 20px 104%;
    -webkit-mask: var(--mask);
    mask: var(--mask); }
  .header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px; }
  .header__logo {
    margin: 0;
    width: 180px; }
    @media (max-width: 768px) {
      .header__logo {
        width: 130px; } }
  .header__nav {
    display: flex;
    gap: 24px;
    font-weight: 700;
    color: #3cb371;
    font-size: 14px; }
    .header__nav a {
      position: relative;
      padding-bottom: 4px; }
      .header__nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #3cb371;
        transition: width .25s ease; }
      .header__nav a:hover::after {
        width: 100%; }
    @media (max-width: 1024px) {
      .header__nav {
        display: none; } }

/*#overview{
	position: relative;
	overflow: hidden;
	
	.floating-suika {
  position: absolute;
  z-index: -2; 
  pointer-events: none;
  opacity: 0.9;

  img {
    width: 100%;
    height: auto;
  }
		
	animation: suikaRun linear infinite;

  &.suika-1 {
    top: 200px;
    width: 100px;
	animation-duration: 8s;
    animation-delay: 0s;
  }

  &.suika-2 {
    top: 700px;
    width: 60px;
	animation-duration: 6s;	  
    animation-delay: 2s;
  }

  &.suika-3 {
    top: 1000px;
    width: 70px;
    animation-duration: 10s;
	animation-delay: 5s;
  }
}
}*/
@keyframes suikaRun {
  0% {
    left: 100%;
    transform: translateX(0) rotate(0deg); }
  100% {
    left: -150px;
    transform: translateX(0) rotate(360deg); } }
.burger-btn,
.burger-menu {
  display: none; }

@media (max-width: 1024px) {
  .burger-btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100; }
    .burger-btn span {
      display: block;
      position: absolute;
      left: 8px;
      width: 24px;
      height: 2px;
      background: #2e8b57;
      transition: all .3s ease; }
      .burger-btn span:nth-child(1) {
        top: 12px; }
      .burger-btn span:nth-child(2) {
        top: 19px; }
      .burger-btn span:nth-child(3) {
        top: 26px; }

  .burger-btn.active span {
    background: #fff; }
    .burger-btn.active span:nth-child(1) {
      transform: translateY(7px) rotate(-45deg); }
    .burger-btn.active span:nth-child(2) {
      opacity: 0; }
    .burger-btn.active span:nth-child(3) {
      transform: translateY(-7px) rotate(45deg); }

  .burger-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #2e8b57;
    z-index: 99;
    transition: right .3s ease;
    padding-top: 100px; }
    .burger-menu__list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center; }
      .burger-menu__list li {
        margin-bottom: 24px; }
        .burger-menu__list li a {
          color: #fff;
          text-decoration: none;
          font-size: 20px;
          font-weight: bold;
          display: block;
          padding: 12px; }

  .burger-menu.active {
    right: 0; } }
.hero {
  position: relative;
  overflow: hidden;
  background: url("../images/bg_body.jpg") center/cover no-repeat;
  padding: 38px 0 110px; }
  .hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin-bottom: -110px; }
    @media (max-width: 768px) {
      .hero__inner {
        flex-direction: column;
        align-items: center;
        gap: 18px; } }
  .hero__badge {
    position: relative;
    z-index: 3;
    width: min(320px, 38%);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
    margin-bottom: 110px; }
    @media (max-width: 768px) {
      .hero__badge {
        width: 65%;
        margin-bottom: 0; } }
  .hero__curve {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(50%);
    width: 220%;
    height: 180px;
    border-radius: 50% 50% 0 0;
    background: #efefe2;
    z-index: 2;
    pointer-events: none; }
  .hero__person {
    position: relative;
    z-index: 1;
    width: min(450px, 44%);
    margin-bottom: 70px; }
    @media (max-width: 768px) {
      .hero__person {
        width: 88%;
        margin-bottom: 0; } }

.section-title {
  margin: 0;
  text-align: center;
  color: #3cb371;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.3;
  font-weight: 900; }

.marker {
  background: linear-gradient(transparent 55%, #ffef3a 55%);
  font-weight: 900; }

.lined-title {
  margin: 0 0 10px;
  text-align: center;
  color: #3cb371;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: .06em;
  position: relative; }
  .lined-title::before, .lined-title::after {
    content: "";
    display: inline-block;
    width: 72px;
    height: 3px;
    background: #111;
    vertical-align: middle;
    margin: 0 14px; }
  @media (max-width: 768px) {
    .lined-title::before, .lined-title::after {
      width: 34px;
      margin: 0 8px; } }

.ribbon-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 12px 72px; }
  .ribbon-title img {
    width: 60%;
    box-sizing: border-box;
    box-sizing: border-box; }
  .ribbon-title::before, .ribbon-title::after {
    content: "";
    position: absolute;
    bottom: -14px;
    width: 48px;
    height: 30px;
    z-index: -1; }
  .ribbon-title::before {
    left: 12px;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 64%);
    transform: skewX(-18deg); }
  .ribbon-title::after {
    right: 12px;
    clip-path: polygon(0 0, 100% 0, 100% 64%, 22% 100%);
    transform: skewX(18deg); }
  @media (max-width: 768px) {
    .ribbon-title {
      padding: 10px 34px; } }

.intro {
  text-align: center; }
  .intro__sub {
    margin: 6px 0 24px;
    color: #2e8b57;
    font-weight: 900;
    font-size: clamp(20px, 2.3vw, 36px); }
  .intro__photo {
    width: min(560px, 100%);
    margin: 0 auto 26px;
    overflow: hidden; }
  .intro__text {
    font-size: clamp(18px, 1.7vw, 28px);
    font-weight: 700;
    color: #2e8b57;
    word-break: keep-all; }
    .intro__text p {
      margin: 0 0 10px; }

.present {
  padding-top: 56px;
  position: relative; }
  @media (max-width: 1024px) {
    .present {
      padding-top: 40px; } }
  @media (max-width: 1024px) {
    .present {
      padding-top: 20px; } }
  .present__title-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto 24px;
    width: min(400px, 60%); }
    @media (max-width: 1024px) {
      .present__title-wrapper {
        width: 400px;
        max-width: 75%;
        margin: 0 auto 12px; } }
    @media (max-width: 768px) {
      .present__title-wrapper {
        width: 400px;
        margin: 0 auto 8px; } }
  .present__title {
    margin: 0;
    width: 100%; }
    .present__title img {
      width: 100%;
      height: auto;
      display: block; }

.prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid #111;
  border-radius: 16px;
  overflow: hidden;
  background: #fff; }
  @media (max-width: 1024px) {
    .prize-grid {
      grid-template-columns: 1fr;
      margin-top: 10px; } }

.prize-card {
  min-height: 280px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
  border-right: 3px dashed #111;
  transition: transform .25s ease, box-shadow .25s ease; }
  .prize-card:last-child {
    border-right: 0; }
  @media (max-width: 1024px) {
    .prize-card {
      border-right: 0;
      border-bottom: 3px dashed #111; }
      .prize-card:last-child {
        border-bottom: 0; } }
  .prize-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
  .prize-card__img {
    width: 70%;
    max-width: 180px;
    flex-shrink: 0; }
    .prize-card__img img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; }
  .prize-card__rank {
    margin: 0 0 5px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .prize-card__rank img {
      width: min(120px, 75%);
      height: auto;
      display: block; }
  .prize-card__name {
    margin: 0 0 15px;
    color: #2e8b57;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.4;
    word-break: keep-all; }
    .prize-card__name span {
      display: inline-block; }
  .prize-card__count {
    margin: 0;
    color: #111;
    font-weight: 700;
    font-size: clamp(16px, 1.6vw, 22px); }
    .prize-card__count strong {
      font-size: clamp(32px, 3.2vw, 48px);
      line-height: 1;
      margin-right: 4px; }

.present__note {
  margin: 30px 0 0;
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  color: #2e8b57;
  font-weight: 900; }

.step-grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1024px) {
    .step-grid {
      grid-template-columns: 1fr; } }

.step-card {
  border: 3px solid #000000;
  border-radius: 12px;
  background: #fff;
  padding: 18px 14px 14px;
  position: relative; }
  .step-card__num {
    margin: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 42px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #3cb371;
    color: #fff;
    font-weight: 900;
    font-size: 24px; }
  .step-card__title {
    margin: 0 0 12px 50px;
    color: #2e8b57;
    font-size: clamp(20px, 1.9vw, 28px);
    line-height: 1.3;
    word-break: keep-all; }
  .step-card img {
    border-radius: 8px;
    width: 70%;
    display: block;
    margin: 0 auto 10px; }
  .step-card__text {
    margin: 0;
    font-size: 14px;
    color: #111; }

.download {
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden; }
  .download__cta {
    display: block;
    width: fit-content;
    max-width: 90%;
    margin: 0 auto 34px;
    padding: 16px 34px;
    border: 5px solid #111;
    font-size: clamp(20px, 2.2vw, 42px);
    font-weight: 900;
    background: #fff;
    position: relative;
    transition: transform .2s ease, background .2s ease;
    text-align: center;
    box-sizing: border-box; }
    .download__cta:hover {
      transform: translateY(-2px);
      background: #f7f7f7; }
    .download__cta::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -18px;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-top: 13px solid #111;
      animation: arrowBounce 1.8s ease infinite; }
    @media (max-width: 768px) {
      .download__cta {
        width: 100%;
        max-width: 100%; } }

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; }
  @media (max-width: 768px) {
    .store-grid {
      grid-template-columns: 1fr; } }

.store-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px;
  border-radius: 10px; }
  .store-item__link {
    display: block;
    width: min(200px, 58%);
    transition: opacity .2s ease; }
    .store-item__link:hover {
      opacity: 0.8; }
  .store-item__badge {
    width: 100%;
    height: auto;
    display: block; }
  .store-item__qr {
    width: min(140px, 34%);
    border: 4px solid #fff; }
  @media (max-width: 768px) {
    .store-item__link {
      width: 58%; }
    .store-item__badge {
      width: 100%; }
    .store-item__qr {
      width: 32%; } }

.notes__box {
  border: 2px solid #111;
  background: rgba(255, 255, 255, 0.55);
  padding: 20px;
  font-size: 10px;
  color: #5b4d41; }
  .notes__box h2, .notes__box h3 {
    margin: 0 0 8px;
    color: #b53838;
    font-size: 16px;
    word-break: keep-all; }
  .notes__box ul {
    margin: 0 0 16px;
    padding-left: 1.2em; }
  .notes__box p {
    margin: 0; }

.footer {
  background: #fff;
  border-top: 4px solid #a8875f;
  text-align: center;
  font-size: 12px;
  padding: 22px 12px 26px;
  line-height: 1.8; }

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease; }
  .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0); }

.delay-1 {
  transition-delay: .12s; }

.delay-2 {
  transition-delay: .24s; }

.js-float {
  animation: float 4.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0); }
  50% {
    transform: translateX(-50%) translateY(4px); } }
