@charset "utf-8";

:root {
    --main-color: #ffffff;
    --sub-color: #A60100;
    --accent-color: #;
    --pale-text-color: #5F3C13aa;
    --normal-text-color: #fff;
    --hb-back-color: #C20000;
    --back-gradient-color: linear-gradient(#A60000, #C20000);
}

/* 固定ページ基本ここから */
.page-body,
.single-body {
    background-color: var(--main-color);
}

h2,
h3,
h4 {
    color: var(--hb-back-color);
}

p {
    color: #333;
}

a {
    color: var(--hb-back-color);
}

h2 {
    border-bottom: 1px solid var(--hb-back-color);
}

.archive-content h2 {
    color: var(--normal-text-color);
    border-bottom: 1px solid var(--normal-text-color);
}

h2::after {
    background: var(--hb-back-color);
}

.archive-content h2::after {
    background: var(--normal-text-color);
}

h4 {
    font-size: .8125rem;
    border-left: solid 3px;
    padding-left: .625rem;
    margin: 3rem 0 .9375rem;
    font-weight: bold;
    color: #333;
}

ol {
    padding-left: 1.5rem;
}

.footer a,
.footer p {
    color: var(--normal-text-color);
}

#footer {
    top: 0;
}

.mt-20 {
    margin-top: 1.25rem;
}

.mt-25 {
    margin-top: 1.5625rem;
}

.mt-30 {
    margin-top: 1.875rem;
}

/* 固定ページ基本ここまで */

/* セクションここから */
section {
    padding: 0;
}

section:first-of-type {
    padding-top: 6.25rem;
}

/* セクションここまで */

/* companyここから */
.company .pTitle img {
    display: block;
    margin: 0 auto;
    width: 40%;
    max-width: 10rem;
}

.company--con .map {
    filter: grayscale(100%);
    margin-top: 1.875rem;
}

/* companyここまで */

/* artistここから */
.artist--con--list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 1px 0 0 1px;
}

.artist--con--list a.artist--con--list--item {
    width: calc(50% - 1.875rem - 1px);
    padding: 1rem;
    color: var(--hb-back-color);
    padding: .9375rem;
    border: solid 1px;
    margin-top: -1px;
    margin-left: -1px;
    position: relative;
    display: flex;
    transition: 0.48s;
    align-items: center;
    font-size: .8125rem;
}

.artist--con--list a.artist--con--list--item:after {
    content: "";
    position: absolute;
    background: url(../img/arrow3.svg) no-repeat;
    background-size: contain;
    top: 50%;
    right: .3rem;
    width: .5rem;
    height: .8rem;
    transform: translate(0, -50%);
}

.tglbtn {
    position: relative;
}

.title.tglbtn button {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
    width: 100%;
    background-color: var(--main-color);
    text-align-last: left;
    border: solid 1px #8a8a8a;
    padding: 15px;
    line-height: 1;
    display: block;
    position: relative;
    font-weight: bold;
}

.tglbtn button:before,
.tglbtn button:after {
    content: "";
    display: block;
    height: 2px;
    right: .3rem;
    top: 50%;
    width: .875rem;
    transition: 0.4s;
    position: absolute;
    background-color: #333;
    z-index: 1;
}

.tglbtn button:after {
    transform: rotate(90deg);
}

.tglbtn .active-other:after {
    transform: rotate(180deg);
    opacity: 0;
    transition: 0.3s;
}

.artist-toggle-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /* はみ出し要素を隠す */
    max-height: 0;
    /* 高さを０に */
    opacity: 0;
    /* 透明に */
    transition:
        max-height 0.3s ease,
        opacity 0.1s ease;
}

/* ▼ show クラスで「高さを十分に開放」「不透明に」 */
.artist-toggle-list.show {
    max-height: none;
    opacity: 1;
    transition: 0.3s;
}

/* OTHER ARTIST ボタンを押せるように */
.tglbtn button {
    cursor: pointer;
}

/* artistここまで */

/* recruitここから */
.title.headline.red {
    color: var(--hb-back-color);
    border-left: solid 1px var(--hb-back-color);
}

.title.headline {
    border-left: solid 1px;
    padding: .5rem 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.5;
}

.title.line {
    border: solid 1px;
    padding: .5rem 1.25rem;
    margin: 0;
    margin-bottom: 1.25rem;
    font-weight: bold;
    font-size: 1rem;
}

ul.list {
    counter-reset: my-counter;
}

ul.list li {
    position: relative;
    padding-left: 1.875rem;
    font-size: .8125rem;
}

ul.list li+li {
    margin-top: .625rem;
}

ul.num li:before {
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: #333;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22px;
    width: 22px;
    color: #ffffff;
    font-size: 85%;
}

ul.kome li:before {
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "※";
    line-height: 1.5;
}

/* recruitここまで */

/* LATEST NEWS一覧ここから */
.archive-content a {
    color: var(--main-color);
}

.m-radio_sel {
    padding: 11px 20px 5px;
}

.m-topic02 {
    background-color: #f2f2f2;
    margin: 2rem 0;
}

.m-radio-input+label {
    position: relative;
    font-weight: 700;
    display: inline-block;
    min-width: 43px;
    padding-bottom: 8px;
    padding-left: 20px;
    margin-right: 15px;
    font-size: 1.4rem;
}

.m-radio-input+label:before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
}

.m-radio-input:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: -1px;
    width: 16px;
    height: 15px;
    background: var(--main-color);
    border-radius: 50%;
    margin: 1px;
}

.m-radio-input {
    display: none;
}

