@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    line-height: 1.6;
    font-feature-settings: "palt";
    overflow-wrap: break-word;
    color: var(--color-main);
}

a{
  text-decoration: none;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*　カラー設定　*/
:root {
  --color-main: #006241;
  --color-light-green: #96B7AC7f;
  --color-dark-green: #005134;
}

main {
  max-width: 1000px; /* 最大幅 */
  margin: 0 auto; /* 上下 0、左右 自動 → 中央寄せ */
  padding: 0 20px; /* SPで左右の余白確保 */
}
@media (min-width: 768px) and (max-width: 1024px) {
  main {
    padding: 0 5rem; /* SP余白 */
  }
}

@media screen and (max-width: 767px) {
  main {
    padding: 0 20px;
  }
}

/*　フォント　*/
h1 {
  color: var(--color-blue);
  font-size: clamp(104px, 14vw, 170px);
  text-align: left;
  font-weight: 700;
}

h2 {
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.caution {
  font-size: 12px;
  font-weight: 400;
}

section{
  margin-bottom: 4.625rem;
}

/*---------------------------
       Key Visual
 ---------------------------*/
.kv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.js-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.kv__image {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -1;

  --bg-scale: 3;
  animation: rotateBg 60s linear infinite;
  transform-origin: center center;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg) scale(var(--bg-scale));
  }

  to {
    transform: rotate(360deg) scale(var(--bg-scale));
  }
}
/* スマホ */
@media screen and (max-width: 960px) {
  .kv__image {
    --bg-scale: 3.2;
  }
}

/* ---　ロゴ --- */
.kv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;

  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);

  animation: tourLogoAnim 2.2s cubic-bezier(0.75, 0.16, 0.19, 1.11) forwards;
  will-change: transform, opacity;
}

/* スマホ */
@media screen and (max-width: 960px) {
  .kv__logo {
    width: 80%;
  }
}

.kv__logo img {
  max-width: 100%;
}

@keyframes tourLogoAnim {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(-260deg);
  }

  65% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.22) rotate(360deg);
  }

  75% {
    transform: translate(-50%, -50%) scale(0.68)rotate(320deg);
  }

  /* 90% {
    transform: translate(-50%, -50%) scale(1.1)rotate(360deg);
  } */

  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    opacity: 1;
  }
}

/*---------------------------
       背景 animation
 ---------------------------*/
.sticker_shiny-top-left{
            position: absolute;
            top: 3rem;
            left: 5rem;
            transform: translate(-50%, -50%);
            max-width: 150px;
            animation: twinkle 3.5s infinite ease-in-out;
            z-index: -1;
        }
        .sticker_shiny-top-right{
            position: absolute;
            top: 3rem;
            right: -5rem;
            transform: translate(-50%, -50%);
            max-width: 150px;
            animation: twinkle 1.9s infinite ease-in-out;
            z-index: -1;
        }
        .sticker_shiny-middle-left{
            position: absolute;
            top: 12rem;
            left: 02rem;
            transform: translate(-50%, -50%);
            max-width: 150px;
            animation: twinkle 3s infinite ease-in-out;
            z-index: -1;
        }
        .sticker_shiny-middle-right{
            position: absolute;
            top: 12rem;
            right: -8rem;
            transform: translate(-50%, -50%);
            max-width: 150px;
            animation: twinkle 2.2s infinite ease-in-out;
            z-index: -1;
        }
        .sticker_shiny-bottom-left{
            position: absolute;
            bottom: 1rem;
            left: -2rem;
            transform: translate(-50%, -50%);
            max-width: 100px;
            animation: twinkle 2.2s infinite ease-in-out;
            z-index: -1;
        }
        .sticker_shiny-bottom-right{
            position: absolute;
            bottom: 10rem;
            right: -8rem;
            transform: translate(-50%, -50%);
            max-width: 100px;
            animation: twinkle 2.2s infinite ease-in-out;
            z-index: -1;
        }

        @keyframes twinkle {
            0% {
                opacity: 1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                opacity: 1;
            }
        }

        .sticker_shiny-top-left img,
        .sticker_shiny-top-right img,
        .sticker_shiny-middle-left img,
        .sticker_shiny-middle-right img,
        .sticker_shiny-bottom-left img,
        .sticker_shiny-bottom-right img{
            width: 100%;
        }
        @media screen and (max-width: 767px) {
            .sticker_shiny-top-left{
                max-width: 100px;
                top: 2rem;
                left: 10%;
            }
        .sticker_shiny-top-right{
                max-width: 100px;
                top: 1rem;
                right: -4rem;
            }
            .sticker_shiny-middle-left{
              max-width: 80px;
                top: 7rem;
                left: 4%;
            }
            .sticker_shiny-middle-right{
              max-width: 100px;
                top: 7rem;
                right: -6rem;
            }
            .sticker_shiny-bottom-left{
                max-width: 100px;
                bottom: -8rem;
                left: 0%;
            }
            .sticker_shiny-bottom-right{
                max-width: 100px;
                bottom: -8rem;
                right: -6rem;
            }
        }

