@charset "UTF-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Katibeh&family=Zen Antique Soft&display=swap');
.pageLoading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: #fff;
}
.loading__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.loading__box img {
    max-width: 400px;
}
.loading__box .icon {
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.loading__box p {
    margin-top: 10px;
    font-family: YakuHanJP, "Noto Serif JP", serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}
@media (max-width: 900px) {
    .loading__box img {
        max-width: 80%;
        ;
    }
}
.scroll-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -700px;
    z-index: -2;
    animation: floatAnimation 3s ease-in-out infinite;
}

/* ふわふわアニメーション */
@keyframes floatAnimation {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes floatAnimation_hanten {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
.obj-kirakira-news01 {
    top: 150px;
    width: clamp(150px, 100vw, 300px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-news02 {
    top: 0px;
    margin-left: 700px;
    width: clamp(150px, 100vw, 300px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-news03 {
    top: 1000px;
    margin-left: 700px;
    width: clamp(300px, 200vw, 593px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}

.obj-kirakira-chara01 {
    top: 50px;
    width: clamp(300px, 200vw, 509px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-chara02 {
    top: 0px;
    margin-left: 700px;
    width: clamp(300px, 200vw, 509px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-chara03 {
    top: 900px;
    margin-left: 700px;
    width: clamp(300px, 200vw, 593px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-chara04 {
    top: 1000px;
    width: clamp(300px, 200vw, 509px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
}
.obj-kirakira-spec01 {
    top: -600px;
    margin-left: 700px;
    width: clamp(150px, 100vw, 279px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
    z-index: -2;
}
.obj-kirakira-spec02 {
    top: 300px;
    width: clamp(150px, 100vw, 279px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
    transform: scaleX(-1);
    z-index: -2;
}
.obj-kirakira-spec03 {
    bottom: 400px;
    margin-left: 600px;
    width: clamp(150px, 100vw, 279px); /* 最小150px、通常50vw、最大279px */
    height: auto; /* アスペクト比維持 */
    z-index: -2;
}
.obj-houki-spec {
    bottom: 400px;
    margin-left: 500px;
    transform: rotate(30deg);
}
@media (max-width: 900px) {
    .scroll-image {
        display: none;
    }
}
body {
    background: linear-gradient(to bottom, #FFFACF, #FFDDF2, #E4D8FF);
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.blur-bg {
    background: rgba(255, 255, 255, 0.8); /* 半透明の白 */
    backdrop-filter: blur(10px); /* ぼかし */
    -webkit-backdrop-filter: blur(10px); /* Safari対応 */
    padding: 70px 50px 100px 50px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.blur-bg:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .blur-bg {
        padding: 30px 20px 60px 20px;
    }
}
.bg-dia {
    width: 100%;
    background: url('../images/bg-dia.png');
    background-size: 15% auto;
    ;
    background-repeat: repeat;
    animation: scrollPattern 30s linear infinite;
    background-attachment: fixed;
}
.gradation-text {
    background: linear-gradient(to right, #ff5ed3, #ff96c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradation-text-blue {
    background: linear-gradient(to right, #b458ef, #8482e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
/*common------------------*/
a:link {
    color: var(--main-color);
}
a:visited {
    color: var(--main-color);
}
a:hover {
    color: var(--main-color);
}
a:active {
    color: var(--main-color);
}
.att{color:#ed5096;
font-weight: bold;}
.center{text-align: center;}
.linkBtn {
    position: relative;
    top: 0px;
    transition: all 0.5s;
}
.linkBtn:hover {
    top: -5px;
}
.linkBtn img {
    display: block;
}
.linkBtnComing {
    top: 0px;
    pointer-events: none;
}
.linkBtn img {
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.1));
}
.hoverlink img {
    transition: .3s ease-in-out;
}
.hoverlink img:hover {
    filter: brightness(1.2);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
a.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: space-between; /* アイコンとテキストを両端に配置 */
    position: relative;
    padding: 5px 20px; /* アイコンの余白分調整 */
    background: var(--accent-color);
    border-radius: 30px;
    color: #fff;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: "Zen Antique Soft", serif; /* ここに font-family を追加 */
    text-decoration: none; /* aタグのデフォルトの下線を消す */
    min-width: 250px;
}
a.btn-base::before {
    content: "";
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    border: solid 1px var(--gold-color); /* 外枠のスタイル */
    z-index: -1;
    border-radius: 35px;
}
a.btn-base:hover {
    background: var(--gold-color);
    transform: scale(1.05);
}
/* アイコンのスタイル */
a.btn-base .icon-left, a.btn-base .icon-right {
    width: 16px; /* アイコンのサイズ */
    height: 16px; /* アイコンのサイズ */
    background-size: cover;
    display: inline-block;
}
a.btn-base .icon-left {
    background-image: url('../images/base_btn_icon.png'); /* 左側のアイコン画像 */
    margin-right: 10px; /* テキストとの間隔 */
}
a.btn-base .icon-right {
    background-image: url('../images/base_btn_icon.png'); /* 右側のアイコン画像 */
    margin-left: 10px; /* テキストとの間隔 */
}
.content-title {
    font-family: "Zen Antique Soft", serif;
    font-size: 10px;
    font-weight: normal;
    line-height: 1;
    background: url("../character/contents-title.png") no-repeat;
    background-size: 100px 18px;
    height: 18px;
    width: 100px;
    color: #fff;
    letter-spacing: 1px;
    display: flex; /* Flexboxを使用 */
    align-items: center; /* 縦中央揃え */
    justify-content: center; /* 横中央揃え */
    text-align: center; /* 文字を中央揃え */
    padding-top: 0px;
    margin-top: 30px;
}
h3.content-title-big {
    margin: 20px auto;
    text-align: center;
}
h3.content-title-big img {
    max-width: 40%;
}
div + h3.content-title-big {
    margin-top: 80px;
}
@media (max-width: 900px) {
    h3.content-title-big img {
        max-width: 100%;
    }
    h3.content-title-big {
        margin: 20px auto 10px auto;
    }
    div + h3.content-title-big {
        margin-top: 40px;
    }
}
section {
    position: relative;
}
.newmark {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
}

/*-------------------------------------------
common
-------------------------------------------*/
html {
    font-size: 100%;
}
body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    color: var(--text-color);
    line-height: 2;
    font-weight: 400;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: top;
}
li {
    list-style: none;
}
.inner {
    max-width: 1300px;
    padding: 0px 20px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}
.center {
    text-align: center;
}
section {
    padding: 80px 0px;
    position: relative;
    z-index: 10;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.no-space {
    letter-spacing: 0;
}
.fadeIn {
    opacity: 0;
}
.fadeIn.is-inview {
    opacity: 1;
    transition: all .5s;
}
/*-------------------------------------------
galleryList
-------------------------------------------*/
.galleryList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 10px;
}
.galleryList div {
    position: relative;
}
.galleryList div a {
    transition: filter 0.5s ease;
    filter: brightness(1);
}
.galleryList div a:hover {
    filter: brightness(1.2);
}
.galleryList .newmark {
    top: -4px;
    left: -4px;
}
@media (max-width: 900px) {
    .galleryList {
        grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
    }
}
/*-------------------------------------------
header
-------------------------------------------*/
header {
    z-index: 15;
    background: white;
}
.globalNav {
    font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-weight: 300;
    font-size: 25px;
    letter-spacing: 2px;
}
.globalNav a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    text-align: center;
    position: relative;
    transition: all 0.5s;
    overflow: visible;
}
.globalNav span {
    display: block;
    font-size: 10px;
    margin-top: -15px;
    text-align: center;
    font-weight: 700;
}
.globalNav li {
    position: relative;
}
.globalNav li .trialtag{
    position: absolute;
	bottom:-20px;
}

/* アイコンの跳ねるアニメーション */
@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1; /* 最終的に表示されたままにする */
    }
}
/* アイコンのスタイル（すべて共通） */

/* ホバー時にピョンと跳ねる */
.globalNav a:hover::before {
    animation: bounce 0.5s ease-out forwards;
}
.globalNav .coming {
    opacity: 0.3;
    pointer-events: none;
}
.utilityNav ul {
    display: flex;
    gap: 10px;
}
.utilityNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-image: linear-gradient(to bottom, #f56e92, #f56e92);
    background-size: 100% 100%; /* 初期状態で全体に色が表示される */
    background-position: 0 bottom;
    border-radius: 50%;
    transition: background-size 0.5s ease; /* background-size の遷移 */
}
/* ホバー時に#F082B9の領域が広がる */
.utilityNav a:hover {
    background-image: linear-gradient(to bottom, #ffa3ce,#ffa3ce);
    background-size: 100% 250%;
}
.utilityNav img {
    width: 15px; /* アイコンのサイズ */
    height: 15px;
}
.utilityNav li:nth-child(2) img {
    width: 18px;
    height: 18px;
}
/*------------------
■pc
------------------*/
@media (min-width: 900px) {
    .pc-only {
        display: block;
    }
    .sp-only {
        display: none;
    }
    header {
        display: none;
    }
    .header2 {
        position: sticky;
        width: 100%;
        padding: 0px 40px;
        top: 0px;
        left: 0;
		background-color:rgba(255,236,68,0.9);
		z-index: 15;
    }
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 10px;
        height: 90px;
    }
    .site-title a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .site-title img {
        max-width: 300px;
        width: 100%;
        height: auto;
		margin-top: 12px;
    }
    .navBox {
        display: flex;
        height: 100%;
        align-items: center;
        margin-top: 5px;
    }
    .globalNav {
        margin-right: 40px;
    }
    .globalNav ul {
        display: flex;
    }
    .globalNav ul li {
        margin-left: 25px;
    }
	
}

@media (max-width: 1200px) {
    .globalNav {
        font-size: 20px;
    }
    .globalNav span {
        font-size: 8px;
    }
    .globalNav ul li {
        margin-left: 15px;
    }
    .globalNav {
        margin-right: 20px;
    }
}
/*------------------
■sp
------------------*/
@media (max-width: 900px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    /*header------------------*/
    .overlayNav {
        position: fixed;
		top: 0px;
        z-index: 5;
        width: 100%;
        height: 100vh;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
    }
    .overlayNav.navOpen {
        display: flex;
        visibility: visible;
        opacity: 1;
        animation: navOpen 0.3s;
		background-color:rgba(255,236,68,0.9);
    }
    .navOpen-blur {
        filter: blur(8px);
        transition: all .5s;
    }
    .header2 {
        display: none;
    }
    header h1 {
        width: 70%;
        margin: 0 auto 40px auto;
    }
    header .globalNav ul li {
        margin-bottom: 20px;
    }
    header .utilityNav ul {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    /*headerNav------------------*/
    .globalNavBtn {
        position: fixed;
        top: 10px;
        right: 10px;
        background: #fff;
        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        padding: 10px;
        z-index: 9999;
    }
    .globalNavBtn-Trigger {
        display: block;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        cursor: pointer;
    }
    .globalNavBtn-Trigger span {
        content: '';
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 6px;
        background-color: var(--main-color);
        transition: all .5s;
    }
    .globalNavBtn-Trigger.navActive span {
        background-color: var(--main-color);
    }
    .globalNavBtn-Trigger span:nth-of-type(1) {
        top: 4px;
    }
    .globalNavBtn-Trigger.navActive span:nth-of-type(1) {
        transform: translateY(7px) rotate(-45deg);
    }
    .globalNavBtn-Trigger span:nth-of-type(2) {
        top: 11px;
    }
    .globalNavBtn-Trigger.navActive span:nth-of-type(2) {
        opacity: 0;
    }
    .globalNavBtn-Trigger span:nth-of-type(3) {
        bottom: 4px;
    }
    .globalNavBtn-Trigger.navActive span:nth-of-type(3) {
        transform: translateY(-7px) rotate(45deg);
    }
    .globalNavBtn-Trigger {
        transform: translateX(0);
    }
	.globalNav li .trialtag{
	bottom:-0.5em;
   max-width:80px;
 left: 50%;
   transform: translateX(-50%);
}
}
/*-------------------------------------------
mainVisual
-------------------------------------------*/
.mainVisual {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    top: 0px;
	
	
}
.mainVisual-img div {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
}
.mainVisual-img div img{

    width: 100%;

}
.mainVisual-bg img{
	width:100%;
}
.mainVisual-img .mainVisual-chara {
    opacity: 0;
    z-index: 3;
    top: 10px;
}
.mainVisual-img .mainVisual-chara.anime {
    animation: mvbounce 1s ease-out forwards;
}
.mainVisual-img .mainVisual-chara.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.mainVisual-img .mainVisual-shino {
    top: -10%;
    left: 8%;
    opacity: 0;
    z-index: 2;
}
.mainVisual-img .mainVisual-shino.anime {
    animation:
        shino-bounce 1s ease-out forwards;
}
.mainVisual-img .mainVisual-shino.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.mainVisual-img .mainVisual-kirakira {
    opacity: 0;
    z-index: 2;
    transition: opacity 2s ease-in-out;
}
.mainVisual-img .mainVisual-kirakira.anime {
    opacity: 1;
}
.mainVisual-img .mainVisual-kirakira.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 6s ease-in-out infinite;
}
@keyframes shino-bounce {
    0% {
        transform: translateY(200px) translateX(-100px);
        opacity: 0;
        filter: brightness(5);
    }
    50% {
        transform: translateY(-30px) translateX(30px); /* 少し跳ねる */
        opacity: 1;
        filter: brightness(1.2);
    }
    100% {
        transform: translateY(0) translateX(0); /* 最終位置 */
        opacity: 1;
        filter: brightness(1);
    }
}
@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes mvbounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
        filter: brightness(5); /* 暗め */
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
        filter: brightness(1.2); /* 少し明るく */
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: brightness(1); /* 通常の明るさ */
    }
}
.mainVisual-img .mainVisual-catch {
    opacity: 0;
    z-index: 5;
    transform-origin: center; /* 拡大の基準点を中央に設定 */
}
.mainVisual-img .mainVisual-catch.animeFade {
    opacity: 0;
    transform: scale(0.5); /* 初期状態で縮小 */
    animation: enlargeAndShrink 1.5s ease-in-out forwards; /* アニメーション適用 */
}
@keyframes enlargeAndShrink {
    0% {
        opacity: 0;
        transform: scale(0.5); /* 初期状態で小さい */
    }
    50% {
        opacity: 1;
        transform: scale(1.1); /* 拡大 */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* 通常のサイズに戻る */
    }
}
.animateZoom img {
    max-width: 100%;
    height: auto;
    animation: animationZoom 10s ease-in-out forwards, animationBrightness 1s ease-in-out forwards;
}
@keyframes animationZoom {
    100% {
        transform: scale(1.1);
    }
}
.mainVisual-object {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mainVisual-img .mainVisual-logo {
    opacity: 0;
    z-index: 5;
    transform-origin: center; /* 拡大の基準点を中央に設定 */
}
.mainVisual-img .mainVisual-logo.animeFade {
    opacity: 0;
    transform: scale(0.5); /* 初期状態で縮小 */
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------------------------------
topics
-------------------------------------------*/
#topics {
    padding-bottom: 0;
	background: linear-gradient(to bottom, rgba(255,241,200,1.0), rgba(255,241,168,1.0));
}
.topics_star{
	background-image:url(../images/starBG.png);
	background-size: 100%;
}
.bannerList-big{
	margin:0 auto 40px auto;

	display: flex;
	justify-content: center;

}
.bannerList-big img{
	max-width: 830px;
}
.bannerList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    font-size: 14px;
    z-index: 10;
    position: relative;
}
.bannerList .date {
    margin-top: 10px;
	margin-right: 20px;
	border: rgba(255,100,167,0.5) 1px solid;
	background-color:rgba(255,255,255,1.00);
	padding: 0px 10px 1px 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,100,167,1.00);
}
.bannerList img {
    max-width: 100%;
    height: auto;
	margin-bottom: 10px;
}
.bannerList div {
    padding-bottom: 20px;
}
.bannerList a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../gallery/images/frame.png'); /* 背景として使用する画像 */
    background-size: cover;
    background-position: center;
    pointer-events: none;
}
.coming {
    pointer-events: none;
}
@media (max-width: 900px) {
	.banner-big{
	width:100%;
}
	

    .bannerList {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
.bannerList .newmark{
		max-width: 50px;
	}
	.bannerList{
		line-height: 1.3;
		margin-bottom:30px;
		margin-top:0;
		padding-top:0;
		
	}

	.bannerList .date {
   margin-top: 0.2em;
}
	.bannerList div {
    padding-bottom: 0px;
}
}
@media (max-width: 600px) {
#topics {
    padding-top:0;
	}}
/*-------------------------------------------
news
-------------------------------------------*/
#news {
    background-color: rgba(255, 255, 255, 0.4);
}
.news-content {
    display: grid;
    gap: 0;
    font-size: 14px;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr; /* 両方の行を同じ高さに設定 */
    grid-template-areas:
        "section-title news-topics"
        "news-windowBtn news-topics";
}
/* section-titleの設定 */
#news .section-title {
    grid-area: section-title;
    margin: 0; /* 余白を削除 */
    padding: 0; /* 余白を削除 */
    height: 100%; /* 高さを100%に設定して、grid内で隙間なく収まるように */
}
/* news-topicsの設定 */
#news-topics {
    grid-area: news-topics;
}
/* news-windowBtnの設定 */
.news-windowBtn {
    grid-area: news-windowBtn;
    margin: 0;
    margin-top: 20px;
    padding: 0;
    height: 100%; /* 同じく高さを100%に設定 */
    text-align: center;
}
/* SP時（900px以下）：A → C → B の順に縦並び */
@media (max-width: 900px) {
    .news-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "section-title"
            "news-topics"
            "news-windowBtn";
    }
}
/* PC時の追加スタイル */
@media (min-width: 900px) {
    .news-content dt {

    }
}
/* SP時の追加スタイル */
@media (max-width: 900px) {
    .news-topics {
        width: 100%;
    }
    .news-content dl {
        flex-direction: column;
    }
    .news-content dt, .news-content dd {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
}
.news-content dl {
    display: flex;
    border-bottom: solid 1px #fff;
    padding: 20px 0px;
}
.news-content dt {
    font-family: "Katibeh", "Noto Sans JP", sans-serif;
    vertical-align: text-bottom;
    width: 90px;
    color: var(--accent-color);
    margin-left: 20px;
    letter-spacing: 1.5px;
    font-size: 20px;
    display: flex;
    align-items: top;
    line-height: 1;
}
.news-content dd {
    padding-left: 20px;
display: block;
}
/*-------------------------------------------
movie
-------------------------------------------*/
section#top-movie {
    padding: 0px;
    margin: 0px;
}
/*テスト↑*/
.movie-container {
    position: relative;
    width: 100vw; /* 横幅いっぱい */
    height: calc(300px + (100vw - 610px) * 0.5);
    max-height: 610px; /* 最大600px */
    min-height: 250px; /* 最小200px */
    overflow: hidden; /* 上下が切れても表示 */
    transition: height 0.3s ease;
    z-index: 10;
}
.movie-base {
    position: absolute;
    z-index: 2;
    width: 100%;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}
.movie-play {
    position: absolute;
    width: 18.35%; /* 367 / 2000 × 100 */
    aspect-ratio: 1 / 1;
    left: 28.5%; /* ← X方向の位置だけパーセンテージ指定 */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    z-index: 2;
    animation: spin 10s linear infinite;
    transform-origin: center;
    pointer-events: none;
    opacity: 0.8;
}
@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}
.movie-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9のアスペクト比を保つ (9/16 = 0.5625) */
    transform: translate(-50%, -50%);
}
.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 192, 241, 0.5);
    z-index: 1;
    pointer-events: none;
}
/*-------------------------------------------
story
-------------------------------------------*/
#story {
    position: relative;
    overflow: hidden;
}
.bgClip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
	margin: 0px;
}
.story-bg_on{
	position: relative;
	background: linear-gradient(to bottom, white, rgba(255,255,255,0));
	width: 100%;
	height: 100%;
	top: -80px;
	margin: 0px;
}
.story-bg {
    position: fixed; /* 最初は固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../story/images/bg_moon.jpg') no-repeat top center/cover;
    opacity: 1;
	background-color: white;
    transition: opacity 2s ease-in-out;
}

@keyframes swingLight {
    0% {
        transform: rotate(-120deg);
    }
    25% {
        transform: rotate(120deg);
    }
    50% {
        transform: rotate(100deg);
    }
    75% {
        transform: rotate(120deg); /* 120deg に戻す */
    }
    100% {
        transform: rotate(-120deg);
    }
}
/* story-textの初期色 */
.story-text {
    font-family:YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: var(--font-color); /* 初期の文字色 */
	font-weight: 200;
    transition: all 2s ease-in-out; /* 文字色の変化を2秒で */
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.5),0 0 5px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.5);
}
.story-text.font-change {
    color: var(--font-color);
    text-shadow:
        0 0 2px rgba(255, 255, 255, 1), /* シャープなフチを作るためにぼかしを小さく */ 0 0 4px rgba(255, 255, 255, 1), /* 少し強めの影 */ 0 0 6px rgba(255, 255, 255, 1), /* さらにはっきりさせる */ 0 0 6px rgba(255, 255, 255, 1); /* さらにはっきりさせる */
}
.story-text p {
    line-height: 2;
    letter-spacing: 1.5px;
    font-size: 18px;
    margin-bottom: 40px;
}
.highlight {
    font-size: 24px;
    font-weight: 500;
    background-color: #FF8AB9;
    color: #fff;
    padding: 0px 6px 2px 6px;
    margin: 0 3px;
    text-shadow: none;
}
.story-words {
    font-size: 28px;
    font-family:YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-weight: bold;
}
.story-text .main-word {
    color: var(--main-color);
}
/*変身バンクアニメ*/
.bank {
    display: inline-block;
}
.effect-change {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
}
.bank.is-inview .rect img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.bank.is-inview .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
}
.rect {
    opacity: 0;
    animation: fadeIn 1s forwards;
    margin: 5px;
}
.bank.is-inview .rect1 {
    animation: fadeInFromLeft 2s forwards;
    animation-delay: 0.3s;
}
.bank.is-inview .rect2 {
    animation: fadeInFromBottom 2s forwards;
    animation-delay: 0.6s;
}
.bank.is-inview .rect3 {
    animation: fadeInFromTop 2s forwards;
    animation-delay: 0.9s;
}
.bank.is-inview .rect4 {
    animation: fadeInFromRight 2s forwards;
    animation-delay: 1.2s;
}
.effect .rect img {
    opacity: 0;
}
@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 900px) {
    .story-text p {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .highlight {
        font-size: 14px;
    }
    .story-words {
        font-size: 18px;
    }
}
/*-------------------------------------------
character
-------------------------------------------*/
#character{
	background-image: url(../character/images/bg.jpg);
	background-repeat: repeat-y;
	background-size: 100%;
}
section#character {
    padding: 0px;
    margin: 0px;
}
#character .section-title {
    background-image: url('../character/images/section-title.png');
    background-size: auto; /* 画像のサイズを固定 */
    background-repeat: no-repeat; /* 繰り返しなし */
    background-position: top center; /* 画像の中心を基準に配置 */
    width: 100%; /* 親要素の幅いっぱいにする */
    overflow: hidden; /* 必要に応じてオーバーフローを隠す */
	z-index: 1;
}
#character .section-title_under {
    background-image: url('../character/images/section-title_under.png');
    background-size: auto; /* 画像のサイズを固定 */
    background-repeat: no-repeat; /* 繰り返しなし */
    background-position: bottom center; /* 画像の中心を基準に配置 */
    width: 100%; /* 親要素の幅いっぱいにする */
    overflow: hidden; /* 必要に応じてオーバーフローを隠す */
}
.character-btn {
	right: 30px;
	margin-top: -60px;
    padding: 0px 0px 20px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
	position: absolute;
	z-index: 9;
}
.character-btn ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.character-btn li {
    width: 100px;
    height: 100px;
    position: relative;
}
.character-btn li img {
    width: 100%; /* 親要素に合わせて画像のサイズを調整 */
    height: 100%; /* 親要素に合わせて画像のサイズを調整 */
    object-fit: cover; /* 画像が歪まないように調整 */
}
#character-iframe {
    display: block;
    position: relative;
}
.galleryList a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../gallery/images/frame.png'); /* 背景として使用する画像 */
    background-size: cover;
    background-position: center;
    pointer-events: none;
}
.character-btn li img.newmark {
    position: absolute; /* 絶対位置指定 */
    width: 70%;
    height: auto;
    left: 50%; /* 左端を中央に */
    transform: translateX(-50%); /* 中心から左にずらす */
    border-radius: 0%;
    bottom: 10px;
}
@media (max-width: 900px) {
    .character-btn {
        gap: 10px;
    }
    .character-btn ul {
        gap: 10px;
    }
    .character-btn li {
        width: 60px;
        height: 60px;
    }
}
/*-------------------------------------------
gallery
-------------------------------------------*/
#gallery {
    position: relative;
    width: 100%;
    background: url('../gallery/images/gallery-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}
@media (max-width: 900px) {
  #gallery {
    background-attachment: scroll; /* fixed→scrollに切り替え */
  }
}
/*-------------------------------------------
download
-------------------------------------------*/