.nav-links {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.nav-links a,
.nav-links>span {
    border: solid 1px var(--normal-text-color);
    padding: 0.3rem;
    display: block;
    width: 1rem;
    height: 1rem;
    font-size: .7rem;
    text-align: center;
    border-radius: 5rem;
}

.nav-links .dots {
    border: none;
    color: var(--normal-text-color);
}

.current {
    color: var(--hb-back-color);
    background-color: var(--main-color);
}

.prev,
.next {
    font-weight: 900;
}

/* LATEST NEWS一覧ここまで */

/* LATEST NEWS詳細ここから */
.single-body section:first-of-type {
    margin: 0 auto;
}
.single-body p {
    width: 100%;
    margin: 0.5rem 0;
}
.single-content a {
    text-decoration: underline;
}
.single-body .news-content {
    padding-left: 0;
    padding-right: 0;
}

.single-thum {
    margin: 0 auto;
}

.single-thum img {
    vertical-align: middle;
    height: auto;
}

.single-body .single-top {
    margin: .5rem auto;
}

.single-body .single-top h3 {
    color: #333;
}

.single-body .date {
    margin: 0 auto .5rem;
}

.post__pagination {
    display: flex;
    justify-content: center;
    gap: 25%;
    margin: 2rem 0 0;
}

.single-body .post__pagination__left,
.single-body .post__pagination__right {
    width: fit-content;
    display: flex;
    justify-content: center;
}

.post__pagination a {
    border: solid 1px var(--hb-back-color);
    font-size: .7rem;
    padding: .3rem .7rem;
    text-decoration: none;
}

/* LATEST NEWS詳細ここまで */

/* prtvacy-policyここから */
.tac {
    text-align: center;
    margin: 1rem;
}

.tar {
    text-align: right;
}

ul.numdefault li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(my-counter) ".";
    counter-increment: my-counter;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.8;
}

/* prtvacy-policyここから */

/* タブレットここから */
@media (min-width:749px) {

    /* セクションここから */

    .s-max1200 {
        max-width: 1200px;
        margin: 0 auto;
    }

    .s-max1000 {
        max-width: 1000px;
        margin: 0 auto;
    }

    .s-max750 {
        max-width: 750px;
        margin: 0 auto;
    }

    /* セクションここまで */

    /* LATEST NEWS詳細ここから */
    .post__pagination a {
        font-size: .8125rem;
        padding: .5rem 1rem;
    }

    /* LATEST NEWS詳細ここまで */

}

/* タブレットここまで */


/* pcここから */
@media (min-width:860px) {

    /* PC固定ページ基本ここから */
    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
    }

    .p-wrap {
        max-width: 1280px;
        width: calc(100% - 6.25rem);
        margin: 0 auto;
        padding-top: 3.75rem;
        display: flex;
        justify-content: space-between;

    }

    /* PC固定ページ基本ここまで */

    /* セクションここから */
    section {
        padding: 6.25rem 0;
    }

    section:first-of-type {
        margin: 0;
    }

    .pTitle {
        width: 25%;
        margin: 0;
    }

    .pCont {
        width: 65%;
        margin: 0;
    }

    /* セクションここまで */

    /* companyここから */

    .company .pCont {
        /* width: 60%; */
        margin: 0;
    }

    .company .pTitle img {
        display: block;
        margin: 0 auto;
        width: 50%;
        max-width: 10rem;
    }

    /* companyここまで */
    /* artistここから */
    .artist--con--list a.artist--con--list--item {
        width: 30.2%;
        padding: 1.25rem .625rem;
    }

    /* artistここまで */

    /* recruitここから */
    .title.headline {
        font-size: 1.375rem;
        line-height: 1.5;
    }

    .title.line {
        font-size: 1.125rem;
    }

    ul.list li {
        font-size: 1rem;
    }

    /* recruitここまで */

    /* コーポレートニュース一覧ここから */
    .archive-content section:first-of-type {
        margin: 0 auto;
    }

    .m-radio_sel {
        padding: 20px 0;
    }

    .m-radio {
        text-align: center;
    }

    .m-radio-input+label {
        padding-bottom: 0;
    }

    .news-content .ttl {
        padding-top: .8rem;
    }

    /* コーポレートニュース一覧ここまで */

    /* LATEST NEWS詳細ここから */
.post__pagination {
    margin: 8rem 0 0;
}

    /* LATEST NEWS詳細ここまで */
}

/* pcここまで */

/* テーブルここから */
table {
    border-spacing: 0;
    width: 100%;
    /* padding-left: .625rem;
    padding-right: .625rem; */
}

table tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: #333 dotted 1px;
    padding: .75rem 0;
    justify-content: space-between;
}

table th,
table td {
    font-size: .8125rem;
    line-height: 1.5;
    color: #333;
}

table td a {
    color: #333;
}

table th {
    text-align: left;
    width: 100%;
}

table td {
    width: 100%;
}


@media (min-width:860px) {
    table {
        border-spacing: 0;
        width: 100%;
        padding: 0;
    }

    tbody {
        width: 100%;
    }

    table tr {
        flex-wrap: nowrap;
        /* border-bottom: var(--accent-color) solid 1px; */
        /* padding: 1rem 0;
        gap: 5%; */
        width: 100%;
    }

    table th,
    table td {
        font-size: 1rem;
    }

    table th {
        text-align: left;
        width: 12rem;
        margin-bottom: 0;
        border-right: none;
    }

    table td {
        width: calc(100% - 1-rem);
    }
}

/* テーブルここまで */