@charset "UTF-8";
@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../font/uzura.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    font-family: 'CustomFont', sans-serif;
}
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../img/2E2EE0B9-99D7-48AE-A68C-484AA30EDB50.jpg') no-repeat center/cover;
    z-index: 10;
    transition: opacity 0.5s ease-out;
}
.fade-section {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, rgb(45, 52, 148) 10%, rgba(45, 52, 148, 0.5) 50%, rgba(255, 255, 255, 0) 90%);
    z-index: 5;
    transform: translateY(100%); /* 最初はグラデーションを隠す */
    transition: transform 0.5s ease-out;
}


.buttons {
    position: absolute;
    display: flex;
    gap: 25px;
    top: 85vh;
    left: 20%;
}

.glow-button {
    display: inline-block;
    padding: 8px 24px;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.5);
}

.glow-button:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}



.name {
    position: absolute;
    color: white;
    font-size: 1.5em;
    line-height: 2em;
    text-align: center;
    top: 60vh;
    left: 20%;
    opacity: 0;  /* 初めは透明 */
    transform: scale(1.2);  /* 初めは少し大きめに */
    animation: appear 2s ease-out forwards;  /* アニメーションを指定 */
}



@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 10px rgb(48, 74, 146), 0 0 20px rgb(48, 74, 146), 0 0 30px rgb(48, 74, 146), 0 0 40px rgb(48, 74, 146);
    }
}


@media (min-width: 850px) {
    .name {
        position: absolute;
        color: white;
        font-size: 1.8em;
        line-height: 2em;
        text-align: center;
        top: 60vh;
        left: 20%;
        opacity: 0;  /* 初めは透明 */
        transform: scale(1.2);  /* 初めは少し大きめに */
        animation: appear 2s ease-out forwards;  /* アニメーションを指定 */
    }
    
.glow-button {
    display: inline-block;
    padding: 8px 24px;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.5);
    font-size: 1.2em;
}
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../img/fafa.jpg') no-repeat center/cover;
    z-index: 10;
    transition: opacity 0.5s ease-out;
}
  }



.spacer {
    height: 150vh; /* スクロール可能にするためのスペース */
    background-image: url(../img/2238424323283.jpg);
    background-position:bottom center;
    background-size: cover;
}
.content {
    position: relative;
    z-index: 1;
    padding:0px 0px 5em;
    margin-top: -1px;
    background-image: url(../img/223842432328462.png);
    background-position: top center;
    background-size: cover;
    overflow-x: hidden;
}
#sparkle_container {
    position: relative;
    width: 100%;
    height: 200px; /* 親要素の高さ */
    overflow: hidden;
    background-image: url(../img/5.png);
    background-size: cover;
        background-position: center center;

  }

  .sparkle {
    position: absolute;
    border-radius: 50%;
    background-color: white; /* 白い点 */
    animation-name: twinkle;
    animation-iteration-count: infinite;
  }

  @keyframes twinkle {
    50% {
      transform: scale(0.2);   /* 50%の時に縮小 */
      opacity: 0.8;            /* 半透明になる */
    }
    100% {
      transform: scale(1);     /* 元のサイズに戻る */
      opacity: 1;              /* 完全に透明にならない */
    }
  }

  .introduction{
    color: white;
    text-align: center;
    padding: 6em 1em 0;
    font-size: 18px;
  }

  .introduction ul{
    list-style: none;
    padding-top: 4em;
  }
  .introduction li{
    margin-bottom: 1em;
    font-size: 1.2em;
  }
  .introduction h2 {
    font-size: 2em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    color: white;
    background-color: transparent;
    padding-bottom: .3em;
}

.introduction h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;  /* ボーダーの高さ */
    background: url('../img/b_simple_2_0L.png') repeat-x; /* 画像を繰り返して表示 */
    transition: width 2s ease-in-out;
}

.introduction h2.in-view::after {
    width: 100%;
}
.airplane_cloud {
    width: 80%;
    margin: 4em auto;
    display: flex;
}
.airplane{
    width: 20%;
    animation: shake 5.5s ease-in-out infinite;
}
.cloud2{
    width: 80%;
}

@keyframes shake {
    0%, 54.5% {  /* 0秒～3秒間は止まる（5.5秒の54.5% ≒ 3秒） */
        transform: translateY(0);
    }
    68% { /* 3秒経過後（全体の約68%）で上に揺れる */
        transform: translateY(-10px);
    }
    81% { /* さらに下に揺れる */
        transform: translateY(10px);
    }
    100% { /* 最後に元の位置へ戻る */
        transform: translateY(0);
    }
}
.airplane img{
    width: 100%;
}

@media (min-width: 850px) {
    .introduction{
        color: white;
        text-align: center;
        padding: 6em 1em 0;
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    #sparkle_container {
        position: relative;
        width: 100%;
        height: 300px; /* 親要素の高さ */
        overflow: hidden;
        background-image: url(../img/5.png);
        background-size: cover;
            background-position: center center;
    
      }
}