/*---------------------------
    　　number
 ---------------------------*/
.ticket-wrap {
  display: flex;
  width: 70%;
  max-width: 760px;
  margin: auto;
  margin-bottom: 6rem;
}

.ticket-label {
  border: 3px solid var(--color-main);
  flex: 1;
  background: var(--color-light-green);
  color: var(--color-main);

  display: flex;
  align-items: center;
  justify-content: center;

  height: 100px;
  font-weight: bold;
  font-size: 18px;
}

.ticket-button-area {
  /* border: 3px solid var(--color-main); */
  flex: 1;
  background:  transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

/* butoon */
.ticket-button {
  background: #94c31d;
  color: white;
  text-align: center;

  border: none;
  border-radius: 999px;

  padding: 14px 80px;
  font-weight: bold;

  cursor: pointer;

  box-shadow: 8px 8px 0 var(--color-dark-green);

  transition: 0.2s;
  font-size: 32px;
}

.ticket-button span{
  font-size: 70%;
}

/* clicked */
.ticket-button:active {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 #005f3a;
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ticket-wrap {
    width: 100%;
    flex-direction: column;
  }

  .ticket-label {
    font-size: 18px;
    padding: 20px 0;
  }

  .ticket-button-area {
    padding-bottom: 10px;
    padding: 20px 0 30px 0;
  }

  .ticket-button {
    width: 40%;
    font-size: 18px;
  }
}

/* sp */
@media (max-width: 767px) {

  .ticket-wrap {
    width: 100%;
    flex-direction: column;
  }

  .ticket-label {
    font-size: 18px;
    padding: 20px 0;
  }

  .ticket-button-area {
    padding-bottom: 10px;
    padding: 20px 0 30px 0;
  }

  .ticket-button {
    font-size: 18px;
  }

}

/*---------------------------
    　　lottery
 ---------------------------*/
#lottery h2{
  border-bottom: 3px dotted var(--color-main);
  width: 70%;
  margin: 0 auto;
  padding: 1rem 0;
}

#lottery h3{
  padding-top: 1rem;
}

.schedule{
    border: 1px solid #006241;
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.schedule__title{
    background: #006241;
    color: #fff;
    margin: 0;
    padding: 16px 20px;
    text-align: center;
}

.schedule__date{
    color: #006241;
    margin: 0;
    padding: 16px 20px;
    border-top: 1px solid #006241;
    text-align: center;
}

.schedule__note{
  text-align: center;
}
/* sp */
@media screen and (max-width: 960px) {
  #lottery h2{
    width: 100%;
  }
  .schedule{
    max-width: 100%;
}
}


/*---------------------------
    　　participation
 ---------------------------*/