.dllist-area{max-width:1200px;
margin: auto;}
.splide{max-width:1200px;
margin:0 auto 50px auto;}
.splide__list img {
    width: 100%;
}
/* ページネーションのスタイル */
.trial-page {
    background-color: #fff;
    height: 10px;
    transition: .5s all;
    width: 10px;
}
/* 現在表示されているページネーションのスタイル */
.trial-page.is-active {
    background-color: #ff8ab9;
    opacity: 1;
}
/* ページネーションの位置 */
.trial-pagination {
    bottom: 1.5em;
}
/* ページネーション間の余白 */
.splide__pagination li {
    margin-left: 5px;
    margin-right: 5px;
}
/* スライドのサイズ調整 */
.splide__slide img {
    height: auto;
    width: 100%;
}
.splide__pagination {
    bottom: auto;
    position: absolute;
    bottom: -2em;
}
.splide__arrow svg {
    fill: pink;
    height: 1.2em;
    width: 1.2em
}
.splide__arrow {
    background: #fff;
}
#download iframe {
    margin: 0 auto;
    display: block;
}
.movie-wrapper {
    max-width: 1200px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
}
.movie-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
#download .dlData {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 20px
}
#download .dlData dl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
#download .dlData dt {
    font-weight: bold;
}
#download .op-title{
	margin:30px auto;
	text-align: center;
	
}
.dllist-area .dlList {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
    row-gap: 16px;
    width: 100%;
}
.dllist-area .dlList dl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
    width: 100%; 
}
.dllist-area .dlList dt {
    font-weight: bold;
    margin-right: 15px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dllist-area .dlList dd {
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
}
.dllist-area a.btn-base {
    font-size: 12px;
    min-width: 100px;
    letter-spacing: normal;
    max-height: 30px;
}
.dllist-area a.btn-base::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: solid 1px var(--gold-color); /* 外枠のスタイル */
    z-index: -1;
    border-radius: 35px;
}
/* アイコンのスタイル */
.dllist-area a.btn-base .icon-left, .dllist-area a.btn-base .icon-right {
    width: 10px; /* アイコンのサイズ */
    height: 10px; /* アイコンのサイズ */
    background-size: cover;
    display: inline-block;
}
.dllist-area a.btn-base .icon-left {
    margin-right: 10px;
}
.dllist-area a.btn-base .icon-right {
    margin-left: 10px;
}
@media screen and (max-width: 900px) {
    #download .dlData {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
    #download .dlList {
        grid-template-columns: 1fr; /* 1列にする */
    }
}
/*-------------------------------------------
SPECIAL
-------------------------------------------*/
#special {
    background-color: rgba(255, 255, 255, 0.4);
}

