@charset "UTF-8";

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("/static/yuyategoshi/fanclub/feature/2026_flowerstand_dE2JaqeV/images/bg-sp.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-attachment: fixed;
    background-size: cover;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #ffffff;
    line-height: 1.5;
}

.wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.font_500 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    font-style: normal;
}

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

/*-----------------*/
/* ロゴ */
.top_logo {
  max-width: 85%;
  margin: 80px auto 0;

  opacity: 0;
  animation: softAppear 1.5s ease 1.0s forwards;
}

/* 花 */
.neon_flower {
  padding-top: 20px;
  padding-bottom: 30px;

  opacity: 0;
  animation: softAppear 1.5s ease 2.0s forwards;
}

/*-----------------*/
.cloud_area {
    position: relative;
    z-index: 1;
    padding: 80px 35px;
    border-radius: 20px;
}

/*はみ出し用*/
.cloud_area::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 600px;
    top: 12px;
    height: 100%;
    /*background-image: url(/images/white_cloud.png);*/
    background-image: url(/static/yuyategoshi/fanclub/feature/2026_flowerstand_dE2JaqeV/images/white_cloud.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}


.cloud_top {
  position: relative;
  padding: 25px 25px; /* テキストの余白 */
  font-size: 17px;
}

/* フレーム画像 */
.cloud_top::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: url(/images/star-frame.png) no-repeat center / 100% 100%;*/
  background: url(/static/yuyategoshi/fanclub/feature/2026_flowerstand_dE2JaqeV/images/star-frame.png) no-repeat center / 100% 100%;
  z-index: 0;
  pointer-events: none;
}

/* テキストを上に */
.cloud_top p {
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cloud_2 {
    margin-top: 20px;
    font-size: 16px;
    padding: 0;
}

.cloud_2 p {
    /*text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.2);*/
        color: #142040;
}

/*-----------------*/
.card_btn {
    margin-top: 60px;
    margin-bottom: 80px;
}

.card {
    display: flex;
    margin: 0 auto 20px;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    align-items: center;
}

/*hover------*/
.card {
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/*end*/

.card1 {
    margin: 0 auto;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    background-color: #2A3A58;
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.card2 {
    margin: 0 auto;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    background-color: #2A3A58;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.card-text {
    font-size: 14px;
}

.arrow {
  position: relative;
  font-size: 27px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  /* ここがポイント */
  background: #2A3A58;
  z-index: 0;
}

/* シルバーの縁 */
.arrow::before {
  content: "";
  position: absolute;
  inset: 0; /* ぴったり重ねる */
  border-radius: 50%;
  padding: 3px; /* ← 線の太さ */

  background: linear-gradient(
    135deg,
    #D7D2CD,
    #656D84,
    #E5E6E7,
    #636B82
  );

  /* 中をくり抜く */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

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

/*-----------------*/
.last_text {
    max-width: 85%;
    margin: 0 auto;
    margin-bottom: 80px;
    font-size: 14px;
}

/*-----------------*/
.copyright {
    margin-bottom: 10px;
    text-align: center;
}

.out_main{
    position: relative;
  overflow: hidden;
}

.side-cloud{
    position: absolute;
  width: 350px;
}

.cloud-left1{
    top: -170px;
    left: -100px;
    animation: float 2.5s infinite ease-in-out; 
}

.cloud-left2{
    top: 1620px;
    left: -200px; 
    animation: float 2.2s infinite ease-in-out; 
}

.cloud-right1{
    display: none;
    animation: float 2.3s infinite ease-in-out; 
}

/* PC */
@media(min-width:768px) {
    body {
        background-image: url("/static/yuyategoshi/fanclub/feature/2026_flowerstand_dE2JaqeV/images/bg.png");
    }

    .cloud::before {
        transform: translateX(-50%) rotate(0deg);
    }

    .cloud_top {
        padding: 40px 40px; /* テキストの余白 */
        font-size: 17px;
    }

    .cloud_area {
        position: relative;
        z-index: 1;
        padding: 80px 40px;
        border-radius: 20px;
    }

    .cloud_2 {
        padding: 0 10px;
    }

    .wrapper {
        max-width: 500px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        background-repeat: no-repeat;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cloud-left1{
    top: -120px;
    left: -60px; 
}

.cloud-left2{
    top: 1300px;
    left: -110px; 
}
.cloud-right1{
    top: 600px;
    right: -100px;
    display: block; 
}
}

/*--------　アニメーション --------*/

/* --------------------
    FVで順番に出てくる
---------------------*/
@keyframes softAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------------------
    　ぷかぷか動く
---------------------*/

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-35px); /* 上に動く */
    }
    100% {
        transform: translateY(0);
    }
}

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

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

/* 星空の背景のスタイル */
.stars {
  position: fixed;   /* ← これがポイント */
  top: 0;
  left: 0;
  width: 100%; /* 星空の横幅 */
  height: 100%; /* 星空の縦幅 */
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
  z-index: -1;
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(#fff, 0.6); /* 星の影 */
  opacity: 0;
  animation: twinkle 3s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}