@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');
/* CSS Document */

/* ======================================================================
作家一覧
====================================================================== */

/* ===================共通=================== */
button:hover {
    border-color: transparent !important;
    /* もしくは */
    border: none !important;
}
button {
  -webkit-tap-highlight-color: transparent;
}
.memo {
	font-size: 0.9rem;
	display:inline-block;
	padding:0.4em 0 0.2em;
}
@media only screen and (max-width: 500px) {
.memo {
  	font-size: clamp(10px, 3vw, 12px);
    line-height: 1rem;
}
}



/* ===================2カラム=================== */
.creatorall_column {
	display:flex;
	flex-wrap: nowrap;
    flex-direction: row;
}
/* ===================画像=================== */
.creatorall_warp {
	letter-spacing: 0.09em !important;
    color: #af4154;
}
.illustration_box {
	height:auto;
	width:50vw;
	background-color: #c4f0ff;
	position: relative;	
	padding-bottom:3%;
	overflow: hidden;
	z-index: 1;
}
.bg-text {
	position: absolute;
	top: -5%;
	left:-5%;
	/* 大きい文字の設定 */
	font-size: 14vw;
	line-height:1em;
	color: rgb(255 255 255 / 72%);
	font-weight: bold;
	writing-mode: vertical-rl;
	z-index: -1;
	user-select: none;
	font-family: "Momo Trust Display", sans-serif;
}
/* ストライプ背景 */
.illustration_box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
	z-index: -1;
	will-change: transform, opacity;
  	/* 斜め45度のストライプ */
    background-image: repeating-linear-gradient(
	-45deg,
		transparent,
        transparent 30px,
        #1b9af5 30px,
        #1b9af5 75px
  );
    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
    animation: peel-seal 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    will-change: clip-path;
}
/* アニメーション定義 */
@keyframes peel-seal {
	0% {
    	clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
		opacity: 1;
    }
    50% {
        clip-path: polygon(0 100%, 0 0, 100% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
		opacity: 0.09;
    }
}
.illustration_box_warp {
    padding-top: 9vw;
}
.illustration_box_warp_img {
	overflow: visible;
	width:auto;
	height:37vw;
	margin:auto 6vw auto 7vw;
	border-radius: 500px 500px 0 0;
	outline: 3px solid #fff;
  	outline-offset: 10px;
	text-align:center;
	background-color:#fff;
	display: block;
    position: relative;
}
.swiper-container.slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible !important; 
    /* 上方向(-500px)だけ表示を許可し、左右と下は枠で切る設定 */
    clip-path: inset(-500px -17% -2% -500px);
    border-radius: 500px 500px 0 0; 
}
/* ===================メインスライド=================== */
.slider .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* 画像を下（底）に合わせる */
    background-color: transparent; /* 背景を透明にして下の白枠を見せる */
	flex-direction: column;
    overflow: visible !important;
	display: flex;           /* Flexboxを有効化 */
    justify-content: center; /* 左右（水平方向）の中央揃え */
    align-items: center;     /* 上下（垂直方向）の中央揃え */
    z-index: 1;
}
.slider .swiper-slide img {
    /* スライダー内で画像を自由に動かすための設定 */
    width: 100% !important;
	height: auto !important;
    bottom: 0;
	max-width: 120%;
    z-index: 10;
    object-fit: contain;
}
.swiper-slide img {
    border: none !important;
}
.slider .swiper-slide:not(.swiper-slide-active) img, .slider .swiper-slide:not(.swiper-slide-active) .chara,.slider .swiper-slide:not(.swiper-slide-active) .slide_title_box {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s; /* スムーズに切り替える */
}
.slider .swiper-slide-active img {
    opacity: 1 !important;
    visibility: visible;
}
.slider .swiper-slide {
    z-index: 1;
}
.slider .swiper-slide-active {
    z-index: 2;
}
.illustration_box_warp_img_mask img {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translateX(-50%) scale(2,2);
    width: 100%;
    height: 110%;
    max-width: none !important; 
    display: block;
	z-index: 10;
    /* 通常時：全面はみ出し許可 */
	clip-path: inset(-500px 0% 41.9% -500px);
}
.slider .slide_item_g img {
	width: 100% !important;
	height: 28vw !important;
	max-width: auto !important;
	padding-bottom:0.5vw;
}
.slider .slide_item_s img {
	width: 100% !important;
	height: 30vw !important;
	max-width: auto !important;
	padding-bottom:0.5vw;
}
/* スライド矢印 */
.slider .swiper-button-prev,
.slider .swiper-button-next {
    color: #ff3079 !important;
    background: rgba(255, 255, 255, 0.90);
	width: clamp(40px, 4vw, 100px) !important; 
    height: clamp(40px, 4vw, 100px) !important;
    border-radius: 50%;
    z-index: 110;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    top: 50%; /* 上下中央 */
	transform: translateY(60%);
    transition: all 0.3s ease;
	font-weight:900;
}
.slider .swiper-button-prev {
	left: -60px !important;
}
.slider .swiper-button-next {
	right: -50px !important;
}
 /* イラスト_キャラ名 */