.participation{
  background-color: var(--color-main);
  max-width: 70%;
  margin: 0 auto 4rem auto;
}

.participation_box{
  position: relative;
  margin: 0 auto;
  text-align: left;
  background-color: #FFF6D7;
  padding: 0 2rem;
}

.participation_inner{
  background: var(--color-main);
    padding: 4rem 2rem;
}

.participation_box::after{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/participation_top.png") top left / 100% auto no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  top: -2.5rem;
  left: 0;
}

.participation_box::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/participation_bottom.png") bottom left / 100% auto no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  bottom: -2.5rem;
  left: 0;
}

.participation_box *{
  position: relative;
  z-index: 1;
}

.participation h3{
  color: var(--color-main);
}

.participation__note{
  color: #fff;
  font-weight: 400;
  padding: 0 3rem;
  font-size: 13px;
}

.participation__note a{
  color: #fff;
  border-bottom: 1px solid #fff;
}

.participation_text{
  color: var(--color-main);
  z-index: 10;
  position: relative;
  border-bottom: 3px dotted var(--color-main);
  padding: 10px 0;
}

.participation_comment{
  margin: 0 auto;
  text-align: center;
}

.participation_comment p{
  background-color: var(--color-light-green);
  color: var(--color-main);
  z-index: 10;
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 12px 0;
  margin-top: 1.5rem;
}

.participation_comment a{
  color: var(--color-dark-green);
  border-bottom: 2px solid var(--color-dark-green);
}

.participation__note:first-of-type{
  margin-top: -40px;
}

.participation__note:last-of-type{
  padding-bottom: 3rem;
}

/* tablet-pro */
@media screen and (min-width: 961px) and (max-width: 1024px) {
  .participation_box::after{
    top: -2rem;
  }

  .participation_box::before{
    bottom: -2rem;
  }
  .participation_box {
    padding: 0 2rem;
    margin-bottom: 50px;
}
}

/* tablet-mini */
@media screen and (min-width: 768px) and (max-width: 960px) {
  .participation{
    max-width: 100%;
    margin: 0 auto 7rem auto;
  }

  .participation_box::after{
    top: -2.2rem;
  }

  .participation_box::before{
    bottom: -2.2rem;
  }
  
  .participation_box {
    padding: 0 2rem;
    margin-bottom: 30px;
  }
  p {
    padding: 15px 0;
  }.participation_comment 
}

/* sp */
@media screen and (max-width: 767px) {
  .participation{
    max-width: 100%;
    margin: 0 auto 7rem auto;
  }

  .participation_box::after{
    top: -1.1rem;
  }
  .participation_box::before{
    bottom: -1.2rem;
  }
  
  .participation_box {
    padding: 0 1.2rem;
    margin-bottom: 40px;
  }
  .participation_comment p {
    padding: 15px 0;
  }
  .participation_inner {
    padding: 2.2rem 1.2rem;
}
}

/*---------------------------
    　　lottery-number
 ---------------------------*/
.lottery-number__title{
  color: #fff;
  text-align: center;
}

.lottery-number{
  background-color: rgba(255, 255, 255, 0.8);
  margin: 1rem 3rem 4rem 3rem;
  display: flex;
  gap: 2rem;
  padding: 2rem 1rem;
}

