@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Katibeh&display=swap');
/* CSS Document */

body {
  background:none;
	overflow: hidden;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
.bg-dia {
    width: 100%;
    background: url('../character/bg_dia.png');
    background-size: auto;
    background-repeat: repeat;
    animation: scrollPattern 30s linear infinite;
}
@keyframes scrollPattern {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 100%;
    }
}
header {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
}
.character-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}
.font-en {
    font-family: 'Katibeh', cursive;
    font-weight: 300;
    line-height: 1;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 1), 2px 2px 0px rgba(160, 79, 0, 1);
}
/*-------------------------------------------
キャラクター立ち絵エリア
-------------------------------------------*/
.character-visual {
    position: relative;
    width: 60%;
    /* transform: scale(1.3);*/
    transform-origin: top;
}
.character-word {
    position: absolute;
    top: 0px;
    max-width: 100%;
    z-index: 2;
}
.character-word img {
    max-width: 100%;
}
.character-tachie {
    position: relative;
}
.character-tachie div {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}
/* キャラ立ち絵分の高さを確保 */
.character-tachie .tachie-bg {
    position: relative;
    opacity: 1;
    z-index: 0;
}
.character-tachie .fadein {
    transition: 1s;
    opacity: 1;
}
.character-tachie img {
    max-width: 100%;
    height: auto;
	margin-bottom: 50px;
}
/*-------------------------------------------
キャラクタープロフィール
-------------------------------------------*/
.character-profile {
    width: 40%;
    position: relative;
    z-index: 5;
    left: -40px;
	margin-top:50px;
}

/* キャラ名英字 */
.character-name span {
    display: block;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: -10px;
    letter-spacing: 2px;
    font-size: 25px;
}
.character-name {
    line-height: 1.4;
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: 400;
    font-size: 80px;
}
.name_big{
	text-shadow: 2px 2px 0px rgba(255, 255, 255, 1), 4px 4px 0px rgba(160, 79, 0, 1);
}

.character-subname .subname-title::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: var(--text-color);
    margin: 0 8px;
    vertical-align: middle;
}
.line {
    margin: 20px 0px;
	position:relative;
}
.character-sd{
margin-top:10px;
	animation: jump 3s infinite ease-in-out;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.character-cv h3 {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 1;
    background: #D9AD62;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    margin-right: 5px;
    font-size: 20px;
    vertical-align: middle;
    letter-spacing: 1.5px;
    padding: 2px 0px 0px 2px;
}
.character-cv {
    font-weight: 500;
    font-size: 25px;
    vertical-align: middle;
}
.character-voice ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}
.character-voice  ul li {
    position: relative;
    height: auto;
    margin: 10px 10px 0px 0px;
}
.character-costume {
    margin-bottom: 15px;
}
.character-costume ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.character-costume ul li {
    position: relative;
    height: auto;
    margin: 10px 10px 0px 0px;
}
.character-costume ul li img {
    max-width: 100%;
    height: auto;
}
.character-costume .newmark {
    top: -2px;
    left: -2px;
}
.character-costume ul li .btnOn {
    position: absolute;
    top: 0;
    left: 0;
}
.character-costume .btnOn {
    opacity: 0;
    cursor: pointer;
}
.character-costume .btnNow {
    opacity: 1;
    cursor: default;
    mix-blend-mode: Multiply;
}
.character-costume p {
    color: var(--accentColor);
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    margin-top: 64px;
    line-height: 1.3;
}
.character-profile p {
    margin-bottom: 20px;
}
/*-------------------------------------------
スマホ時（900px以下）
-------------------------------------------*/
@media (max-width: 900px) {
    body {
        padding: 0px 20px
    }
    .character-content {
        flex-direction: column;
        text-align: center;
        transform: none; /* スマホ時は縮小解除 */
    }
    .content-title {
        margin-left: auto;
        margin-right: auto;
    }
    .character-visual {
        width: 100%;
    }
    .character-costume {
        position: absolute;
        top: 20px;
        right: 0;
        z-index: 2;
    }
    .character-costume ul {
        display: flex;
        flex-direction: column; /* 縦に並べる */
        align-items: center; /* 中央揃え（必要なら） */
        gap: 0px; /* 要素の間に余白（オプション） */
      
    }
	
    .character-costume ul li {
        width: 60px;
        height: 60px;
    
        margin: 10px 0px 0px 0px;
    }
    .character-costume li img {
        width: 100%;
    }
	.character-catch {
  margin:0 auto;
    max-width: 450px; 
    min-width: 200px; 
}
/*-------------------------------------------
キャラクタープロフィール
-------------------------------------------*/
.character-word {
  transform: scale(1.1);
}
    .character-name {
        font-size: 70px;
    }
    .character-name span {
        font-size: 20px;
        margin-bottom: -10px;
    }
    .character-profile {
        width: 100%;
        font-size: 16px;
        left: 0px;
        text-align: center;
    }
    .character-profile ul {
        display: flex;
        justify-content: center;
    }
}

.character-text{
	margin-top: 20px;
	margin-bottom: 50px;
	padding: 2px 20px 2px 20px;
	background-color: rgba(255,255,255,0.4);
	border-radius:20px;
}