.join{
    max-width: 100%;
    background-image: url(../img/2238424323283.jpg);
    background-position: center bottom;
    border-radius: 25px;
    color: white;
}

.join_photo{
    width: 100%;
    height: 200px;
}
.join_photo img{
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 100%;
}
#sparkle_container3{
    background-image: url(../img/22706670.jpg);
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 350px;
    padding: .5em;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4); /* 影で立体感 */

}

.name2 {
    font-size: 1.25em;
    line-height: 1.7em;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
    padding: 1em 0;
}
.name2 h4{
    font-size: .9em;
}
.explain{
    padding: 0 .7em 2em;
    text-align: center;
}
.glow-button2 {
    display: inline-block;
    margin: 2em auto 1em;
    padding: 12px 24px;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 0 10px rgba(255, 182, 193, 0.3); /* 薄いピンクの光 */
    text-shadow: 0 0 6px rgba(255, 182, 193, 0.6), 0 0 12px rgba(255, 182, 193, 0.4);
}

.glow-button2:hover {
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.7), 0 0 40px rgba(255, 182, 193, 0.5);
    background-color: rgba(255, 182, 193, 0.1);
}

.join div{
    text-align: center;
}
.perhaps{
    position: absolute;
    rotate: 10deg;
    right: 0em;
    bottom: 5em;
}
.for_rel{
    position: relative;
}

@media (min-width: 850px) {
    #sparkle_container3{
        background-image: url(../img/22706670.jpg);
        background-size: cover;
        background-position: center;
        margin: 0 auto;
        width: 500px;
        padding: .5em;
        border-radius: 25px;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4);
    
    }
    .join_photo{
        width: 100%;
        height: 350px;
    }
    .name2 {
        font-size: 1.7em;
        line-height: 1.7em;
        text-align: center;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
        padding: 1.5em 0;
    }
    .explain{
        padding: 0 .7em 2em;
        text-align: center;
        font-size: 1.2em;
    }
    .glow-button2 {
        display: inline-block;
        margin: 2em auto 1em;
        padding: 12px 24px;
        color: white;
        border: 2px solid white;
        text-decoration: none;
        border-radius: 8px;
        position: relative;
        transition: all 0.3s ease;
        font-weight: bold;
        font-size: 1.5em;
        box-shadow: 0 0 10px rgba(255, 182, 193, 0.3); 
        text-shadow: 0 0 6px rgba(255, 182, 193, 0.6), 0 0 12px rgba(255, 182, 193, 0.4);
    }
    .perhaps{
        position: absolute;
        rotate: 10deg;
        right: 0em;
        bottom: 5em;
        font-size: 1.2em;
    }
}



.blog{
    color: white;
    text-align: center;
    padding: 8em 1em 0;
    font-size: 18px;
  }

  .blog ul{
    list-style: none;
    padding-top: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog li{
    margin-bottom: 2em;
    font-size: 1.2em;
    max-width: 320px;
    border-radius: 25px;
    background-image: url(../img/223842432328462.png);
    background-position: center;
    box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
    position: relative; /* ←追加！雲をこの中で絶対配置 */
  }
  .blog_photo{
    width: 100%;
    height: 200px;
  }
  .blog_photo img{
    width: 100%;
    height: 100%;
    border-radius: 25px 25px 0 0;
  }
  .blog h2 {
    font-size: 2em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 
        0 0 5px rgba(0, 170, 255, 0.7), 
        0 0 10px rgba(0, 170, 255, 0.5), 
        0 0 15px rgba(0, 170, 255, 0.3);
    color: white;
    background-color: transparent;
    padding-bottom: .3em;
}

.blog h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;  /* ボーダーの高さ */
    background: url('../img/b_simple_2_0L.png') repeat-x; /* 画像を繰り返して表示 */
    transition: width 2s ease-in-out;
}
.blog h2.in-view::after {
    width: 100%; /* アニメーションで横に伸ばす */
}
.blog_content{
    font-size: 16px;
}

.blog_content h3{
    padding: .5em 1em;
}

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

/* blurをかけたい中身 */
.blurred {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.blurred p {
    padding: 1em;
    margin: 0;
}

/* 上に重ねる文字（モザイクかけない） */
.pixelate .mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    color: rgb(48, 48, 48);
    font-weight: bold;
    border-radius: 0 0 25px 25px;
    z-index: 1;
    font-size: 1em;
}

/* 雲の共通スタイル */
.cloud {
    position: absolute;
    width: 60px;
    height: 30px;
    animation: floatCloud 6s ease-in-out infinite alternate;
    z-index: 0; /* blog_content より下に */
}
.cloud img {
    width: 100%;
    height: auto;
}

/* 右上に配置 */
.cloud-right {
    top: 10px;
    right: -20px;
}