/*-------------------------------------------
SPEC
-------------------------------------------*/
#spec {
    font-size: 14px;
    position: relative;
}
#spec-special {
    text-align: center;
}
#spec-special p {
    margin-bottom: 30px;
}

.package_pic img{
    display: grid;
	justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 40px;
	margin-top: 50px;
    border-radius: 5px;
    background-color: #fff; /* 背景色（丸の中） */
    border: 2px solid #fff; /* 内側の白フチ */
    box-shadow: 0 0 0 1px #D9AD62, /* 外側のD9AD62色のフチ */ 0 0 0 3px #fff; /* さらにその外側に白フチ */
	position:relative;
	width: 100%;
	margin: 30px auto;
}
.specList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0px;
    font-size: 14px;
    margin-bottom: 40px;
	margin-top: 50px;
    font-weight: bold;
    line-height: 1.5;
}
.specList li {
    text-align: center;
    border-radius: 5px;
    background-color: #fff; /* 背景色（丸の中） */
    border: 2px solid #fff; /* 内側の白フチ */
    box-shadow: 0 0 0 1px #D9AD62, /* 外側のD9AD62色のフチ */ 0 0 0 3px #fff; /* さらにその外側に白フチ */
	position:relative;
	width: 80%;
	margin: 0 auto 30px auto;
}
.specList li div {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.specList .content-title {
    margin: 0 0 5px 0;
}
.textList dl {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
.textList dt {
    font-weight: bold;
    margin-right: 15px;
    width: 120px;
}
.textList dd {
    flex: 1;
}
#spec-staff {
    margin-bottom: 40px;
}
#spec-staff .textList dl {
    display: block;
}
#spec-staff dt {
    color: var(--main-color);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
}
#spec-staff dd {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
}
#spec a.btn-base {
    font-size: 12px;
    min-width: 100px;
    letter-spacing: normal;
    max-height: 30px;
