@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;

}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.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 {
    color: white;
    font-size: 1.5em;
    line-height: 2em;
    text-align: center;
    opacity: 0;  /* 初めは透明 */
    transform: scale(1.2);  /* 初めは少し大きめに */
    animation: appear 2s ease-out forwards;  /* アニメーションを指定 */
    margin: 3em 0 1.5em;
}



@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);
    }
}
.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;
}
#sparkle_container {
    position: relative;
    width: 100%;
    height: 130px; /* 親要素の高さ */
    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;              /* 完全に透明にならない */
    }
  }

  @media (min-width: 1100px) {

    #sparkle_container {
        position: relative;
        width: 100%;
        height: 220px; /* 親要素の高さ */
        overflow: hidden;
        background-image: url(../img/5.png);
        background-size: cover;
            background-position: center center;
      }
      .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);
        margin: 2em 0;
        font-size: 1.2em;
    }
}


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

  .plan > ul{
    list-style: none;
    padding-top: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan > ul > li{
    margin-bottom: 2em;
    width: 350px;
    padding: .5em;
    border-radius: 25px;
    background-image: url(../img/22706670.jpg);
    background-position: center;
    box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
    position: relative; /* ←追加！雲をこの中で絶対配置 */
  }
.plan > ul > li:last-child{
    margin-bottom: 2em;
    width: 350px;
    padding: .5em;
    border-radius: 25px;
    background-image: url(../img/22706.jpg);
    background-position: center;
    box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
    position: relative; /* ←追加！雲をこの中で絶対配置 */
  }

  .detail{
    width: 100%;
    border-radius: 25px;
    background-image: url(../img/223842.png);
    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);
  }
  .detail h3{
    padding: .75em;
    font-size: 1.5em;
  }
  .price{
    background-image: url(../img/sparkle-cloud-pastel-purple-image.jpg);
    background-position: center;
    background-size: cover;
    padding: .75em 0;
    font-size: 2em;
    text-shadow: 0 0 10px 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: rgb(165, 110, 170);
  }
  .detail ul{
    list-style: none;
    padding: 2.5em 1em 2em 1.5em;
    text-align: left;
  }
  .detail li{
    margin-bottom: .5em;
  }
  .star{
    color: rgb(236, 238, 112);
  }
  .blog_photo{
    width: 100%;
    height: 200px;
  }
  .blog_photo img{
    width: 100%;
    height: 100%;
    border-radius: 25px 25px 0 0;
  }
  .plan 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;
}

.plan 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;
}
.plan h2.in-view::after {
    width: 100%;
}

.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 より下に */
}
.balloon {
    position: absolute;
    width: 100px;
    height: 30px;
    animation: floatCloud 6s ease-in-out infinite alternate;
    z-index: 0; /* blog_content より下に */
    right: 10px;
    bottom: 50px;
}
.balloon img {
    width: 100%;
    height: auto;
}
.cloud img {
    width: 100%;
    height: auto;
}

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

/* 左下に配置 */
.cloud-left {
    top: 150px;
    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: 1100px) {

    .plan{
        color: white;
        text-align: center;
        padding: 5em 1em 0;
        font-size: 22px;
    }
    .plan > ul{
        list-style: none;
        padding-top: 2.5em;
        display: flex;
        flex-direction: row;
        align-items: flex-start; /* これで上揃え！ */
        justify-content: center;
        gap: 100px;
        flex-wrap: wrap;
        margin-top: 2em;
    }
    .plan > ul > li{
        margin-bottom: 2em;
        width: 450px;
        padding: .5em;
        border-radius: 25px;
        background-image: url(../img/22706670.jpg);
        background-position: center;
        box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
        position: relative; /* ←追加！雲をこの中で絶対配置 */
      }
    .plan > ul > li:last-child{
        margin-bottom: 2em;
        width: 450px;
        padding: .5em;
        border-radius: 25px;
        background-image: url(../img/22706.jpg);
        background-position: center;
        box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
        position: relative; /* ←追加！雲をこの中で絶対配置 */
      }
      .cloud {
        position: absolute;
        width: 90px;
        height: 50px;
        animation: floatCloud 6s ease-in-out infinite alternate;
        z-index: 0; /* blog_content より下に */
    }
    .balloon {
        position: absolute;
        width: 150px;
        height: 50px;
        animation: floatCloud 6s ease-in-out infinite alternate;
        z-index: 0; /* blog_content より下に */
        right: 10px;
        bottom: 50px;
    }
}


.dropdown {
    position: relative;
  }
.dropdown-menu {
    display: none;
    padding-left: 1em;
}
.dropdown-menu li{
      width: 100%;
      margin-top: .5em;
  }
  .dropdown-toggle{
    margin-bottom: .5em;
  }

  .dropdown.open .dropdown-menu {
    display: block;
}
ul{
    list-style: none;
}
.dropdown a{
    text-decoration: none;
    color: white;
}