@charset "UTF-8";



/* ===================================
archiveとsingle共通項目
 =================================== */


 /* サイドバー */
summary {
  display: block;
}

/* summaryのデフォルトのマーカーを消す */
summary::-webkit-details-marker {
  display: none;
}
/* ホバー時のカーソル変更（hoverが有効な環境のみ適用） */
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.js-content{
  overflow:hidden;
  will-change:height;          /* ③ パフォーマンス対策 */
  padding-top:9px;             /* 既存のレイアウト用 */
}


/* その他 見栄えを整えるためのもの */
.news-sidebar__item {
    border-bottom: 1px solid #707070;
    padding: 15px 15px 15px 15px;
}
.item {

}
.content {
    padding-top: 9px;
}


.news-sidebar__item-title {
    display: block;
    position: relative;
}

/* プラスとマイナスの線 */
.news-sidebar__item-title::before,
.news-sidebar__item-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    background: #707070;
    border-radius: 999px;
    transition: transform 0.3s ease-in-out;
}
/* 横線 */
.news-sidebar__item-title::before {
    width: 13px;
    height: 1px;
    transform: translateY(-50%) rotate(0deg); /* 初期状態 */
}
/* 縦線 */
.news-sidebar__item-title::after {
    width: 1px;
    height: 13px;
    right: 12px;
    transform: translateY(-50%) rotate(0deg); /* 初期状態 */
}

/* details[open] の時、縦線を90度回転して横線にする */
details[open] .news-sidebar__item-title::before {
    transform: translateY(-50%) rotate(180deg);
}
details[open] .news-sidebar__item-title::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
}

.news-sidebar__item-title span {
    font-size: 20px;
    font-weight: 500;
}

.news-sidebar__item-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 15px 15px;
}

.news-sidebar__item-list li a {
    display: block;
}

/* ===================================
archive-news
=================================== */
.archiveNews__anker-link {

}
.archiveNews__anker-link a {
    display: block;
    width: 100%;
    font-size: inherit;
    font-weight: bold;
    padding: 11px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px #707070 solid;
    color: inherit;
    text-align: center;
}
.archiveNews__anker-link a span {
    position: relative;
    padding-right: 30px;
}
.archiveNews__anker-link a span::after  {
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    background: url(../../img/arrow-right_b.svg) no-repeat center center / contain;
    width: 12px;
    height: 14px;
}

.archiveNews__lineUp {
    margin-top: 128px;
    margin-bottom: 110px;
}
.archiveNews__lineUp .talent-list {
    margin-top: 57px;
}
.archiveNews__lineUp-title {
    display: flex;
    align-items: center;
    gap: 20px;
}
.archiveNews__lineUp-title h2 {
    font-size: 40px;
}
.archiveNews__lineUp-title p {
    font-size: 16px;
}



/* ===================================
single-news
=================================== */
.singleNews-article {
    padding: 24px 30px 43px;
    border: 1px #707070 solid;
    box-shadow: 0 0 20px rgba(74, 67, 67, 0.2);
    border-radius: 18px;
}
.singleNews-article__head {
    display: flex;
    gap: 28px;
}
.singleNews-article__contents {
    margin-top: 34px;
}

.singleNews-article__contents p {
    margin-top: 30px;
}

/* strong（太字） */
.singleNews-article__contents strong {
    font-weight: bold;
    color: #222; /* 必要に応じて色指定 */
}

/* aタグ（リンク） */
.singleNews-article__contents a {
    color: #1D32DE;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}
.singleNews-article__contents a strong {
    color: inherit;
}

.singleNews-article__contents a:hover {
    opacity: 0.7;
}

/* 段落内のリンクにも対応（文章中のリンク） */
.singleNews-article__contents p a {
    color: #1D32DE;
    text-decoration: none;
}

/* ul / ol（リスト） */
.singleNews-article__contents ul,
.singleNews-article__contents ol {
    margin-top: 30px;
    padding-left: 20px;
}

.singleNews-article__contents ul {
    list-style: disc;
}

.singleNews-article__contents img {
    max-width: 100%;
    height: auto;
    display: block;
}
.singleNews-article__contents img[width] {
    width: auto !important;
}

.singleNews-article__contents iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* 自動で比率維持 */
    display: block;
}



/* PEOFILE */

.singleNews-article__profile {
    margin-top: 118px;
}

.singleNews-article__profile-title {
    font-weight: 500;
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 12px;
}
.singleNews-article__profile-title .en {
    font-size: 28px;
}
.singleNews-article__profile-title .ja {
    font-size: 18px;
}

.talent-info {
    margin-top: 18px;
    display: flex;
    gap: 47px;
}
.talent-info .is04_l_l {
    /* width: 180px; */
    width: 24.93%;
    flex-shrink: 0;
}
.talent-info .is04_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
}
.talent-info .is04_l_r {
    width: calc(100% - 24.93%);
}
.talent-info__link {
    margin-top: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px 10px;
    flex-wrap: wrap;
}
.talent-info .is04_sns {
    justify-content: start;
}
.talent-info .is04_va {
    position: static;
}

/* NEWS LISTボタン */

.singleNews__bottom {
    margin-top: 70px;
    margin-bottom: 150px;
}
.singleNews__bottom .is03_va {
    margin-top: 0;
}