margin-top:10px;
	
}
#spec a.btn-base::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: solid 1px var(--gold-color); /* 外枠のスタイル */
    z-index: 0;
    border-radius: 35px;
	
}
/* アイコンのスタイル */
#spec a.btn-base .icon-left, #spec a.btn-base .icon-right {
    width: 10px; /* アイコンのサイズ */
    height: 10px; /* アイコンのサイズ */
    background-size: cover;
    display: inline-block;
}
#spec a.btn-base .icon-left {
    margin-right: 10px;
}
#spec a.btn-base .icon-right {
    margin-left: 10px;
}
/* PC版 */
@media screen and (min-width: 900px) {
    .flexBox {
        display: flex;
        gap: 100px;
        justify-content: center;
    }
    /* dtとddを横並びに */
    .textList dl {
        flex-direction: row; /* 横並び */
    }
}
/* SP版 */
@media screen and (max-width: 900px) {
    .textList {
        width: 100%;
    }
    .textList dl {
        border-bottom: solid 1px #fff;
        padding: 15px 0px;
        margin: 0;
    }
    #spec-staff dd {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    #spec-spec {
        margin-top: 80px;
    }
    #spec-staff {
        margin-bottom: 80px;
    }
}
/*------------------
■footer
------------------*/
footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-family: "Katibeh", "Noto Sans JP", sans-serif;
    background: #fff;
}

