@charset "utf-8";

/* general start */
*,

::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

body {
    color: #000000;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

body {
    background-image: url(/images/body/back_gold_light.jpg);
    background-position: center;
    background-repeat: repeat-y;
    background-size: auto;
}

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

h1 {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
}

h2 {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
}

img {
    max-width: 100%;
}

a {
    color: #1558d6;
    text-decoration: none;
}

a:hover {
    text-decoration-line: underline;
}

.menu-wrapper {
    display: none;
}

.inline-img {
    vertical-align: bottom;
}


/* general end */

/* header start */

.header {
    position: relative;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* header center start */

.header-center {
    display: grid;
    width: 273px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 104px 169px;
    grid-template-rows: 42px 26px 56px;
}

.header-katto-image {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: block;
    width: 100px;
}

.header-guitartainment {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-left: 2;
}

.header-katto-logo {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* header center end */

/* nav-pc start */

.nav-pc-base {
    max-width: 1024px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 6px;
    align-items: center;
    background-color: #E3007F;
    position: relative;
    z-index: 99;
}

.nav-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    height: 40px;
    margin-top: 6px;
    margin-left: 6%;
    margin-right: 5.5%;
    margin-bottom: 6px;
}

.nav-pc-title {
    height: 24px;
    margin-top: auto;
    margin-bottom: auto;
}

.nav-pc-list {
    height: 23px;
    margin-top: auto;
    margin-bottom: auto;
}

.nav-pc-list ul {
    display: flex;
}

.nav-pc-list ul li {
    margin-left: 6px;
}

.nav-pc-index-current {
    width: 65px;
    height: 23px;
    background: url(/images/header/home_clt.svg);
}

.nav-pc-index {
    width: 65px;
    height: 23px;
    background: url(/images/header/home.svg);
}

.nav-pc-index:hover {
    background: url(/images/header/home_clt.svg);
}

.nav-pc-profile-current {
    width: 86px;
    height: 23px;
    background: url(/images/header/profile_clt.svg);
}

.nav-pc-profile {
    width: 86px;
    height: 23px;
    background: url(/images/header/profile.svg);
}

.nav-pc-profile:hover {
    background: url(/images/header/profile_clt.svg);
}

.nav-pc-live-current {
    width: 52px;
    height: 23px;
    background: url(/images/header/live_clt.svg);
}

.nav-pc-live {
    width: 52px;
    height: 23px;
    background: url(/images/header/live.svg);
}

.nav-pc-live:hover {
    background: url(/images/header/live_clt.svg);
}

.nav-pc-radio-current {
    width: 69px;
    height: 23px;
    background: url(/images/header/radio_clt.svg);
}

.nav-pc-radio {
    width: 69px;
    height: 23px;
    background: url(/images/header/radio.svg);
}

.nav-pc-radio:hover {
    background: url(/images/header/radio_clt.svg);
}


/* nav-pc end */

/* header-sns start */

.header-sns {
    position: absolute;
    top: -28px;
    left: auto;
    right: 6%;

}

.header-sns-items {
    margin-left: 6px;
}

/* header-sns end */

/* hamburger menu start */

.menu-wrapper {
    position: relative;
}

.menu-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    /* ← fixedにして常に左上固定 */
    top: -43px;
    right: 6%;
    cursor: pointer;
    z-index: 113;
    display: inline-block;
}

.menu-icon span {
    display: block;
    height: 3px;
    margin: 6px 0;
    background: #ffffff;
    transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked+.menu-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menu-toggle:checked+.menu-icon span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked+.menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 111;
}

#menu-toggle:checked~.overlay {
    opacity: 1;
    pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
    position: fixed;
    top: 0;
    left: -250px;
    /* ← 初期位置を左へ */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 112;
}

#menu-toggle:checked~.menu {
    left: 0;
    /* ← 開いたときは左0へ */
}

.menu ul {
    list-style: none;
    padding: 60px 20px;
}

.menu li {
    margin: 20px 0;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #E3007F;
}

/* hamburger menu end */

/* header end */

/* thanks-box start */

.footer {
    max-width: 1024px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.thanks-katto-img {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 168px;
    z-index: 20;
}

.pink-star-small {
    position: relative;
    top: 106px;
    mix-blend-mode: normal;
    left: auto;
    right: auto;
    z-index: 10;
}

.pink-star-shadow-small {
    left: auto;
    right: auto;
    mix-blend-mode: multiply;
    z-index: 1;
}

/* thanks-box end */


/* footer start */




.footer {
    max-width: 1024px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*　back-to-top start */
#back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: -50px;
    right: 4%;
    background: rgba(0, 0, 0, 0.4);
}

#back-to-top span {
    content: "";
    width: 20px;
    height: 20px;
    margin-top: 18px;
    border-right: 4px solid #ffffff;
    border-top: 4px solid #ffffff;
    display: inline-block;
    transform: rotate(-45deg);
}

/*　back-to-top end */


.partition-line {
    height: 1px;
    margin-top: 0;
    margin-left: 6%;
    margin-right: 6%;
    background-color: #E3007F;
}

.footer-text {
    margin-top: 20px;
    margin-left: 6%;
    margin-right: 6%;
    color: #000000;
    font-family: "noto sans jp";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.text-pink {
    color: #E3007F;
}

.mail-envelope {
    margin-top: 5px;
}

.banner {
    margin-top: 16px;
}

.end-of-thanks {
    margin-top: -10px;
    margin-bottom: 20px;
    font-family: "Rampart One";
    font-size: 24px;
    line-height: 160%;
    color: #E3007F;
}

/* footer end */

@media (max-width: 700px) {

    .nav-pc-list {
        display: none;
    }

    .menu-wrapper {
        display: block;
    }
}

/*
@media (max-width: 700px) {

    .header-center {
        display: grid;
        width: 137px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 52px 85px;
        grid-template-rows: 11px 23px 28px;
    }

    .header-katto-image {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        display: block;
        width: 50px;
    }

    .header-sns {
        position: absolute;
        top: 38px;
        left: auto;
        right: 6%;

    }

}
/*