.lottery-number__item{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lottery-number__image{
  width: 100%;
  max-width: 200px;
  display: block;
}

.lottery-number__text{
  margin-top: 1rem;
  text-align: center;
  color: var(--color-main);
}

/* sp */
@media screen and (max-width: 767px) {
  .lottery-number{
    display: block;
    margin: 1.5rem 1.5rem 5rem 1.5rem;
  }

  .lottery-number__item:nth-child(2){
    margin-top: 3rem;
    border-top: dotted 2px var(--color-main);
    padding-top: 3rem;
  }
}

/*---------------------------
        benefit
---------------------------*/

.benefit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 上 */
.benefit-main {
  width: 100%;
}

/* 下 */
.benefit-sub {
  display: flex;
  gap: 20px;
}

/* カード共通 */
.benefit-card {
  background-color: var(--color-light-green);
  border: 3px dotted var(--color-dark-green);

  border-radius: 20px;

  overflow: hidden;

  flex: 1;
}

/* 大きいカード */
.benefit-card--large {
  width: 100%;
}

/* 画像 */
.benefit-card__image {
  width: auto;

  height: 220px;

  object-fit: cover;

  display: block;
  margin: 2rem auto;
}

/* テキスト部分 */
.benefit-card__text {
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: var(--color-dark-green);

  text-align: center;

  font-size: clamp(20px, 4vw, 24px);
}

/* アイコン */
.benefit-icon {
  width: 24px;
  height: 24px;

  flex-shrink: 0;

  animation: iconBounce 1.5s ease-in-out infinite;
}

/* SP */
@media screen and (max-width: 768px) {

  .benefit-sub {
    flex-direction: column;
  }

  .benefit-card__image {
    width: 90%;
    height: auto;
    margin: 5%;
  }

}

@keyframes iconBounce {

    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}


/*---------------------------
    　　    button
 ---------------------------*/
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 300px;
  }

.btn-signup {
  display: inline-block;
  padding: 16px 0;
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  animation: rotatePiko 4s ease-in-out infinite;
  transform-origin: center;
  transition: all 0.5s ease;
}
.btn-signup:hover{
  background-color: #FFF6D7;
  color: var(--color-main);
  border: 2px solid var(--color-main);
}

@keyframes rotatePiko {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  92% {
    transform: rotate(-5deg);
  }

  94% {
    transform: rotate(5deg);
  }

  96% {
    transform: rotate(-4deg);
  }

  98% {
    transform: rotate(0deg);
  }
}

.btn-special {
  display: inline-block;
  padding: 16px 0;
  background-color: #FFF6D7;
  color: var(--color-main);
  text-decoration: none;
  border: 2px solid var(--color-main);
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  margin-bottom: 6rem;
  width: 100%;
  transition: all 0.5s ease;
}
.btn-special:hover{
  background-color: var(--color-main);
  color: #fff;
}

  /* .detail-button {
  display: inline-block;
  padding: 12px 50px;
  background-color: var(--color-blue);
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--color-black);
  font-weight: bold;
  box-shadow: 4px 4px 0px #000;
  cursor: pointer;
  border-radius: 10px;
} */


/*---------------------------
    　　　Footer
 ---------------------------*/
.footer {
  text-align: center;
}

.footer-logo img {
  width: 200px;
  margin: 5rem auto;
}

@media screen and (max-width: 960px) {
  .footer-logo img {
    width: 100px;
  }
}

/*　コピーライト　 */
footer p small{
      font-size: 80%;
  margin-bottom: 10px;
}


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

@media screen and (max-width: 768px) {

  .sp-only {
    display: block;
  }

}

.wrapper {
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeWrapper 1s ease 1s forwards;
}

@keyframes fadeWrapper {

  from {
    background-color: rgb(255, 246, 215);
  }

  to {
    background-color: rgba(255, 246, 215, 0);
  }

}

.content {
  width: 100vw;
  height: 100vh;
  background-color: #fff6d7;

  /* ↓ 消す */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */

  clip-path: circle(0% at center);

  animation:
    showCircle 1.5s ease-in-out forwards,
    fadeBg 1s ease 1s forwards;
}

@keyframes showCircle {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(150%);
  }
}

@keyframes fadeBg {

  from {
    background-color: rgba(255, 246, 215, 1);
  }

  to {
    background-color: rgba(255, 255, 255, 0);
  }

}

/* --------------------
    　フェードイン
---------------------*/
.fadeIn {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: translateY(180px);
}

/* 表示された状態 */
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}