/*------------------
■anime
------------------*/
.fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s, filter 1.5s;
    filter: blur(4px);
}
.fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
    filter: blur(0px);
}
.fadeUp-delay {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .8s, filter 1.5s;
}
.fadeUp-delay.is-inview {
    opacity: 1;
    filter: blur(0px);
    transition-delay: .8s;
}
.fadeIn {
    opacity: 0;
    transition: opacity 1.5s
}
.fadeIn.is-inview {
    opacity: 1;
    transition-delay: 0.5s;
}
.letterSpacing {
    opacity: 0;
    letter-spacing: 12px;
    transition: opacity 1.5s, letter-spacing 1.5s;
}
.letterSpacing.is-inview {
    opacity: 1;
    letter-spacing: 2px;
    transition-delay: 0.5s;
}




  /* 最初は非表示 */
  .banner_hidden { display:none; }
  /* フェードイン効果 */
  .fade-in {
    display:flex !important;
    opacity:0;
    transform: translateY(15px);
    animation: fadeInUp 0.4s forwards;
  }
  @keyframes fadeInUp {
    to { opacity:1; transform: translateY(0); }
  }
#show-more{
	text-align: center;
	padding-bottom: 50px;
	}


.tachi_change {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tachi_change img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tachi_change img.visible {
	opacity: 1;}