.chara {
	position: absolute;	
	z-index:11;
	width:100%;
	bottom:15%;
    display: flex;
	flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}
.chara.chara3 {
	bottom: 2%;
}
.slide-title {
    display: inline-block;
    bottom: 20px; /* 画像より少し上に浮かせるなら数値を大きく */
    z-index: 20; /* 画像(z-index: 10)より必ず上に */
    line-height: clamp(3rem, 8vh, 6vw);
    text-align: center;
    padding: 0 5% 0 5%;
	margin:0 2%;
	font-size: clamp(1rem, 2.2vw, 2.4vw);
    font-weight: 700;
    letter-spacing: 0.25em;
    background: #ff4595;
    border: solid 2px #c6b929;
    color: #FFF;
    box-sizing: border-box;
    white-space: nowrap;
	clip-path: polygon(
		0% 0%, 
		100% 0%, 
		95% 50%,   /* 右中央を5%凹ませる */
		100% 100%, 
		0% 100%, 
		5% 50%     /* 左中央を5%凹ませる */
    );
}
.slide-title.space {
	font-weight: 800;
	letter-spacing: 0.01em;
}
 /* スライドタイトル */
.slide_title_box {
	width:100%;
	height :auto;
	bottom:4%;
	left:0;
	z-index:30;
	display:block;
}
.slide_name{
	font-weight:800;
	font-size:clamp(10px, 1vw, 2vw);
	line-height:1.1em;
	padding-bottom:1%;
}
.slide_name .memo {
	line-height:1.1em;
	font-size:0.8em;
}
a.slidebtn {
	background-color: #fff !important;
	border:solid 1px #72b7ff;
	font-size:clamp(9px, 0.9vw, 2vw);
	display:block;
	width:18vw;
	margin:0 auto;
	font-weight:800;
	color:#72b7ff;
	border-radius:100px;
	margin-bottom:1em;
}
 /* サムネスライド */