/* 左下に配置 */
.cloud-left {
    bottom: 140px;
    left: -10px;
}

/* ゆらゆらアニメーション */
@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}

.sewing-button {
    display: inline-block;
    padding: 1.2em 1.5em;
    background-image: url(../img/223842432328462.png);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 2em;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);

}

/* 縫い目風の点線（長めの点線） */
.sewing-button::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 8px;
    pointer-events: none;
    border: 0;
    background: repeating-linear-gradient(
        to right,
        #ffffff,      /* 点の色 */
        #ffffff 6px,  /* 点の長さ */
        transparent 6px,
        transparent 12px  /* 点と点の間隔 */
    ) top,
    repeating-linear-gradient(
        to bottom,
        #ffffff,      /* 点の色 */
        #ffffff 6px,  /* 点の長さ */
        transparent 6px,
        transparent 12px  /* 点と点の間隔 */
    ) right,
    repeating-linear-gradient(
        to right,
        #ffffff,      /* 点の色 */
        #ffffff 6px,  /* 点の長さ */
        transparent 6px,
        transparent 12px  /* 点と点の間隔 */
    ) bottom,
    repeating-linear-gradient(
        to bottom,
        #ffffff,      /* 点の色 */
        #ffffff 6px,  /* 点の長さ */
        transparent 6px,
        transparent 12px  /* 点と点の間隔 */
    ) left;
    background-size: calc(100% - 16px) 2px, 2px calc(100% - 16px); /* 背景のサイズ調整 */
    background-repeat: no-repeat;
    background-position: top center, right center, bottom center, left center; /* 配置 */
}

@media (min-width: 850px) {

    .blog{
        color: white;
        text-align: center;
        padding: 8em 1em 0;
        font-size: 22px;
    }

}
@media (min-width: 1100px) {

    .blog{
        color: white;
        text-align: center;
        padding: 8em 1em 0;
        font-size: 22px;
    }
    .blog ul{
        list-style: none;
        padding-top: 2.5em;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 100px;
        justify-content: center;
        flex-wrap: wrap;
    }
}


.star {
    position: relative;
    width: 100vw;
    height: 200px;
    overflow: hidden;
}
/* .shooting-star {
    position: absolute;
    width: 150px;
    height: 140px;
    animation: shoot 2s linear infinite;
    background: url('../img/ffaafa.png') no-repeat center/contain;
}
@keyframes shoot {
    0% {
        top: -100px;
        left: 110%;
        opacity: 1;
        rotate: 30deg;
    }
    70% {
        top: 70%;
        left: 10%;
        opacity: 1;
        rotate: 15deg;
    }
    100% {
        top: 110%;
        left: -100px;
        opacity: 0;
    }
} */

@keyframes shoot {
    0% {
        top: -50px;
        left: 100%;
        opacity: 1;
        rotate: 35deg;
    }
    50% {
        top: 30%;
        left: 30%;
        opacity: 1;
        rotate: 20deg;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        left: -150px;
        opacity: 0;
        rotate: 10deg;
    }
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 140px;
    animation: shoot 2s linear infinite;
    background: url('../img/ffaafaaaa.png') no-repeat center/contain;
}
@media (min-width: 1100px) {
    .star {
        position: relative;
        width: 100vw;
        height: 230px;
        overflow: hidden;
    }
    .shooting-star {
        position: absolute;
        width: 150px;
        height: 140px;
        animation: shoot 3s linear infinite;
        background: url('../img/ffaafaaaa.png') no-repeat center/contain;
    }
}

.schedule{
    color: white;
    text-align: center;
    padding: 6em 1em 0;
    font-size: 18px;
  }

  .schedule ul{
    list-style: none;
    padding-top: 2.5em;
  }
  .schedule li{
    margin-bottom: 1em;
    font-size: 1.2em;
  }
  .schedule h2 {
    font-size: 2em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    color: white;
    background-color: transparent;
    padding-bottom: .3em;
}

.schedule h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;  /* ボーダーの高さ */
    background: url('../img/b_simple_2_0L.png') repeat-x; /* 画像を繰り返して表示 */
    transition: width 2s ease-in-out;
}

.schedule h2.in-view::after {
    width: 100%;
}
.schedule_date{
    font-size: 1.1em;
    margin-bottom: 1em;
}
.schedule_date span{
    margin: 0 .5em;
    font-size: 1.6em;
}
.schedule ul{
    max-width: 500px;
    margin: 0 auto;
}
.schedule li {
    border-bottom: white 1px solid;
    max-width: 100%;
    text-align: left;
    padding: 1.5em;
    font-size: 18px;
}
.schedule a{
    color: white;
    padding-bottom: .2em;
    text-decoration: none;
    border-bottom: white 2px solid;
}
.schedule_event{
    margin-bottom: .5em;
}
html, body {
    overflow-x: hidden;
    min-height: 100vh;
    scroll-behavior: smooth;
  }
  