*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:"Noto Sans JP",sans-serif;
background:linear-gradient(180deg,#fff,#fffafd 50%,#fff);
color:#222;
overflow-x:hidden;
position:relative;
}
body::before{
content:"";
position:fixed;
width:700px;
height:700px;
right:-250px;
bottom:-250px;
background:#fc54b8;
filter:blur(180px);
opacity:.12;
pointer-events:none;
z-index:-2;
}
body::after{
content:"";
position:fixed;
width:600px;
height:600px;
left:-250px;
top:-250px;
background:#ff0090;
filter:blur(180px);
opacity:.08;
pointer-events:none;
z-index:-2;
}
.bg-01{
position:fixed;
top:8%;
left:12%;
width:280px;
height:280px;
border-radius:50%;
background:#ff0090;
filter:blur(120px);
opacity:.08;
animation:float1 12s ease-in-out infinite;
pointer-events:none;
z-index:-1;
}
.bg-02{
position:fixed;
right:10%;
bottom:8%;
width:360px;
height:360px;
border-radius:50%;
background:#fc54b8;
filter:blur(150px);
opacity:.1;
animation:float2 16s ease-in-out infinite;
pointer-events:none;
z-index:-1;
}
@keyframes float1{
0%{transform:translate(0,0);}
50%{transform:translate(40px,-40px);}
100%{transform:translate(0,0);}
}
@keyframes float2{
0%{transform:translate(0,0);}
50%{transform:translate(-50px,30px);}
100%{transform:translate(0,0);}
}
.container{
width:min(1400px,92%);
margin:auto;
}
a{
text-decoration:none;
color:inherit;
}
img{
display:block;
max-width:100%;
}
header{
position:relative;
overflow:hidden;
padding:110px 0 90px;
text-align:center;
}
header::before{
content:"";
position:absolute;
left:50%;
top:-220px;
transform:translateX(-50%);
width:700px;
height:700px;
background:radial-gradient(circle,#fc54b8 0%,transparent 70%);
filter:blur(90px);
opacity:.22;
z-index:-1;
}
.logo{
display:inline-block;
opacity:0;
transform:translateY(-20px) scale(.96);
transition:opacity 1.2s ease,transform 1.2s cubic-bezier(.22,1,.36,1);
}
.logo.show{
opacity:1;
transform:translateY(0) scale(1);
}
.logo img{
	width: 100%;
max-width:320px;
transition:.5s;
	border-radius: 50%;
}
.logo:hover img{
transform:scale(1.04);
}

.hero-text{
margin-top:35px;
}
.hero-text .sub{
display:inline-block;
padding:8px 18px;
border-radius:999px;
background:rgba(255,0,144,.08);
border:1px solid rgba(255,0,144,.12);
color:#ff0090;
font-size:13px;
font-weight:700;
letter-spacing:.08em;
}
.hero-text h1{
margin-top:25px;
font-size:58px;
font-weight:900;
background:linear-gradient(135deg,#ff0090,#fc54b8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
.hero-text p{
margin-top:20px;
font-size:17px;
line-height:2;
color:#666;
max-width:720px;
margin-left:auto;
margin-right:auto;
}
.characters{
padding:30px 0 120px;
}
.section-title{
text-align:center;
margin-bottom:60px;
}
.section-title h2{
display:inline-block;
position:relative;
font-size:40px;
font-weight:900;
padding-left:18px;
}
.section-title h2::before{
content:"";
position:absolute;
left:0;
top:4px;
width:6px;
height:42px;
border-radius:999px;
background:linear-gradient(#ff0090,#fc54b8);
}
.section-title p{
margin-top:16px;
color:#999;
font-size:15px;
letter-spacing:.12em;
text-transform:uppercase;
}
.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.card{
position:relative;
display:block;
overflow:hidden;
border-radius:24px;
background:rgba(255,255,255,.68);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border:1px solid rgba(255,0,144,.12);
box-shadow:0 15px 45px rgba(255,0,144,.08);
transition:.45s ease;
}
.card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,rgba(255,255,255,.45),rgba(255,255,255,0));
opacity:0;
transition:.45s;
pointer-events:none;
z-index:2;
}
.card::after{
content:"";
position:absolute;
left:-80%;
top:-80%;
width:120%;
height:120%;
background:linear-gradient(135deg,rgba(255,255,255,0),rgba(255,255,255,.5),rgba(255,255,255,0));
transform:rotate(25deg);
transition:1s;
pointer-events:none;
z-index:3;
}
.card:hover{
transform:translateY(-10px);
border-color:rgba(255,0,144,.2);
box-shadow:0 25px 70px rgba(252,84,184,.28),0 0 35px rgba(255,0,144,.18);
}
.card:hover::before{
opacity:1;
}
.card:hover::after{
left:120%;
top:120%;
}
.thumb{
position:relative;
overflow:hidden;
background:linear-gradient(135deg,#fff,#ffe7f5);
aspect-ratio:1/1;
}
.thumb::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,0,144,.05));
z-index:1;
pointer-events:none;
}
.thumb img{
width:100%;
height:100%;
object-fit:cover;
transition:1.2s ease;
}
.card:hover .thumb img{
transform:scale(1.08);
}
.card-body{
padding:22px;
text-align:center;
position:relative;
z-index:4;
}
.card-body h3{
font-size:20px;
font-weight:700;
color:#333;
transition:.3s;
}
.card:hover .card-body h3{
color:#ff0090;
}
.fade{
opacity:0;
transform:translateY(50px);
transition:1s ease;
}
.fade.show{
opacity:1;
transform:translateY(0);
}
.card:nth-child(2){
transition-delay:.08s;
}
.card:nth-child(3){
transition-delay:.16s;
}
.card:nth-child(4){
transition-delay:.24s;
}
.card:nth-child(5){
transition-delay:.32s;
}
.card:nth-child(6){
transition-delay:.40s;
}
.card:nth-child(7){
transition-delay:.48s;
}
.card:nth-child(8){
transition-delay:.56s;
}
.card:hover .thumb{
background:linear-gradient(135deg,#fff,#ffd4ee);
}
.card:hover .thumb::before{
background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,0,144,.08));
}
.card:active{
transform:translateY(-4px);
}
.card-body::before{
content:"";
display:block;
width:40px;
height:3px;
margin:0 auto 16px;
border-radius:999px;
background:linear-gradient(90deg,#ff0090,#fc54b8);
opacity:.35;
transition:.3s;
}
.card:hover .card-body::before{
width:70px;
opacity:1;
}
footer{
margin-top:100px;
padding:45px 20px;
background:rgba(255,255,255,.8);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
border-top:1px solid rgba(255,0,144,.12);
position:relative;
}
footer::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:2px;
background:linear-gradient(90deg,transparent,#ff0090,#fc54b8,transparent);
}
footer p{
text-align:center;
font-size:14px;
color:#888;
letter-spacing:.05em;
}
::selection{
background:#ff0090;
color:#fff;
}
::-webkit-scrollbar{
width:10px;
}
::-webkit-scrollbar-track{
background:#fafafa;
}
::-webkit-scrollbar-thumb{
background:linear-gradient(#ff0090,#fc54b8);
border-radius:999px;
}
::-webkit-scrollbar-thumb:hover{
background:#ff0090;
}
@media(max-width:1200px){
.grid{
grid-template-columns:repeat(3,1fr);
gap:24px;
}
.hero-text h1{
font-size:52px;
}
}
@media(max-width:900px){
header{
padding:90px 0 70px;
}
.logo img{
width:260px;
}
.hero-text h1{
font-size:44px;
}
.hero-text p{
font-size:16px;
line-height:1.9;
}
.section-title h2{
font-size:34px;
}
.grid{
grid-template-columns:repeat(2,1fr);
gap:22px;
}
}
@media(max-width:640px){
.container{
width:min(100%,92%);
}
header{
padding:70px 0 60px;
}
.logo img{
width:210px;
}
.hero-text .sub{
font-size:12px;
padding:7px 15px;
}
.hero-text h1{
font-size:36px;
margin-top:18px;
}
.hero-text p{
font-size:15px;
line-height:1.8;
}
.characters{
padding:10px 0 80px;
}
.section-title{
margin-bottom:40px;
}
.section-title h2{
font-size:28px;
padding-left:14px;
}
.section-title h2::before{
height:30px;
width:5px;
}
.section-title p{
font-size:13px;
}
.grid{
grid-template-columns:1fr;
gap:20px;
}
.card{
border-radius:20px;
}
.card-body{
padding:18px;
}
.card-body h3{
font-size:18px;
}
footer{
margin-top:70px;
padding:35px 15px;
}
footer p{
font-size:13px;
}
}

.character-page{
padding:20px 0 100px;
}
.back-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 18px;
margin-bottom:50px;
border:1px solid rgba(255,0,144,.15);
border-radius:999px;
background:rgba(255,255,255,.7);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
color:#ff0090;
font-size:14px;
font-weight:700;
transition:.3s;
}
.back-btn:hover{
background:#ff0090;
color:#fff;
box-shadow:0 15px 35px rgba(255,0,144,.2);
transform:translateY(-3px);
}
.hero{
text-align:center;
margin-bottom:100px;
}
.hero h1{
font-size:56px;
font-weight:900;
line-height:1.2;
background:linear-gradient(135deg,#ff0090,#fc54b8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:16px;
}
.catch{
font-size:20px;
color:#888;
margin-bottom:50px;
font-weight:500;
}
.main-image{
max-width:760px;
margin:auto;
padding:25px;
background:rgba(255,255,255,.65);
border:1px solid rgba(255,0,144,.12);
border-radius:30px;
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
box-shadow:0 20px 60px rgba(255,0,144,.08);
overflow:hidden;
transition:.4s;
}
.main-image:hover{
transform:translateY(-8px);
box-shadow:0 30px 80px rgba(255,0,144,.18);
}
.main-image img{
width:100%;
display:block;
transition:1s;
}
.main-image:hover img{
transform:scale(1.03);
}
.gallery{
margin-bottom:100px;
}
.gallery h2{
font-size:34px;
margin-bottom:35px;
font-weight:800;
position:relative;
display:inline-block;
padding-left:18px;
}
.gallery h2::before{
content:"";
position:absolute;
left:0;
top:3px;
width:6px;
height:36px;
border-radius:999px;
background:linear-gradient(#ff0090,#fc54b8);
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}
.gallery-grid img{
width:100%;
aspect-ratio: 1 / 1;
object-fit: cover;
	height: auto;
display:block;
border-radius:20px;
background:#fff;
border:1px solid rgba(255,0,144,.1);
box-shadow:0 12px 35px rgba(255,0,144,.08);
transition:.45s;
cursor:pointer;
}
.gallery-grid img:hover{
transform:translateY(-6px) scale(1.04);
box-shadow:0 20px 50px rgba(255,0,144,.22);
}
.about{
margin-bottom:100px;
}
.about h2{
font-size:34px;
margin-bottom:35px;
font-weight:800;
position:relative;
display:inline-block;
padding-left:18px;
}
.about h2::before{
content:"";
position:absolute;
left:0;
top:3px;
width:6px;
height:36px;
border-radius:999px;
background:linear-gradient(#ff0090,#fc54b8);
}
.about .aboutBox{
padding:35px;
background:rgba(255,255,255,.65);
border:1px solid rgba(255,0,144,.12);
border-radius:24px;
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
box-shadow:0 15px 40px rgba(255,0,144,.08);
font-size:17px;
line-height:2.1;
color:#555;
}
.profile{
margin-bottom:100px;
}
.profile h2{
font-size:34px;
margin-bottom:35px;
font-weight:800;
position:relative;
display:inline-block;
padding-left:18px;
}
.profile h2::before{
content:"";
position:absolute;
left:0;
top:3px;
width:6px;
height:36px;
border-radius:999px;
background:linear-gradient(#ff0090,#fc54b8);
}
.profile-card{
background:rgba(255,255,255,.68);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border:1px solid rgba(255,0,144,.12);
border-radius:28px;
box-shadow:0 15px 45px rgba(255,0,144,.08);
overflow:hidden;
}
.profile-card div{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 30px;
border-bottom:1px solid rgba(255,0,144,.08);
}
.profile-card div:last-child{
border-bottom:none;
}
.profile-card span{
font-size:16px;
font-weight:700;
color:#666;
}
.profile-card strong{
font-size:18px;
font-weight:700;
color:#222;
}
.videos{
margin-bottom:100px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
.videos h2{
grid-column:1/-1;
font-size:34px;
margin-bottom:35px;
font-weight:800;
position:relative;
display:inline-block;
padding-left:18px;
}
.videos h2::before{
content:"";
position:absolute;
left:0;
top:3px;
width:6px;
height:36px;
border-radius:999px;
background:linear-gradient(#ff0090,#fc54b8);
}
.video-card{
display:flex;
flex-direction:column;
gap:16px;
padding:20px;
margin-bottom:0;
background:rgba(255,255,255,.68);
border:1px solid rgba(255,0,144,.12);
border-radius:24px;
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
box-shadow:0 15px 40px rgba(255,0,144,.08);
transition:.35s;
}
.video-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 60px rgba(255,0,144,.18);
}
.video-card img{
width:100%;
max-width:100%;
border-radius:16px;
transition:.5s;
height: auto;
}
.video-card:hover img{
transform:scale(1.03);
}
.video-card h3{
font-size:19px;
line-height:1.5;
font-weight:700;
color:#333;
text-align:center;
transition:.3s;
}
.video-card:hover h3{
color:#ff0090;
}
.r18-area{
margin-top:80px;
text-align:center;
}
.r18-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 24px;
border-radius:999px;
background:#fff;
border:1px solid rgba(255,0,144,.18);
color:#ff0090;
font-size:14px;
font-weight:700;
letter-spacing:.04em;
transition:.35s;
}
.r18-btn:hover{
background:linear-gradient(135deg,#ff0090,#fc54b8);
color:#fff;
border-color:transparent;
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(255,0,144,.25);
}
.character-page section{
opacity:0;
transform:translateY(40px);
transition:opacity .8s ease,transform .8s ease;
}
.character-page section.show{
opacity:1;
transform:translateY(0);
}
.main-image,
.gallery-grid img,
.profile-card,
.video-card{
will-change:transform;
}

							.modal {
								position: fixed;
								top: 0;
								left: 0;
								width: 100%;
								height: 100%;
								display: flex;
								align-items: center;
								justify-content: center;
								z-index: 9999;
								opacity: 0;
								pointer-events: none;
								transition: opacity 0.3s ease;
							}

							/* モーダルが表示されたときのクラス */
							.modal.is-active {
								opacity: 1;
								pointer-events: auto;
							}

							/* 背景の黒いマスク */
							.modal-overlay {
								position: absolute;
								top: 0;
								left: 0;
								width: 100%;
								height: 100%;
								background-color: rgba(0, 0, 0, 0.8);
							}

							/* コンテンツエリア（最大横幅 800px） */
							.modal-content {
								position: relative;
								width: 90%;
								max-width: 800px;
								background: #000;
								z-index: 10;
							}

							/* YouTubeの16:9比率を保つレスポンシブ記述 */
							.iframe-wrapper {
								position: relative;
								width: 100%;
								padding-top: 56.25%; /* 16:9 の比率 */
							}

							.iframe-wrapper iframe {
								position: absolute;
								top: 0;
								left: 0;
								width: 100%;
								height: 100%;
								border: none;
							}

							/* 閉じるボタン */
							.modal-close-btn {
								position: absolute;
								top: -40px;
								right: 0;
								background: none;
								border: none;
								color: #fff;
								font-size: 30px;
								cursor: pointer;
							}

@media(max-width:1200px){
.main-image{
max-width:680px;
}
.gallery-grid{
grid-template-columns:repeat(3,1fr);
gap:20px;
}
.hero h1{
font-size:48px;
}
}
@media(max-width:900px){
.character-page{
padding:10px 0 80px;
}
.hero{
margin-bottom:80px;
}
.hero h1{
font-size:42px;
}
.catch{
font-size:17px;
margin-bottom:40px;
}
.main-image{
padding:18px;
border-radius:24px;
}
.gallery,
.about,
.profile,
.videos{
margin-bottom:80px;
}
.gallery-grid{
grid-template-columns:repeat(2,1fr);
gap:18px;
}
.about h2,
.gallery h2,
.profile h2,
.videos h2{
font-size:30px;
}
.about p{
padding:28px;
font-size:16px;
}
.profile-card div{
padding:18px 24px;
}
.videos{
grid-template-columns:repeat(2,1fr);
gap:20px;
}
.video-card h3{
font-size:20px;
}
}
@media(max-width:640px){
.back-btn{
margin-bottom:35px;
padding:9px 16px;
font-size:13px;
}
.hero h1{
font-size:34px;
}
.catch{
font-size:15px;
line-height:1.8;
}
.main-image{
padding:14px;
border-radius:20px;
}
.gallery-grid{
grid-template-columns:1fr 1fr;
gap:14px;
}
.gallery-grid img{
border-radius:14px;
}
.about h2,
.gallery h2,
.profile h2,
.videos h2{
font-size:26px;
padding-left:14px;
}
.about h2::before,
.gallery h2::before,
.profile h2::before,
.videos h2::before{
width:5px;
height:28px;
}
.about p{
padding:22px;
font-size:15px;
line-height:1.9;
border-radius:20px;
}
.profile-card{
border-radius:20px;
}
.profile-card div{
padding:16px 18px;
}
.profile-card span{
font-size:14px;
}
.profile-card strong{
font-size:16px;
}
.videos{
grid-template-columns:1fr;
gap:18px;
}
.video-card{
padding:16px;
border-radius:20px;
gap:12px;
}
.video-card h3{
font-size:18px;
line-height:1.5;
}
.r18-area{
margin-top:60px;
}
.r18-btn{
padding:10px 20px;
font-size:13px;
}
}
.grecaptcha-badge { visibility: hidden; }