.swiper-container.thumbnail {
	width:85%;
	margin: 2vw auto 0;
}
.thumbnail .swiper-wrapper {
	display: flex;
    flex-wrap: wrap;       /* 横スクロールさせず、折り返す */
    justify-content: center; /* 中央寄せ（左寄せなら flex-start） */
    transform: none !important; /* Swiperの自動移動を無効化 */
}
.thumbnail .swiper-slide {
/* 1行に10枚並べたい場合 (100% / 10 = 10%) */
	width: 10% !important; 
    aspect-ratio: 1 / 1; 
    height: auto !important;
	background-color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
	opacity: 0.7;
	border:solid 1px #af4154;
	margin-bottom: 1%;
}
.thumbnail .swiper-slide-thumb-active {
  opacity: 1;/* サムネイルのアクティブスタイル */
}
.thumbnail .swiper-slide img {
	width:auto !important;
	height:90% !important;
	object-fit: contain;
	max-width: 100%;
    max-height: 100%;
}
.thumbnail .illustration_box_warp_img_mask {
	overflow: hidden !important;
}
.thumbnail .illustration_box_warp_img_mask img{
    top: 56%;
    left: 50%;
    transform: translateX(-50%) scale(2.2);
}
.zoom-btn {
    position: relative;
	position:absolute;
    z-index: 100;
    cursor: pointer;
	right:0;
	top:4vw;
	width:30%;
	background-color: transparent !important;
	-webkit-tap-highlight-color: transparent;
}
.illustration_box_warp_text {
    width: 75%; 
	margin:2% auto 0;
    max-width: none; 
	display: block; 
	font-size: 0.6em;
	text-shadow: 
			1.5px 1.5px 0 #ffffff,
			-1.5px 1.5px 0 #ffffff,
			1.5px -1.5px 0 #ffffff,
			-1.5px -1.5px 0 #ffffff,
			1.5px 0 0 #ffffff,
			-1.5px 0 0 #ffffff,
			0 1.5px 0 #ffffff,
			0 -1.5px 0 #ffffff;
}
@media only screen and (max-width: 768px) {
.creatorall_column {
    flex-direction: column;
}
.illustration_box {
    height: 100%;
    width: 100%;
}
.bg-text {
    font-size: 30vw;
}
.illustration_box_warp {
   padding-top: 12vw;
}
.illustration_box_warp_img {
    height: 85vw;
    margin: auto 7vw auto 7vw;
}
.illustration_box_warp_img_mask img {
        top: 60%;
        transform: translateX(-50%) scale(1.9);
}
.slider .swiper-button-prev, .slider .swiper-button-next {
    width: clamp(40px, 3.5rem, 100px) !important;
    height: clamp(40px, 3.5rem, 100px) !important;
}
.slider .swiper-button-next {
    right: -5% !important;
}
.slider .swiper-button-prev {
    left: -5% !important;
}
.slide-title {
    font-size: clamp(14px, 4.5vw, 30px);
	letter-spacing: 0.3em;
	line-height: 7vw;
}
.swiper-container.thumbnail {
    width: 90%;
    margin: 4vw auto 0;
}
.thumbnail .swiper-slide {
    width: 12% !important;
}
.chara {
    bottom: 11%;
}
a.slidebtn {
	margin-bottom:0.5em;
}
.illustration_box_warp_text {
    font-size: 0.6em;
    text-align: center;
}
.slider .slide_item_g img {
	width: 100% !important;
	height: 65vw !important;
}
.slider .slide_item_s img {
	width: 100% !important;
	height: 70vw !important;
}
a.slidebtn {
    width: 40vw;;
}
}
@media only screen and (max-width: 500px) {
.bg-text {
    font-size: 32vw;
	color: rgb(255 255 255 / 20%);
}
.slider .swiper-button-prev, .slider .swiper-button-next {
    width: clamp(40px, 3rem, 100px) !important;
    height: clamp(40px, 3rem, 100px) !important;
}
.slide-title {
	line-height: 8vw;
}
.illustration_box_warp {
   padding-top: 19vw;
}
.illustration_box_warp_img_mask img {
   top: 51%;
   transform: translateX(-50%) scale(1.8);
}
.swiper-container.thumbnail {
    margin: 6vw auto 0;
}
.swiper-container.slider {
    clip-path: inset(-500px -17% -3.4% -500px);
}
}


