@charset "UTF-8";
/* H2直下イラスト 1000*800 */
.top-illust::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}
.top-illust {
    position: relative;
    margin-bottom: 20px;
}
/* 基本情報ul */
ul.chara_info {
    padding: 5px 10px 5px 10px;
    margin: 10px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 3px solid #c8c9cf;
    border-radius: 10px;
    overflow: hidden;
    font-weight: bold;
}
ul.chara_info img {
    width: 30px;
    height: auto;
    margin-right: 3px;
    display: inline-block;
}
.chara_info li:nth-child(n) {
    border-right: 2px dashed #c8c9cf;
    border-bottom: 2px solid #c8c9cf;
    padding: 5px 0px;
    text-align: center;
}
.chara_info li:nth-last-child(-n+2) {
    border-bottom: none;
}
.chara_info li:nth-child(2n) {
    border-right: none;
}
/* スキル,覚醒 */
.skill_tag {
    font-weight: bold;
    padding: 3px 6px;
    border-radius: .25rem;
    border: 2px solid #ccc;
    width: fit-content;
    background: #fff;
}
.skill_container {
    /*  border-radius: 4px;  */
    padding: 15px 10px 4px;
    border: 2px solid #ccc;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    background: rgb(248, 248, 249);
}
.skill_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border-bottom: 2px solid #ccc;
    /* padding-bottom: 10px; */
}
.skill_img {
    line-height: 1;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    background-color: #333;
    /*  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);  */
}
.skill_name {
    font-weight: bold;
    color: #64748b;
}
.skill_text {
    border-radius: 4px;
    padding: 15px 10px 10px;
    margin: 16px 0;
    border: 2px solid #ccc;
    position: relative;
    background: #fff;
    /*    box-shadow: rgb(60 52 43 / 16%) 0px 2px 4px; */  
}
.skill_info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}
.lv::before, .buff-effect::before {
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
    color: #475569;
    background: #f8fafc;
    border-radius: .25rem;
    border: 1px solid #ccc;
    position: absolute;
    top: 0;
    left: 1%;
    transform: translateY(-50%);
    content: attr(data-skill-lv);
}
.buff-effect::before { content: "保有効果"; }
/* 状態異常など特殊効果の詳細 */
.sp-container {
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.sp-name {
    color: #475569;
    font-weight: bold;
    text-decoration: underline;
    margin-right: 7px;
    float: left;
}
.buff-effect .sp-container:last-child {
    margin-bottom: 0;
}

/* 神使　ステータス */
.grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 10px 10px;
    margin: 20px 0;
    background: #fff;
    border: 2px solid #ccc;
}
.bar-container {
    display: flex;
    font-weight: bold;
}
.label {
    width: calc(100% / 2);
    font-weight: bold;
    color: #475569;
}
.level-area {
    font-weight: bold;
    padding: 0 10px;
    color: #475569;
    background: #f8fafc;
    border-radius: .25rem;
    border: 1px solid #ccc;
    position: absolute;
    left: 5px;
    transform: translateY(-50%);
}