/* ===================プロフィール=================== */
.profile_box {
	width:33vw;
	margin: 4% 8% 1% 6%;
	right: 0;
    top: 0;
}
.profile_data {
	border-bottom:1px solid #ff4d78;
	padding : 1.5rem 0;
}
.profile_data:last-child {
    border-bottom: none;
}
.profile_data dl {
	display:flex;
	font-size: 0.9rem;
	padding :3px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
.profile_data dt {
	width:20%;
	margin-top:2px;
	overflow: visible;
	display: flex;
    align-items: flex-start;
}
.profile_data dt img {
/* 1. サイズの固定 */
    width: 100%; 
    aspect-ratio: 1 / 1; 
    border-radius: 50%; 
    object-fit: cover;
    display: block;
    vertical-align: middle;
	border:solid 2px #d4a846;
}
.profile_data dd {
	width: 78%;
	padding-left:1%;
	font-weight:600;
	font-size: 0.9rem;
	line-height:1.6em;
}
.creator_name {
	font-size:3.2vw;
	font-weight:900;
	letter-spacing:0.09em;
	line-height: 1.2em;
}
.creator_name span {
	font-size:2vw;
}
.creator_name.sakuhin_title {
	font-size:0.9rem;
	line-height:1.2rem;
}
.creator_name.sakuhin_title span {
	font-size:0.9rem;
	display:block;
	font-weight:400;
	padding-top:0.5%;
}
.sns_account {
}
.sns_account img {
	display:inline-block;
	width:6%;
	padding-bottom:2%;
}
.profile_data a.button_a {
	width:100%;
	height auto;
}
.profile_data .button_warp {
    margin: 0.4rem auto 1rem;
}
.profile_data .button_b {
	background: linear-gradient(90deg, rgb(255 121 174), rgb(255 48 121) 50%, rgba(255 121 174));
	border-radius: 10px;
	border: solid 2px #d4a846;
}
.profile_data a.button_b_layer span::before {
    background-image: linear-gradient(23deg, rgb(255 242 158), rgba(255, 246, 216, 1));
}
.profile_data img.btn_illustration {
	display:block;
	width:80%;
	text-align:center;
	margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
.profile_data dd {
	font-size: 1.05vw;
}
a.button_b_layer {
	font-size: 1.5vw;
}
}
@media only screen and (max-width: 1024px) {
.profile_box {
    width: 36vw;
}
}
@media only screen and (max-width: 768px) {
.profile_box {
	position: static;
	width: 90%;
	margin: 2em auto;
}
.creator_name {
    font-size: 8.2vw;
}
.creator_name span {
    font-size: 5vw;
}
.profile_data dd {
    width: 78%;
    padding-left: 1%;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2.3rem;
}
a.button_b_layer {
    padding: .9em 1.7em .9em 1.7em;
    font-size: 4vw;
	width: 90%;
}
.profile_data a.button_a {
    width: 85%;
}
.profile_data img.btn_illustration {
    width: 70%;
}
}
@media only screen and (max-width: 500px) {
.profile_box {
	margin: 1em auto;
}
.profile_data dd {
	width: 80%;
    padding-left: 5%;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4rem;
}
.profile_data a.button_a {
    width: 100%;
}
.profile_data img.btn_illustration {
    width: 91%;
}
a.button_b_layer {
    font-size: 4.5vw;
}
}



/* ===================ラベルタグ=================== */
.event-label-container {
    width:100%;
	height:auto;
	margin: 0% auto 3%;
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
}
.label {
	padding: 0.3vw 8px 0.3vw;
    border-radius: 5px;
    color: #fff;
	font-size: 0.9vw;
    margin-right: 1%;
	margin-bottom:1%;
	font-weight:800;
	display: inline-block;
	line-height: 1em !important;
	vertical-align: middle;
}
/* 種類別の色 */
.label-exhibition { background-color: #7fb2ff } 
.label-signing { background-color: #ff94c6; } 
.label-stage { background-color: #ffa25c; } 
.label-goods { background-color: #c3a5f7; } 
.label-cafe { background-color: #ffda00; } 
@media only screen and (max-width: 768px) {
.event-label-container {
	margin: 0% auto 3% !important;
}
.label {
    font-size: 2.6vw;
	line-height: 1.8em !important;
}
}




.profile_ebc_warp {
	width:100%;
	height:auto;
	padding:5% 2% 4%;
}
.sakuhinbox {
	margin-bottom:3%;
}
.sakuhin_lineup .contents_m {
	width:100%;
	text-align:center;
	margin:0 auto;
	padding-bottom:3.5%;
}
.sakuhin_lineup .contents_m img {
	height:5vw;
}
.sakuhin_lineup {
  position: relative;
  background-color: #eff5f9;
	overflow: hidden;
    z-index: 0;
}
.sakuhin_lineup::before,
.sakuhin_lineup::after {
	content: "";
	position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #fff9d4, #ffc0cb);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
z-index :-1;
}
.sakuhin_lineup::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.sakuhin_lineup::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.sakuhin_warp {
	display:flex;
	width:70%;
	margin:0 auto;
	justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
	max-width:1200px;
}
.shoei {
	width: 18vw;
	flex-shrink: 0;
	max-width:350px;
}
.sakuhin_text {
    width: auto;
    padding-left: 3em;
	flex-grow: 1;
}
.profile_sakuhin_title {
	font-size:2.2vw;
	font-weight: 900 !important;
    line-height: 1.2em;
}
.profile_sakuhin_label {
	font-size:1rem;	
	margin-top:1.5%;
}
.sakuhin_story {
	width:100%;
	margin-top:3%;
	font-size: 0.9rem;
}
.sakuhin_story p {
     line-height: 1.5em;
}
.accent {
	background-color:#c1e9ff;
	display:inline;
	padding : 0px 3px;
	font-weight: 600 !important;
	color:#af4154;
	box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
    line-height: 1.6em;
	letter-spacing:0.09em;
}
.shoei_img_box {
	position:relative;
	display: inline-block;
	width:100%	
}
img.shoei_img {
	border:solid 1px #333;
	display:block;
	width:100%
}
.amtbs_btn {
	position:absolute;
	display:block;
	bottom:-11%;
	right:-12%;
	width: 10vw;
	height:auto;
	filter: drop-shadow(8px 8px 0px #ccc);
}
.sakuhin_lineup a.button_a {
	height auto;
	width:100%;
	background-image: none !important;
	background-color:#fff;
	border-radius: 10px;
	border: solid 3.3px #af4154;
	color:#af4154;
}
.sakuhin_lineup.sakuhinbox a.button_a {
	background-color: #fff !important;
}
.sakuhin_lineup.stagebox a.button_a {
	background-color: #fff !important;
}
.sakuhin_lineup .button_warp {
    margin: 2rem auto 1rem 0;
	width:80%;
}
.sakuhin_lineup a.button_b_layer {
    overflow:visible;
	font-size: 1.3rem;
	box-shadow: 0 4px 0 #af4154;
	margin: 0 auto 2% auto;
}
.sakuhin_lineup a.button_b_layer::after {
content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: 1em !important;
    width: 2.8rem !important;
    height: 2.8rem !important;
    transform: translateY(-50%) !important;
    /* 画像設定 */
    background-image: url('https://boyslove.tokyo/wp-content/uploads/image/creatorpage/zoomicon.webp') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    /* 解除設定 */
    background-color: transparent !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    /* その他 */
    display: block !important;
    transition: transform .3s;
}
.sakuhin_lineup a.button_b_layer:hover::after {
   transform: translateY(-50%) scale(1.2) !important;
}
.sakuhin_lineup a.button_b_layer span::before {
   background-image: none !important;
	background-color:#af4154 !important;
}
.sakuhin_lineup img.btn_illustration {
	display:block;
	width:65%;
	text-align:center;
	margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
.sakuhin_story {
	font-size: 1vw;
}
}
@media only screen and (max-width: 768px) {
.sakuhin_warp {
    width: 90%;
    justify-content: space-around;
    flex-direction: column;
    flex-wrap: nowrap;
}
.profile_ebc_warp {
    padding: 10% 2% 8%;
}
.sakuhin_lineup::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 50% 0, 0 50%);
}
.sakuhin_lineup::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 50%, 50% 100%, 100% 100%);
}
.shoei {
    width: 100%;
    margin: 0 auto;
}
.sakuhin_text {
    width: 100%;
    margin-top: 5vw;
    padding-left: 0;
}
.sakuhin_story {
    font-size: 1.5rem;
    line-height: 2.3rem;
}
.profile_sakuhin_title {
    font-size: 5.7vw;
    line-height: 1.2em;
}
.sakuhin_lineup .contents_m img {
    height:10vw;
}
.shoei {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.shoei_img_box {
    width: auto;	
}
img.shoei_img {
	width: 50vw !important;
	height: auto;
	max-width: 500px !important;
	display: block;
	text-align: center;
	margin: 0 auto;;
}
.amtbs_btn {
    bottom: -4%;
    right: -23%;
    width: 25vw;
}
.sakuhin_lineup a.button_b_layer {
   font-size: 3.4vw;
}
.sakuhin_lineup .button_warp {
    margin: 2rem auto 1rem auto;
    width: 100%;
}
.sakuhin_lineup img.btn_illustration {
    width: 80%;
}
}
@media only screen and (max-width: 500px) {
.profile_sakuhin_title {
    font-size: 5.7vw;
    line-height: 1.3em;
}
.sakuhin_text {
    width: 100%;
    margin-top: 6vw;
}
.profile_sakuhin_label {
  	font-size: clamp(10px, 3vw, 12px);
    line-height: 1rem;
}
.sakuhin_story {
    font-size: 0.9rem;
    line-height: 1.4rem;
}
.sakuhin_lineup img.btn_illustration {
    width: 90%;
}
}






.stagebox.sakuhin_lineup::before,
.stagebox.sakuhin_lineup::after {
  background: linear-gradient(135deg, #fcffa8, #dcffc1);
}
@media only screen and (max-width: 768px) {

}